Ticket #27628: stealth.diff

File stealth.diff, 130.1 KB (added by dbevans (David B. Evans), 13 years ago)

diff of the two atkmm releases

  • atkmm-2.22.1/ChangeLog

    Only in distfiles.macports.org/atkmm-2.22.1: COPYING.tools
    diff -ur distfiles.macports.org/atkmm-2.22.1/ChangeLog ftp.cse.buffalo.edu/atkmm-2.22.1/ChangeLog
    old new  
    1 2010-11-20  Murray Cumming  <murrayc@murrayc.com>
    2 
    3         Add and distribute COPYING.tools containing the GPL.
    4 
    5         * COPYING.tools: This is necessary because the MSVC gendef.cc tool sources
    6         are under the GPL, not LGPL. They don't affect the licensing of the library
    7         itself.
    8 
    912010-10-01  Armin Burgmeier  <armin@arbur.net>
    102
    113        Add support for MSVC 2010 and 64 bit to MSVC project files
  • atkmm-2.22.1/Makefile.am

    diff -ur distfiles.macports.org/atkmm-2.22.1/Makefile.am ftp.cse.buffalo.edu/atkmm-2.22.1/Makefile.am
    old new  
    4343include $(srcdir)/MSVC_Net2008/filelist.am
    4444include $(srcdir)/MSVC_Net2010/filelist.am
    4545
    46 text_files = COPYING.tools
    4746msvc_files = $(addprefix MSVC_Net2005/,$(msvc_net2005_data)) \
    4847             $(addprefix MSVC_Net2008/,$(msvc_net2008_data)) \
    4948             $(addprefix MSVC_Net2010/,$(msvc_net2010_data))
    5049
    51 dist_noinst_DATA = $(text_files) $(msvc_files)
     50dist_noinst_DATA = $(msvc_files)
    5251dist_noinst_SCRIPTS = autogen.sh
    5352
    5453DISTCLEANFILES = $(filter %mmconfig.h,$(msvc_files))
  • atkmm-2.22.1/Makefile.in

    diff -ur distfiles.macports.org/atkmm-2.22.1/Makefile.in ftp.cse.buffalo.edu/atkmm-2.22.1/Makefile.in
    old new  
    240240PATH_SEPARATOR = @PATH_SEPARATOR@
    241241PERL = @PERL@
    242242PKG_CONFIG = @PKG_CONFIG@
    243 PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@
    244 PKG_CONFIG_PATH = @PKG_CONFIG_PATH@
    245243RANLIB = @RANLIB@
    246244SED = @SED@
    247245SET_MAKE = @SET_MAKE@
     
    343341        atkmm/atkmm.vcxproj.filters     \
    344342        atkmm/atkmmconfig.h
    345343
    346 text_files = COPYING.tools
    347344msvc_files = $(addprefix MSVC_Net2005/,$(msvc_net2005_data)) \
    348345             $(addprefix MSVC_Net2008/,$(msvc_net2008_data)) \
    349346             $(addprefix MSVC_Net2010/,$(msvc_net2010_data))
    350347
    351 dist_noinst_DATA = $(text_files) $(msvc_files)
     348dist_noinst_DATA = $(msvc_files)
    352349dist_noinst_SCRIPTS = autogen.sh
    353350DISTCLEANFILES = $(filter %mmconfig.h,$(msvc_files))
    354351all: all-recursive
  • atkmm-2.22.1/NEWS

    diff -ur distfiles.macports.org/atkmm-2.22.1/NEWS ftp.cse.buffalo.edu/atkmm-2.22.1/NEWS
    old new  
    1 atkmm 2.22.1 (stable):
     1atkmm 2.22.1 (stable)
     2
     3* Build/Installer: Added support for MSVC 2010 and 64 bit.
     4  (Armin Burgmeier)
    25
    3 * Distribute the GPL in the tarball, in addition to the LGPL, because the
    4   Windows build uses a GPL builder tool.
    5   (Murray Cumming. Thanks to Krzysztof Klimonda)
    6  
    76atkmm 2.22.0 (stable)
    87
    98* Just increased version to show that it's an API/ABI-stable release.
  • atkmm-2.22.1/aclocal.m4

    diff -ur distfiles.macports.org/atkmm-2.22.1/aclocal.m4 ftp.cse.buffalo.edu/atkmm-2.22.1/aclocal.m4
    old new  
    10331033AC_SUBST([am__untar])
    10341034]) # _AM_PROG_TAR
    10351035
    1036 # pkg.m4 - Macros to locate and utilise pkg-config.            -*- Autoconf -*-
    1037 # serial 1 (pkg-config-0.24)
    1038 #
    1039 # Copyright © 2004 Scott James Remnant <scott@netsplit.com>.
    1040 #
    1041 # This program is free software; you can redistribute it and/or modify
    1042 # it under the terms of the GNU General Public License as published by
    1043 # the Free Software Foundation; either version 2 of the License, or
    1044 # (at your option) any later version.
    1045 #
    1046 # This program is distributed in the hope that it will be useful, but
    1047 # WITHOUT ANY WARRANTY; without even the implied warranty of
    1048 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
    1049 # General Public License for more details.
    1050 #
    1051 # You should have received a copy of the GNU General Public License
    1052 # along with this program; if not, write to the Free Software
    1053 # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
    1054 #
    1055 # As a special exception to the GNU General Public License, if you
    1056 # distribute this file as part of a program that contains a
    1057 # configuration script generated by Autoconf, you may include it under
    1058 # the same distribution terms that you use for the rest of that program.
    1059 
    1060 # PKG_PROG_PKG_CONFIG([MIN-VERSION])
    1061 # ----------------------------------
    1062 AC_DEFUN([PKG_PROG_PKG_CONFIG],
    1063 [m4_pattern_forbid([^_?PKG_[A-Z_]+$])
    1064 m4_pattern_allow([^PKG_CONFIG(_PATH)?$])
    1065 AC_ARG_VAR([PKG_CONFIG], [path to pkg-config utility])
    1066 AC_ARG_VAR([PKG_CONFIG_PATH], [directories to add to pkg-config's search path])
    1067 AC_ARG_VAR([PKG_CONFIG_LIBDIR], [path overriding pkg-config's built-in search path])
    1068 
    1069 if test "x$ac_cv_env_PKG_CONFIG_set" != "xset"; then
    1070         AC_PATH_TOOL([PKG_CONFIG], [pkg-config])
    1071 fi
    1072 if test -n "$PKG_CONFIG"; then
    1073         _pkg_min_version=m4_default([$1], [0.9.0])
    1074         AC_MSG_CHECKING([pkg-config is at least version $_pkg_min_version])
    1075         if $PKG_CONFIG --atleast-pkgconfig-version $_pkg_min_version; then
    1076                 AC_MSG_RESULT([yes])
    1077         else
    1078                 AC_MSG_RESULT([no])
    1079                 PKG_CONFIG=""
    1080         fi
    1081 fi[]dnl
    1082 ])# PKG_PROG_PKG_CONFIG
    1083 
    1084 # PKG_CHECK_EXISTS(MODULES, [ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND])
    1085 #
    1086 # Check to see whether a particular set of modules exists.  Similar
    1087 # to PKG_CHECK_MODULES(), but does not set variables or print errors.
    1088 #
    1089 # Please remember that m4 expands AC_REQUIRE([PKG_PROG_PKG_CONFIG])
    1090 # only at the first occurence in configure.ac, so if the first place
    1091 # it's called might be skipped (such as if it is within an "if", you
    1092 # have to call PKG_CHECK_EXISTS manually
    1093 # --------------------------------------------------------------
    1094 AC_DEFUN([PKG_CHECK_EXISTS],
    1095 [AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl
    1096 if test -n "$PKG_CONFIG" && \
    1097     AC_RUN_LOG([$PKG_CONFIG --exists --print-errors "$1"]); then
    1098   m4_default([$2], [:])
    1099 m4_ifvaln([$3], [else
    1100   $3])dnl
    1101 fi])
    1102 
    1103 # _PKG_CONFIG([VARIABLE], [COMMAND], [MODULES])
    1104 # ---------------------------------------------
    1105 m4_define([_PKG_CONFIG],
    1106 [if test -n "$$1"; then
    1107     pkg_cv_[]$1="$$1"
    1108  elif test -n "$PKG_CONFIG"; then
    1109     PKG_CHECK_EXISTS([$3],
    1110                      [pkg_cv_[]$1=`$PKG_CONFIG --[]$2 "$3" 2>/dev/null`],
    1111                      [pkg_failed=yes])
    1112  else
    1113     pkg_failed=untried
    1114 fi[]dnl
    1115 ])# _PKG_CONFIG
    1116 
    1117 # _PKG_SHORT_ERRORS_SUPPORTED
    1118 # -----------------------------
    1119 AC_DEFUN([_PKG_SHORT_ERRORS_SUPPORTED],
    1120 [AC_REQUIRE([PKG_PROG_PKG_CONFIG])
    1121 if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then
    1122         _pkg_short_errors_supported=yes
    1123 else
    1124         _pkg_short_errors_supported=no
    1125 fi[]dnl
    1126 ])# _PKG_SHORT_ERRORS_SUPPORTED
    1127 
    1128 
    1129 # PKG_CHECK_MODULES(VARIABLE-PREFIX, MODULES, [ACTION-IF-FOUND],
    1130 # [ACTION-IF-NOT-FOUND])
    1131 #
    1132 #
    1133 # Note that if there is a possibility the first call to
    1134 # PKG_CHECK_MODULES might not happen, you should be sure to include an
    1135 # explicit call to PKG_PROG_PKG_CONFIG in your configure.ac
    1136 #
    1137 #
    1138 # --------------------------------------------------------------
    1139 AC_DEFUN([PKG_CHECK_MODULES],
    1140 [AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl
    1141 AC_ARG_VAR([$1][_CFLAGS], [C compiler flags for $1, overriding pkg-config])dnl
    1142 AC_ARG_VAR([$1][_LIBS], [linker flags for $1, overriding pkg-config])dnl
    1143 
    1144 pkg_failed=no
    1145 AC_MSG_CHECKING([for $1])
    1146 
    1147 _PKG_CONFIG([$1][_CFLAGS], [cflags], [$2])
    1148 _PKG_CONFIG([$1][_LIBS], [libs], [$2])
    1149 
    1150 m4_define([_PKG_TEXT], [Alternatively, you may set the environment variables $1[]_CFLAGS
    1151 and $1[]_LIBS to avoid the need to call pkg-config.
    1152 See the pkg-config man page for more details.])
    1153 
    1154 if test $pkg_failed = yes; then
    1155         AC_MSG_RESULT([no])
    1156         _PKG_SHORT_ERRORS_SUPPORTED
    1157         if test $_pkg_short_errors_supported = yes; then
    1158                 $1[]_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors "$2" 2>&1`
    1159         else
    1160                 $1[]_PKG_ERRORS=`$PKG_CONFIG --print-errors "$2" 2>&1`
    1161         fi
    1162         # Put the nasty error message in config.log where it belongs
    1163         echo "$$1[]_PKG_ERRORS" >&AS_MESSAGE_LOG_FD
    1164 
    1165         m4_default([$4], [AC_MSG_ERROR(
    1166 [Package requirements ($2) were not met:
    1167 
    1168 $$1_PKG_ERRORS
    1169 
    1170 Consider adjusting the PKG_CONFIG_PATH environment variable if you
    1171 installed software in a non-standard prefix.
    1172 
    1173 _PKG_TEXT])dnl
    1174         ])
    1175 elif test $pkg_failed = untried; then
    1176         AC_MSG_RESULT([no])
    1177         m4_default([$4], [AC_MSG_FAILURE(
    1178 [The pkg-config script could not be found or is too old.  Make sure it
    1179 is in your PATH or set the PKG_CONFIG environment variable to the full
    1180 path to pkg-config.
    1181 
    1182 _PKG_TEXT
    1183 
    1184 To get pkg-config, see <http://pkg-config.freedesktop.org/>.])dnl
    1185         ])
    1186 else
    1187         $1[]_CFLAGS=$pkg_cv_[]$1[]_CFLAGS
    1188         $1[]_LIBS=$pkg_cv_[]$1[]_LIBS
    1189         AC_MSG_RESULT([yes])
    1190         $3
    1191 fi[]dnl
    1192 ])# PKG_CHECK_MODULES
    1193 
    11941036
    11951037#serial 20090814
    11961038
     
    16191461AC_MSG_RESULT([$mm_all_flags])[]dnl
    16201462])
    16211463
     1464# pkg.m4 - Macros to locate and utilise pkg-config.            -*- Autoconf -*-
     1465#
     1466# Copyright © 2004 Scott James Remnant <scott@netsplit.com>.
     1467#
     1468# This program is free software; you can redistribute it and/or modify
     1469# it under the terms of the GNU General Public License as published by
     1470# the Free Software Foundation; either version 2 of the License, or
     1471# (at your option) any later version.
     1472#
     1473# This program is distributed in the hope that it will be useful, but
     1474# WITHOUT ANY WARRANTY; without even the implied warranty of
     1475# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
     1476# General Public License for more details.
     1477#
     1478# You should have received a copy of the GNU General Public License
     1479# along with this program; if not, write to the Free Software
     1480# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
     1481#
     1482# As a special exception to the GNU General Public License, if you
     1483# distribute this file as part of a program that contains a
     1484# configuration script generated by Autoconf, you may include it under
     1485# the same distribution terms that you use for the rest of that program.
     1486
     1487# PKG_PROG_PKG_CONFIG([MIN-VERSION])
     1488# ----------------------------------
     1489AC_DEFUN([PKG_PROG_PKG_CONFIG],
     1490[m4_pattern_forbid([^_?PKG_[A-Z_]+$])
     1491m4_pattern_allow([^PKG_CONFIG(_PATH)?$])
     1492AC_ARG_VAR([PKG_CONFIG], [path to pkg-config utility])dnl
     1493if test "x$ac_cv_env_PKG_CONFIG_set" != "xset"; then
     1494        AC_PATH_TOOL([PKG_CONFIG], [pkg-config])
     1495fi
     1496if test -n "$PKG_CONFIG"; then
     1497        _pkg_min_version=m4_default([$1], [0.9.0])
     1498        AC_MSG_CHECKING([pkg-config is at least version $_pkg_min_version])
     1499        if $PKG_CONFIG --atleast-pkgconfig-version $_pkg_min_version; then
     1500                AC_MSG_RESULT([yes])
     1501        else
     1502                AC_MSG_RESULT([no])
     1503                PKG_CONFIG=""
     1504        fi
     1505               
     1506fi[]dnl
     1507])# PKG_PROG_PKG_CONFIG
     1508
     1509# PKG_CHECK_EXISTS(MODULES, [ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND])
     1510#
     1511# Check to see whether a particular set of modules exists.  Similar
     1512# to PKG_CHECK_MODULES(), but does not set variables or print errors.
     1513#
     1514#
     1515# Similar to PKG_CHECK_MODULES, make sure that the first instance of
     1516# this or PKG_CHECK_MODULES is called, or make sure to call
     1517# PKG_CHECK_EXISTS manually
     1518# --------------------------------------------------------------
     1519AC_DEFUN([PKG_CHECK_EXISTS],
     1520[AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl
     1521if test -n "$PKG_CONFIG" && \
     1522    AC_RUN_LOG([$PKG_CONFIG --exists --print-errors "$1"]); then
     1523  m4_ifval([$2], [$2], [:])
     1524m4_ifvaln([$3], [else
     1525  $3])dnl
     1526fi])
     1527
     1528
     1529# _PKG_CONFIG([VARIABLE], [COMMAND], [MODULES])
     1530# ---------------------------------------------
     1531m4_define([_PKG_CONFIG],
     1532[if test -n "$$1"; then
     1533    pkg_cv_[]$1="$$1"
     1534 elif test -n "$PKG_CONFIG"; then
     1535    PKG_CHECK_EXISTS([$3],
     1536                     [pkg_cv_[]$1=`$PKG_CONFIG --[]$2 "$3" 2>/dev/null`],
     1537                     [pkg_failed=yes])
     1538 else
     1539    pkg_failed=untried
     1540fi[]dnl
     1541])# _PKG_CONFIG
     1542
     1543# _PKG_SHORT_ERRORS_SUPPORTED
     1544# -----------------------------
     1545AC_DEFUN([_PKG_SHORT_ERRORS_SUPPORTED],
     1546[AC_REQUIRE([PKG_PROG_PKG_CONFIG])
     1547if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then
     1548        _pkg_short_errors_supported=yes
     1549else
     1550        _pkg_short_errors_supported=no
     1551fi[]dnl
     1552])# _PKG_SHORT_ERRORS_SUPPORTED
     1553
     1554
     1555# PKG_CHECK_MODULES(VARIABLE-PREFIX, MODULES, [ACTION-IF-FOUND],
     1556# [ACTION-IF-NOT-FOUND])
     1557#
     1558#
     1559# Note that if there is a possibility the first call to
     1560# PKG_CHECK_MODULES might not happen, you should be sure to include an
     1561# explicit call to PKG_PROG_PKG_CONFIG in your configure.ac
     1562#
     1563#
     1564# --------------------------------------------------------------
     1565AC_DEFUN([PKG_CHECK_MODULES],
     1566[AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl
     1567AC_ARG_VAR([$1][_CFLAGS], [C compiler flags for $1, overriding pkg-config])dnl
     1568AC_ARG_VAR([$1][_LIBS], [linker flags for $1, overriding pkg-config])dnl
     1569
     1570pkg_failed=no
     1571AC_MSG_CHECKING([for $1])
     1572
     1573_PKG_CONFIG([$1][_CFLAGS], [cflags], [$2])
     1574_PKG_CONFIG([$1][_LIBS], [libs], [$2])
     1575
     1576m4_define([_PKG_TEXT], [Alternatively, you may set the environment variables $1[]_CFLAGS
     1577and $1[]_LIBS to avoid the need to call pkg-config.
     1578See the pkg-config man page for more details.])
     1579
     1580if test $pkg_failed = yes; then
     1581        _PKG_SHORT_ERRORS_SUPPORTED
     1582        if test $_pkg_short_errors_supported = yes; then
     1583                $1[]_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors "$2" 2>&1`
     1584        else
     1585                $1[]_PKG_ERRORS=`$PKG_CONFIG --print-errors "$2" 2>&1`
     1586        fi
     1587        # Put the nasty error message in config.log where it belongs
     1588        echo "$$1[]_PKG_ERRORS" >&AS_MESSAGE_LOG_FD
     1589
     1590        ifelse([$4], , [AC_MSG_ERROR(dnl
     1591[Package requirements ($2) were not met:
     1592
     1593$$1_PKG_ERRORS
     1594
     1595Consider adjusting the PKG_CONFIG_PATH environment variable if you
     1596installed software in a non-standard prefix.
     1597
     1598_PKG_TEXT
     1599])],
     1600                [AC_MSG_RESULT([no])
     1601                $4])
     1602elif test $pkg_failed = untried; then
     1603        ifelse([$4], , [AC_MSG_FAILURE(dnl
     1604[The pkg-config script could not be found or is too old.  Make sure it
     1605is in your PATH or set the PKG_CONFIG environment variable to the full
     1606path to pkg-config.
     1607
     1608_PKG_TEXT
     1609
     1610To get pkg-config, see <http://pkg-config.freedesktop.org/>.])],
     1611                [$4])
     1612else
     1613        $1[]_CFLAGS=$pkg_cv_[]$1[]_CFLAGS
     1614        $1[]_LIBS=$pkg_cv_[]$1[]_LIBS
     1615        AC_MSG_RESULT([yes])
     1616        ifelse([$3], , :, [$3])
     1617fi[]dnl
     1618])# PKG_CHECK_MODULES
     1619
    16221620m4_include([build/libtool.m4])
    16231621m4_include([build/ltoptions.m4])
    16241622m4_include([build/ltsugar.m4])
  • atkmm-2.22.1/atk/atkmm/Makefile.in

    diff -ur distfiles.macports.org/atkmm-2.22.1/atk/atkmm/Makefile.in ftp.cse.buffalo.edu/atkmm-2.22.1/atk/atkmm/Makefile.in
    old new  
    214214PATH_SEPARATOR = @PATH_SEPARATOR@
    215215PERL = @PERL@
    216216PKG_CONFIG = @PKG_CONFIG@
    217 PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@
    218 PKG_CONFIG_PATH = @PKG_CONFIG_PATH@
    219217RANLIB = @RANLIB@
    220218SED = @SED@
    221219SET_MAKE = @SET_MAKE@
  • atkmm-2.22.1/atk/src/Makefile.in

    diff -ur distfiles.macports.org/atkmm-2.22.1/atk/src/Makefile.in ftp.cse.buffalo.edu/atkmm-2.22.1/atk/src/Makefile.in
    old new  
    144144PATH_SEPARATOR = @PATH_SEPARATOR@
    145145PERL = @PERL@
    146146PKG_CONFIG = @PKG_CONFIG@
    147 PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@
    148 PKG_CONFIG_PATH = @PKG_CONFIG_PATH@
    149147RANLIB = @RANLIB@
    150148SED = @SED@
    151149SET_MAKE = @SET_MAKE@
  • atkmm-2.22.1/build/config.guess

    diff -ur distfiles.macports.org/atkmm-2.22.1/build/config.guess ftp.cse.buffalo.edu/atkmm-2.22.1/build/config.guess
    old new  
    11#! /bin/sh
    22# Attempt to guess a canonical system name.
    33#   Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
    4 #   2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010
     4#   2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009
    55#   Free Software Foundation, Inc.
    66
    7 timestamp='2009-12-30'
     7timestamp='2009-11-20'
    88
    99# This file is free software; you can redistribute it and/or modify it
    1010# under the terms of the GNU General Public License as published by
     
    5656GNU config.guess ($timestamp)
    5757
    5858Originally written by Per Bothner.
    59 Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000,
    60 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 Free
    61 Software Foundation, Inc.
     59Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001,
     602002, 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
    6261
    6362This is free software; see the source for copying conditions.  There is NO
    6463warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE."
  • atkmm-2.22.1/build/config.sub

    diff -ur distfiles.macports.org/atkmm-2.22.1/build/config.sub ftp.cse.buffalo.edu/atkmm-2.22.1/build/config.sub
    old new  
    11#! /bin/sh
    22# Configuration validation subroutine script.
    33#   Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
    4 #   2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010
     4#   2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009
    55#   Free Software Foundation, Inc.
    66
    7 timestamp='2010-01-22'
     7timestamp='2009-11-20'
    88
    99# This file is (in principle) common to ALL GNU software.
    1010# The presence of a machine in this file suggests that SOME GNU software
     
    7575version="\
    7676GNU config.sub ($timestamp)
    7777
    78 Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000,
    79 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 Free
    80 Software Foundation, Inc.
     78Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001,
     792002, 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
    8180
    8281This is free software; see the source for copying conditions.  There is NO
    8382warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE."
     
    381380        | sparclite-* \
    382381        | sparcv8-* | sparcv9-* | sparcv9b-* | sparcv9v-* | strongarm-* | sv1-* | sx?-* \
    383382        | tahoe-* | thumb-* \
    384         | tic30-* | tic4x-* | tic54x-* | tic55x-* | tic6x-* | tic80-* \
    385         | tile-* | tilegx-* \
     383        | tic30-* | tic4x-* | tic54x-* | tic55x-* | tic6x-* | tic80-* | tile-* \
    386384        | tron-* \
    387385        | ubicom32-* \
    388386        | v850-* | v850e-* | vax-* \
     
    10871085                basic_machine=tic6x-unknown
    10881086                os=-coff
    10891087                ;;
    1090         # This must be matched before tile*.
    1091         tilegx*)
    1092                 basic_machine=tilegx-unknown
    1093                 os=-linux-gnu
    1094                 ;;
    10951088        tile*)
    10961089                basic_machine=tile-unknown
    10971090                os=-linux-gnu
     
    14421435        -dicos*)
    14431436                os=-dicos
    14441437                ;;
    1445         -nacl*)
    1446                 ;;
    14471438        -none)
    14481439                ;;
    14491440        *)
  • atkmm-2.22.1/build/libtool.m4

    diff -ur distfiles.macports.org/atkmm-2.22.1/build/libtool.m4 ftp.cse.buffalo.edu/atkmm-2.22.1/build/libtool.m4
    old new  
    24452445  ;;
    24462446
    24472447# This must be Linux ELF.
    2448 linux* | k*bsd*-gnu | kopensolaris*-gnu)
     2448linux* | k*bsd*-gnu)
    24492449  version_type=linux
    24502450  need_lib_prefix=no
    24512451  need_version=no
     
    24852485  dynamic_linker='GNU/Linux ld.so'
    24862486  ;;
    24872487
    2488 netbsdelf*-gnu)
    2489   version_type=linux
    2490   need_lib_prefix=no
    2491   need_version=no
    2492   library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}'
    2493   soname_spec='${libname}${release}${shared_ext}$major'
    2494   shlibpath_var=LD_LIBRARY_PATH
    2495   shlibpath_overrides_runpath=no
    2496   hardcode_into_libs=yes
    2497   dynamic_linker='NetBSD ld.elf_so'
    2498   ;;
    2499 
    25002488netbsd*)
    25012489  version_type=sunos
    25022490  need_lib_prefix=no
     
    30843072  ;;
    30853073
    30863074# This must be Linux ELF.
    3087 linux* | k*bsd*-gnu | kopensolaris*-gnu)
     3075linux* | k*bsd*-gnu)
    30883076  lt_cv_deplibs_check_method=pass_all
    30893077  ;;
    30903078
    3091 netbsd* | netbsdelf*-gnu)
     3079netbsd*)
    30923080  if echo __ELF__ | $CC -E - | $GREP __ELF__ > /dev/null; then
    30933081    lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|_pic\.a)$'
    30943082  else
     
    37053693            ;;
    37063694        esac
    37073695        ;;
    3708       linux* | k*bsd*-gnu | kopensolaris*-gnu)
     3696      linux* | k*bsd*-gnu)
    37093697        case $cc_basename in
    37103698          KCC*)
    37113699            # KAI C++ Compiler
     
    37693757            ;;
    37703758        esac
    37713759        ;;
    3772       netbsd* | netbsdelf*-gnu)
     3760      netbsd*)
    37733761        ;;
    37743762      *qnx* | *nto*)
    37753763        # QNX uses GNU C++, but need to define -shared option too, otherwise
     
    39893977      _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared'
    39903978      ;;
    39913979
    3992     linux* | k*bsd*-gnu | kopensolaris*-gnu)
     3980    linux* | k*bsd*-gnu)
    39933981      case $cc_basename in
    39943982      # old Intel for x86_64 which still supported -KPIC.
    39953983      ecc*)
     
    41944182  cygwin* | mingw* | cegcc*)
    41954183    _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[[BCDGRS]][[ ]]/s/.*[[ ]]\([[^ ]]*\)/\1 DATA/;/^.*[[ ]]__nm__/s/^.*[[ ]]__nm__\([[^ ]]*\)[[ ]][[^ ]]*/\1 DATA/;/^I[[ ]]/d;/^[[AITW]][[ ]]/s/.* //'\'' | sort | uniq > $export_symbols'
    41964184  ;;
    4197   linux* | k*bsd*-gnu)
    4198     _LT_TAGVAR(link_all_deplibs, $1)=no
    4199   ;;
    42004185  *)
    42014186    _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols'
    42024187  ;;
     
    42614246  openbsd*)
    42624247    with_gnu_ld=no
    42634248    ;;
    4264   linux* | k*bsd*-gnu)
    4265     _LT_TAGVAR(link_all_deplibs, $1)=no
    4266     ;;
    42674249  esac
    42684250
    42694251  _LT_TAGVAR(ld_shlibs, $1)=yes
     
    42854267    fi
    42864268    supports_anon_versioning=no
    42874269    case `$LD -v 2>&1` in
    4288       *GNU\ gold*) supports_anon_versioning=yes ;;
    42894270      *\ [[01]].* | *\ 2.[[0-9]].* | *\ 2.10.*) ;; # catch versions < 2.11
    42904271      *\ 2.11.93.0.2\ *) supports_anon_versioning=yes ;; # RH7.3 ...
    42914272      *\ 2.11.92.0.12\ *) supports_anon_versioning=yes ;; # Mandrake 8.2 ...
     
    43774358      _LT_TAGVAR(archive_expsym_cmds, $1)='sed "s,^,_," $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--retain-symbols-file,$output_objdir/$soname.expsym ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib'
    43784359      ;;
    43794360
    4380     gnu* | linux* | tpf* | k*bsd*-gnu | kopensolaris*-gnu)
     4361    gnu* | linux* | tpf* | k*bsd*-gnu)
    43814362      tmp_diet=no
    43824363      if test "$host_os" = linux-dietlibc; then
    43834364        case $cc_basename in
     
    44474428      fi
    44484429      ;;
    44494430
    4450     netbsd* | netbsdelf*-gnu)
     4431    netbsd*)
    44514432      if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then
    44524433        _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable $libobjs $deplibs $linker_flags -o $lib'
    44534434        wlarc=
     
    46224603        if test "$aix_use_runtimelinking" = yes; then
    46234604          shared_flag="$shared_flag "'${wl}-G'
    46244605        fi
    4625         _LT_TAGVAR(link_all_deplibs, $1)=no
    46264606      else
    46274607        # not using gcc
    46284608        if test "$host_cpu" = ia64; then
     
    48614841      _LT_TAGVAR(link_all_deplibs, $1)=yes
    48624842      ;;
    48634843
    4864     netbsd* | netbsdelf*-gnu)
     4844    netbsd*)
    48654845      if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then
    48664846        _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags'  # a.out
    48674847      else
     
    58615841        _LT_TAGVAR(inherit_rpath, $1)=yes
    58625842        ;;
    58635843
    5864       linux* | k*bsd*-gnu | kopensolaris*-gnu)
     5844      linux* | k*bsd*-gnu)
    58655845        case $cc_basename in
    58665846          KCC*)
    58675847            # Kuck and Associates, Inc. (KAI) C++ Compiler
  • atkmm-2.22.1/build/ltmain.sh

    diff -ur distfiles.macports.org/atkmm-2.22.1/build/ltmain.sh ftp.cse.buffalo.edu/atkmm-2.22.1/build/ltmain.sh
    old new  
    11# Generated from ltmain.m4sh.
    22
    3 # ltmain.sh (GNU libtool) 2.2.6b
     3# ltmain.sh (GNU libtool) 2.2.6
    44# Written by Gordon Matzigkeit <gord@gnu.ai.mit.edu>, 1996
    55
    66# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005, 2006, 2007 2008 Free Software Foundation, Inc.
     
    6565#       compiler:               $LTCC
    6666#       compiler flags:         $LTCFLAGS
    6767#       linker:         $LD (gnu? $with_gnu_ld)
    68 #       $progname:              (GNU libtool) 2.2.6b Debian-2.2.6b-2ubuntu1
     68#       $progname:              (GNU libtool) 2.2.6
    6969#       automake:               $automake_version
    7070#       autoconf:               $autoconf_version
    7171#
     
    7373
    7474PROGRAM=ltmain.sh
    7575PACKAGE=libtool
    76 VERSION="2.2.6b Debian-2.2.6b-2ubuntu1"
     76VERSION=2.2.6
    7777TIMESTAMP=""
    78 package_revision=1.3017
     78package_revision=1.3012
    7979
    8080# Be Bourne compatible
    8181if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then
     
    116116
    117117: ${CP="cp -f"}
    118118: ${ECHO="echo"}
    119 : ${EGREP="/bin/grep -E"}
    120 : ${FGREP="/bin/grep -F"}
    121 : ${GREP="/bin/grep"}
     119: ${EGREP="/usr/bin/grep -E"}
     120: ${FGREP="/usr/bin/grep -F"}
     121: ${GREP="/usr/bin/grep"}
    122122: ${LN_S="ln -s"}
    123123: ${MAKE="make"}
    124124: ${MKDIR="mkdir"}
    125125: ${MV="mv -f"}
    126126: ${RM="rm -f"}
    127 : ${SED="/bin/sed"}
     127: ${SED="/opt/local/bin/gsed"}
    128128: ${SHELL="${CONFIG_SHELL-/bin/sh}"}
    129129: ${Xsed="$SED -e 1s/^X//"}
    130130
     
    50335033        case $pass in
    50345034        dlopen) libs="$dlfiles" ;;
    50355035        dlpreopen) libs="$dlprefiles" ;;
    5036         link)
    5037           libs="$deplibs %DEPLIBS%"
    5038           test "X$link_all_deplibs" != Xno && libs="$libs $dependency_libs"
    5039           ;;
     5036        link) libs="$deplibs %DEPLIBS% $dependency_libs" ;;
    50405037        esac
    50415038      fi
    50425039      if test "$linkmode,$pass" = "lib,dlpreopen"; then
     
    53475344            # It is a libtool convenience library, so add in its objects.
    53485345            convenience="$convenience $ladir/$objdir/$old_library"
    53495346            old_convenience="$old_convenience $ladir/$objdir/$old_library"
    5350             tmp_libs=
    5351             for deplib in $dependency_libs; do
    5352               deplibs="$deplib $deplibs"
    5353               if $opt_duplicate_deps ; then
    5354                 case "$tmp_libs " in
    5355                 *" $deplib "*) specialdeplibs="$specialdeplibs $deplib" ;;
    5356                 esac
    5357               fi
    5358               tmp_libs="$tmp_libs $deplib"
    5359             done
    53605347          elif test "$linkmode" != prog && test "$linkmode" != lib; then
    53615348            func_fatal_error "\`$lib' is not a convenience library"
    53625349          fi
     5350          tmp_libs=
     5351          for deplib in $dependency_libs; do
     5352            deplibs="$deplib $deplibs"
     5353            if $opt_duplicate_deps ; then
     5354              case "$tmp_libs " in
     5355              *" $deplib "*) specialdeplibs="$specialdeplibs $deplib" ;;
     5356              esac
     5357            fi
     5358            tmp_libs="$tmp_libs $deplib"
     5359          done
    53635360          continue
    53645361        fi # $pass = conv
    53655362
     
    58965893          if test "$link_all_deplibs" != no; then
    58975894            # Add the search paths of all dependency libraries
    58985895            for deplib in $dependency_libs; do
    5899               path=
    59005896              case $deplib in
    59015897              -L*) path="$deplib" ;;
    59025898              *.la)
     
    62106206            revision="$number_minor"
    62116207            lt_irix_increment=no
    62126208            ;;
    6213           *)
    6214             func_fatal_configuration "$modename: unknown library version type \`$version_type'"
    6215             ;;
    62166209          esac
    62176210          ;;
    62186211        no)
  • atkmm-2.22.1/build/ltversion.m4

    diff -ur distfiles.macports.org/atkmm-2.22.1/build/ltversion.m4 ftp.cse.buffalo.edu/atkmm-2.22.1/build/ltversion.m4
    old new  
    99
    1010# Generated from ltversion.in.
    1111
    12 # serial 3017 ltversion.m4
     12# serial 3012 ltversion.m4
    1313# This file is part of GNU Libtool
    1414
    15 m4_define([LT_PACKAGE_VERSION], [2.2.6b])
    16 m4_define([LT_PACKAGE_REVISION], [1.3017])
     15m4_define([LT_PACKAGE_VERSION], [2.2.6])
     16m4_define([LT_PACKAGE_REVISION], [1.3012])
    1717
    1818AC_DEFUN([LTVERSION_VERSION],
    19 [macro_version='2.2.6b'
    20 macro_revision='1.3017'
     19[macro_version='2.2.6'
     20macro_revision='1.3012'
    2121_LT_DECL(, macro_version, 0, [Which release of libtool.m4 was used?])
    2222_LT_DECL(, macro_revision, 0)
    2323])
  • atkmm-2.22.1/codegen/Makefile.in

    diff -ur distfiles.macports.org/atkmm-2.22.1/codegen/Makefile.in ftp.cse.buffalo.edu/atkmm-2.22.1/codegen/Makefile.in
    old new  
    181181PATH_SEPARATOR = @PATH_SEPARATOR@
    182182PERL = @PERL@
    183183PKG_CONFIG = @PKG_CONFIG@
    184 PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@
    185 PKG_CONFIG_PATH = @PKG_CONFIG_PATH@
    186184RANLIB = @RANLIB@
    187185SED = @SED@
    188186SET_MAKE = @SET_MAKE@
  • atkmm-2.22.1/configure

    diff -ur distfiles.macports.org/atkmm-2.22.1/configure ftp.cse.buffalo.edu/atkmm-2.22.1/configure
    old new  
    764764GTHREAD_CFLAGS
    765765ATKMM_LIBS
    766766ATKMM_CFLAGS
    767 PKG_CONFIG_LIBDIR
    768 PKG_CONFIG_PATH
    769767PKG_CONFIG
    770768ATKMM_MODULES
    771769CXXCPP
     
    929927CPP
    930928CXXCPP
    931929PKG_CONFIG
    932 PKG_CONFIG_PATH
    933 PKG_CONFIG_LIBDIR
    934930ATKMM_CFLAGS
    935931ATKMM_LIBS
    936932PERL
     
    16021598  CPP         C preprocessor
    16031599  CXXCPP      C++ preprocessor
    16041600  PKG_CONFIG  path to pkg-config utility
    1605   PKG_CONFIG_PATH
    1606               directories to add to pkg-config's search path
    1607   PKG_CONFIG_LIBDIR
    1608               path overriding pkg-config's built-in search path
    16091601  ATKMM_CFLAGS
    16101602              C compiler flags for ATKMM, overriding pkg-config
    16111603  ATKMM_LIBS  linker flags for ATKMM, overriding pkg-config
     
    42124204
    42134205
    42144206
    4215 macro_version='2.2.6b'
    4216 macro_revision='1.3017'
     4207macro_version='2.2.6'
     4208macro_revision='1.3012'
    42174209
    42184210
    42194211
     
    54805472else
    54815473  lt_cv_nm_interface="BSD nm"
    54825474  echo "int some_variable = 0;" > conftest.$ac_ext
    5483   (eval echo "\"\$as_me:5483: $ac_compile\"" >&5)
     5475  (eval echo "\"\$as_me:5475: $ac_compile\"" >&5)
    54845476  (eval "$ac_compile" 2>conftest.err)
    54855477  cat conftest.err >&5
    5486   (eval echo "\"\$as_me:5486: $NM \\\"conftest.$ac_objext\\\"\"" >&5)
     5478  (eval echo "\"\$as_me:5478: $NM \\\"conftest.$ac_objext\\\"\"" >&5)
    54875479  (eval "$NM \"conftest.$ac_objext\"" 2>conftest.err > conftest.out)
    54885480  cat conftest.err >&5
    5489   (eval echo "\"\$as_me:5489: output\"" >&5)
     5481  (eval echo "\"\$as_me:5481: output\"" >&5)
    54905482  cat conftest.out >&5
    54915483  if $GREP 'External.*some_variable' conftest.out > /dev/null; then
    54925484    lt_cv_nm_interface="MS dumpbin"
     
    59495941  ;;
    59505942
    59515943# This must be Linux ELF.
    5952 linux* | k*bsd*-gnu | kopensolaris*-gnu)
     5944linux* | k*bsd*-gnu)
    59535945  lt_cv_deplibs_check_method=pass_all
    59545946  ;;
    59555947
    5956 netbsd* | netbsdelf*-gnu)
     5948netbsd*)
    59575949  if echo __ELF__ | $CC -E - | $GREP __ELF__ > /dev/null; then
    59585950    lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so\.[0-9]+\.[0-9]+|_pic\.a)$'
    59595951  else
     
    66896681  ;;
    66906682*-*-irix6*)
    66916683  # Find out which ABI we are using.
    6692   echo '#line 6692 "configure"' > conftest.$ac_ext
     6684  echo '#line 6684 "configure"' > conftest.$ac_ext
    66936685  if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5
    66946686  (eval $ac_compile) 2>&5
    66956687  ac_status=$?
     
    87138705   -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
    87148706   -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
    87158707   -e 's:$: $lt_compiler_flag:'`
    8716    (eval echo "\"\$as_me:8716: $lt_compile\"" >&5)
     8708   (eval echo "\"\$as_me:8708: $lt_compile\"" >&5)
    87178709   (eval "$lt_compile" 2>conftest.err)
    87188710   ac_status=$?
    87198711   cat conftest.err >&5
    8720    echo "$as_me:8720: \$? = $ac_status" >&5
     8712   echo "$as_me:8712: \$? = $ac_status" >&5
    87218713   if (exit $ac_status) && test -s "$ac_outfile"; then
    87228714     # The compiler can only warn and ignore the option if not recognized
    87238715     # So say no if there are warnings other than the usual output.
     
    88828874      lt_prog_compiler_static='-non_shared'
    88838875      ;;
    88848876
    8885     linux* | k*bsd*-gnu | kopensolaris*-gnu)
     8877    linux* | k*bsd*-gnu)
    88868878      case $cc_basename in
    88878879      # old Intel for x86_64 which still supported -KPIC.
    88888880      ecc*)
     
    90529044   -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
    90539045   -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
    90549046   -e 's:$: $lt_compiler_flag:'`
    9055    (eval echo "\"\$as_me:9055: $lt_compile\"" >&5)
     9047   (eval echo "\"\$as_me:9047: $lt_compile\"" >&5)
    90569048   (eval "$lt_compile" 2>conftest.err)
    90579049   ac_status=$?
    90589050   cat conftest.err >&5
    9059    echo "$as_me:9059: \$? = $ac_status" >&5
     9051   echo "$as_me:9051: \$? = $ac_status" >&5
    90609052   if (exit $ac_status) && test -s "$ac_outfile"; then
    90619053     # The compiler can only warn and ignore the option if not recognized
    90629054     # So say no if there are warnings other than the usual output.
     
    91579149   -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
    91589150   -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
    91599151   -e 's:$: $lt_compiler_flag:'`
    9160    (eval echo "\"\$as_me:9160: $lt_compile\"" >&5)
     9152   (eval echo "\"\$as_me:9152: $lt_compile\"" >&5)
    91619153   (eval "$lt_compile" 2>out/conftest.err)
    91629154   ac_status=$?
    91639155   cat out/conftest.err >&5
    9164    echo "$as_me:9164: \$? = $ac_status" >&5
     9156   echo "$as_me:9156: \$? = $ac_status" >&5
    91659157   if (exit $ac_status) && test -s out/conftest2.$ac_objext
    91669158   then
    91679159     # The compiler can only warn and ignore the option if not recognized
     
    92129204   -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
    92139205   -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
    92149206   -e 's:$: $lt_compiler_flag:'`
    9215    (eval echo "\"\$as_me:9215: $lt_compile\"" >&5)
     9207   (eval echo "\"\$as_me:9207: $lt_compile\"" >&5)
    92169208   (eval "$lt_compile" 2>out/conftest.err)
    92179209   ac_status=$?
    92189210   cat out/conftest.err >&5
    9219    echo "$as_me:9219: \$? = $ac_status" >&5
     9211   echo "$as_me:9211: \$? = $ac_status" >&5
    92209212   if (exit $ac_status) && test -s out/conftest2.$ac_objext
    92219213   then
    92229214     # The compiler can only warn and ignore the option if not recognized
     
    93319323  openbsd*)
    93329324    with_gnu_ld=no
    93339325    ;;
    9334   linux* | k*bsd*-gnu)
    9335     link_all_deplibs=no
    9336     ;;
    93379326  esac
    93389327
    93399328  ld_shlibs=yes
     
    93559344    fi
    93569345    supports_anon_versioning=no
    93579346    case `$LD -v 2>&1` in
    9358       *GNU\ gold*) supports_anon_versioning=yes ;;
    93599347      *\ [01].* | *\ 2.[0-9].* | *\ 2.10.*) ;; # catch versions < 2.11
    93609348      *\ 2.11.93.0.2\ *) supports_anon_versioning=yes ;; # RH7.3 ...
    93619349      *\ 2.11.92.0.12\ *) supports_anon_versioning=yes ;; # Mandrake 8.2 ...
     
    94479435      archive_expsym_cmds='sed "s,^,_," $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--retain-symbols-file,$output_objdir/$soname.expsym ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib'
    94489436      ;;
    94499437
    9450     gnu* | linux* | tpf* | k*bsd*-gnu | kopensolaris*-gnu)
     9438    gnu* | linux* | tpf* | k*bsd*-gnu)
    94519439      tmp_diet=no
    94529440      if test "$host_os" = linux-dietlibc; then
    94539441        case $cc_basename in
     
    95179505      fi
    95189506      ;;
    95199507
    9520     netbsd* | netbsdelf*-gnu)
     9508    netbsd*)
    95219509      if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then
    95229510        archive_cmds='$LD -Bshareable $libobjs $deplibs $linker_flags -o $lib'
    95239511        wlarc=
     
    96929680        if test "$aix_use_runtimelinking" = yes; then
    96939681          shared_flag="$shared_flag "'${wl}-G'
    96949682        fi
    9695         link_all_deplibs=no
    96969683      else
    96979684        # not using gcc
    96989685        if test "$host_cpu" = ia64; then
     
    1001910006      link_all_deplibs=yes
    1002010007      ;;
    1002110008
    10022     netbsd* | netbsdelf*-gnu)
     10009    netbsd*)
    1002310010      if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then
    1002410011        archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags'  # a.out
    1002510012      else
     
    1090910896  ;;
    1091010897
    1091110898# This must be Linux ELF.
    10912 linux* | k*bsd*-gnu | kopensolaris*-gnu)
     10899linux* | k*bsd*-gnu)
    1091310900  version_type=linux
    1091410901  need_lib_prefix=no
    1091510902  need_version=no
     
    1096410951  dynamic_linker='GNU/Linux ld.so'
    1096510952  ;;
    1096610953
    10967 netbsdelf*-gnu)
    10968   version_type=linux
    10969   need_lib_prefix=no
    10970   need_version=no
    10971   library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}'
    10972   soname_spec='${libname}${release}${shared_ext}$major'
    10973   shlibpath_var=LD_LIBRARY_PATH
    10974   shlibpath_overrides_runpath=no
    10975   hardcode_into_libs=yes
    10976   dynamic_linker='NetBSD ld.elf_so'
    10977   ;;
    10978 
    1097910954netbsd*)
    1098010955  version_type=sunos
    1098110956  need_lib_prefix=no
     
    1159611571  lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
    1159711572  lt_status=$lt_dlunknown
    1159811573  cat > conftest.$ac_ext <<_LT_EOF
    11599 #line 11599 "configure"
     11574#line 11574 "configure"
    1160011575#include "confdefs.h"
    1160111576
    1160211577#if HAVE_DLFCN_H
     
    1169211667  lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
    1169311668  lt_status=$lt_dlunknown
    1169411669  cat > conftest.$ac_ext <<_LT_EOF
    11695 #line 11695 "configure"
     11670#line 11670 "configure"
    1169611671#include "confdefs.h"
    1169711672
    1169811673#if HAVE_DLFCN_H
     
    1263212607        inherit_rpath_CXX=yes
    1263312608        ;;
    1263412609
    12635       linux* | k*bsd*-gnu | kopensolaris*-gnu)
     12610      linux* | k*bsd*-gnu)
    1263612611        case $cc_basename in
    1263712612          KCC*)
    1263812613            # Kuck and Associates, Inc. (KAI) C++ Compiler
     
    1346013435            ;;
    1346113436        esac
    1346213437        ;;
    13463       linux* | k*bsd*-gnu | kopensolaris*-gnu)
     13438      linux* | k*bsd*-gnu)
    1346413439        case $cc_basename in
    1346513440          KCC*)
    1346613441            # KAI C++ Compiler
     
    1352413499            ;;
    1352513500        esac
    1352613501        ;;
    13527       netbsd* | netbsdelf*-gnu)
     13502      netbsd*)
    1352813503        ;;
    1352913504      *qnx* | *nto*)
    1353013505        # QNX uses GNU C++, but need to define -shared option too, otherwise
     
    1364813623   -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
    1364913624   -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
    1365013625   -e 's:$: $lt_compiler_flag:'`
    13651    (eval echo "\"\$as_me:13651: $lt_compile\"" >&5)
     13626   (eval echo "\"\$as_me:13626: $lt_compile\"" >&5)
    1365213627   (eval "$lt_compile" 2>conftest.err)
    1365313628   ac_status=$?
    1365413629   cat conftest.err >&5
    13655    echo "$as_me:13655: \$? = $ac_status" >&5
     13630   echo "$as_me:13630: \$? = $ac_status" >&5
    1365613631   if (exit $ac_status) && test -s "$ac_outfile"; then
    1365713632     # The compiler can only warn and ignore the option if not recognized
    1365813633     # So say no if there are warnings other than the usual output.
     
    1374713722   -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
    1374813723   -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
    1374913724   -e 's:$: $lt_compiler_flag:'`
    13750    (eval echo "\"\$as_me:13750: $lt_compile\"" >&5)
     13725   (eval echo "\"\$as_me:13725: $lt_compile\"" >&5)
    1375113726   (eval "$lt_compile" 2>out/conftest.err)
    1375213727   ac_status=$?
    1375313728   cat out/conftest.err >&5
    13754    echo "$as_me:13754: \$? = $ac_status" >&5
     13729   echo "$as_me:13729: \$? = $ac_status" >&5
    1375513730   if (exit $ac_status) && test -s out/conftest2.$ac_objext
    1375613731   then
    1375713732     # The compiler can only warn and ignore the option if not recognized
     
    1379913774   -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
    1380013775   -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
    1380113776   -e 's:$: $lt_compiler_flag:'`
    13802    (eval echo "\"\$as_me:13802: $lt_compile\"" >&5)
     13777   (eval echo "\"\$as_me:13777: $lt_compile\"" >&5)
    1380313778   (eval "$lt_compile" 2>out/conftest.err)
    1380413779   ac_status=$?
    1380513780   cat out/conftest.err >&5
    13806    echo "$as_me:13806: \$? = $ac_status" >&5
     13781   echo "$as_me:13781: \$? = $ac_status" >&5
    1380713782   if (exit $ac_status) && test -s out/conftest2.$ac_objext
    1380813783   then
    1380913784     # The compiler can only warn and ignore the option if not recognized
     
    1387513850  cygwin* | mingw* | cegcc*)
    1387613851    export_symbols_cmds_CXX='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[BCDGRS][ ]/s/.*[ ]\([^ ]*\)/\1 DATA/;/^.*[ ]__nm__/s/^.*[ ]__nm__\([^ ]*\)[ ][^ ]*/\1 DATA/;/^I[ ]/d;/^[AITW][ ]/s/.* //'\'' | sort | uniq > $export_symbols'
    1387713852  ;;
    13878   linux* | k*bsd*-gnu)
    13879     link_all_deplibs_CXX=no
    13880   ;;
    1388113853  *)
    1388213854    export_symbols_cmds_CXX='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols'
    1388313855  ;;
     
    1437714349  ;;
    1437814350
    1437914351# This must be Linux ELF.
    14380 linux* | k*bsd*-gnu | kopensolaris*-gnu)
     14352linux* | k*bsd*-gnu)
    1438114353  version_type=linux
    1438214354  need_lib_prefix=no
    1438314355  need_version=no
     
    1443214404  dynamic_linker='GNU/Linux ld.so'
    1443314405  ;;
    1443414406
    14435 netbsdelf*-gnu)
    14436   version_type=linux
    14437   need_lib_prefix=no
    14438   need_version=no
    14439   library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}'
    14440   soname_spec='${libname}${release}${shared_ext}$major'
    14441   shlibpath_var=LD_LIBRARY_PATH
    14442   shlibpath_overrides_runpath=no
    14443   hardcode_into_libs=yes
    14444   dynamic_linker='NetBSD ld.elf_so'
    14445   ;;
    14446 
    1444714407netbsd*)
    1444814408  version_type=sunos
    1444914409  need_lib_prefix=no
     
    1477114731
    1477214732
    1477314733
    14774 
    14775 
    14776 
    14777 
    1477814734if test "x$ac_cv_env_PKG_CONFIG_set" != "xset"; then
    1477914735        if test -n "$ac_tool_prefix"; then
    1478014736  # Extract the first word of "${ac_tool_prefix}pkg-config", so it can be a program name with args.
     
    1488714843$as_echo "no" >&6; }
    1488814844                PKG_CONFIG=""
    1488914845        fi
     14846
    1489014847fi
    1489114848
    1489214849pkg_failed=no
     
    1492914886
    1493014887
    1493114888if test $pkg_failed = yes; then
    14932         { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
    14933 $as_echo "no" >&6; }
    1493414889
    1493514890if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then
    1493614891        _pkg_short_errors_supported=yes
     
    1495414909
    1495514910Alternatively, you may set the environment variables ATKMM_CFLAGS
    1495614911and ATKMM_LIBS to avoid the need to call pkg-config.
    14957 See the pkg-config man page for more details." "$LINENO" 5
     14912See the pkg-config man page for more details.
     14913" "$LINENO" 5
    1495814914elif test $pkg_failed = untried; then
    14959         { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
    14960 $as_echo "no" >&6; }
    1496114915        { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
    1496214916$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
    1496314917as_fn_error $? "The pkg-config script could not be found or is too old.  Make sure it
     
    1497514929        ATKMM_LIBS=$pkg_cv_ATKMM_LIBS
    1497614930        { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
    1497714931$as_echo "yes" >&6; }
    14978 
     14932        :
    1497914933fi
    1498014934
    1498114935{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for GTHREAD_CFLAGS" >&5
  • atkmm-2.22.1/doc/Makefile.in

    diff -ur distfiles.macports.org/atkmm-2.22.1/doc/Makefile.in ftp.cse.buffalo.edu/atkmm-2.22.1/doc/Makefile.in
    old new  
    167167PATH_SEPARATOR = @PATH_SEPARATOR@
    168168PERL = @PERL@
    169169PKG_CONFIG = @PKG_CONFIG@
    170 PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@
    171 PKG_CONFIG_PATH = @PKG_CONFIG_PATH@
    172170RANLIB = @RANLIB@
    173171SED = @SED@
    174172SET_MAKE = @SET_MAKE@
  • atkmm-2.22.1/doc/reference/html/annotated.html

    diff -ur distfiles.macports.org/atkmm-2.22.1/doc/reference/html/annotated.html ftp.cse.buffalo.edu/atkmm-2.22.1/doc/reference/html/annotated.html
    old new  
    5050  <tr><td class="indexkey"><a class="el" href="classAtk_1_1Value.html">Atk::Value</a></td><td class="indexvalue">The ATK interface implemented by valuators and components which display or select a value from a bounded range of values </td></tr>
    5151</table>
    5252</div>
    53 <hr class="footer"/><address class="footer"><small>Generated on Sat Nov 20 2010 13:35:44 for atkmm by&#160;
     53<hr class="footer"/><address class="footer"><small>Generated on Thu Dec 9 2010 16:12:54 for atkmm by&#160;
    5454<a href="http://www.doxygen.org/index.html">
    5555<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.7.2 </small></address>
    5656</body>
  • atkmm-2.22.1/doc/reference/html/classAtk_1_1Action-members.html

    diff -ur distfiles.macports.org/atkmm-2.22.1/doc/reference/html/classAtk_1_1Action-members.html ftp.cse.buffalo.edu/atkmm-2.22.1/doc/reference/html/classAtk_1_1Action-members.html
    old new  
    6868  <tr class="memlist"><td><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Interface.html#a8e12a7a3e0281e28798326ad65e3560c">~Interface</a>()</td><td><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Interface.html">Glib::Interface</a></td><td><code> [virtual]</code></td></tr>
    6969  <tr class="memlist"><td><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html#a42ac047a06c36c2d9c75f7cffc537dc4">~ObjectBase</a>()=0</td><td><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html">Glib::ObjectBase</a></td><td><code> [protected, pure virtual]</code></td></tr>
    7070</table></div>
    71 <hr class="footer"/><address class="footer"><small>Generated on Sat Nov 20 2010 13:35:45 for atkmm by&#160;
     71<hr class="footer"/><address class="footer"><small>Generated on Thu Dec 9 2010 16:12:54 for atkmm by&#160;
    7272<a href="http://www.doxygen.org/index.html">
    7373<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.7.2 </small></address>
    7474</body>
  • atkmm-2.22.1/doc/reference/html/classAtk_1_1Action.html

    diff -ur distfiles.macports.org/atkmm-2.22.1/doc/reference/html/classAtk_1_1Action.html ftp.cse.buffalo.edu/atkmm-2.22.1/doc/reference/html/classAtk_1_1Action.html
    old new  
    316316</div>
    317317</div>
    318318</div>
    319 <hr class="footer"/><address class="footer"><small>Generated on Sat Nov 20 2010 13:35:45 for atkmm by&#160;
     319<hr class="footer"/><address class="footer"><small>Generated on Thu Dec 9 2010 16:12:54 for atkmm by&#160;
    320320<a href="http://www.doxygen.org/index.html">
    321321<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.7.2 </small></address>
    322322</body>
  • atkmm-2.22.1/doc/reference/html/classAtk_1_1Component-members.html

    diff -ur distfiles.macports.org/atkmm-2.22.1/doc/reference/html/classAtk_1_1Component-members.html ftp.cse.buffalo.edu/atkmm-2.22.1/doc/reference/html/classAtk_1_1Component-members.html
    old new  
    7474  <tr class="memlist"><td><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Interface.html#a8e12a7a3e0281e28798326ad65e3560c">~Interface</a>()</td><td><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Interface.html">Glib::Interface</a></td><td><code> [virtual]</code></td></tr>
    7575  <tr class="memlist"><td><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html#a42ac047a06c36c2d9c75f7cffc537dc4">~ObjectBase</a>()=0</td><td><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html">Glib::ObjectBase</a></td><td><code> [protected, pure virtual]</code></td></tr>
    7676</table></div>
    77 <hr class="footer"/><address class="footer"><small>Generated on Sat Nov 20 2010 13:35:45 for atkmm by&#160;
     77<hr class="footer"/><address class="footer"><small>Generated on Thu Dec 9 2010 16:12:54 for atkmm by&#160;
    7878<a href="http://www.doxygen.org/index.html">
    7979<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.7.2 </small></address>
    8080</body>
  • atkmm-2.22.1/doc/reference/html/classAtk_1_1Component.html

    diff -ur distfiles.macports.org/atkmm-2.22.1/doc/reference/html/classAtk_1_1Component.html ftp.cse.buffalo.edu/atkmm-2.22.1/doc/reference/html/classAtk_1_1Component.html
    old new  
    612612</div>
    613613</div>
    614614</div>
    615 <hr class="footer"/><address class="footer"><small>Generated on Sat Nov 20 2010 13:35:45 for atkmm by&#160;
     615<hr class="footer"/><address class="footer"><small>Generated on Thu Dec 9 2010 16:12:54 for atkmm by&#160;
    616616<a href="http://www.doxygen.org/index.html">
    617617<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.7.2 </small></address>
    618618</body>
  • atkmm-2.22.1/doc/reference/html/classAtk_1_1Document-members.html

    diff -ur distfiles.macports.org/atkmm-2.22.1/doc/reference/html/classAtk_1_1Document-members.html ftp.cse.buffalo.edu/atkmm-2.22.1/doc/reference/html/classAtk_1_1Document-members.html
    old new  
    6363  <tr class="memlist"><td><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Interface.html#a8e12a7a3e0281e28798326ad65e3560c">~Interface</a>()</td><td><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Interface.html">Glib::Interface</a></td><td><code> [virtual]</code></td></tr>
    6464  <tr class="memlist"><td><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html#a42ac047a06c36c2d9c75f7cffc537dc4">~ObjectBase</a>()=0</td><td><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html">Glib::ObjectBase</a></td><td><code> [protected, pure virtual]</code></td></tr>
    6565</table></div>
    66 <hr class="footer"/><address class="footer"><small>Generated on Sat Nov 20 2010 13:35:45 for atkmm by&#160;
     66<hr class="footer"/><address class="footer"><small>Generated on Thu Dec 9 2010 16:12:54 for atkmm by&#160;
    6767<a href="http://www.doxygen.org/index.html">
    6868<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.7.2 </small></address>
    6969</body>
  • atkmm-2.22.1/doc/reference/html/classAtk_1_1Document.html

    diff -ur distfiles.macports.org/atkmm-2.22.1/doc/reference/html/classAtk_1_1Document.html ftp.cse.buffalo.edu/atkmm-2.22.1/doc/reference/html/classAtk_1_1Document.html
    old new  
    155155</div>
    156156</div>
    157157</div>
    158 <hr class="footer"/><address class="footer"><small>Generated on Sat Nov 20 2010 13:35:45 for atkmm by&#160;
     158<hr class="footer"/><address class="footer"><small>Generated on Thu Dec 9 2010 16:12:54 for atkmm by&#160;
    159159<a href="http://www.doxygen.org/index.html">
    160160<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.7.2 </small></address>
    161161</body>
  • atkmm-2.22.1/doc/reference/html/classAtk_1_1Hyperlink-members.html

    diff -ur distfiles.macports.org/atkmm-2.22.1/doc/reference/html/classAtk_1_1Hyperlink-members.html ftp.cse.buffalo.edu/atkmm-2.22.1/doc/reference/html/classAtk_1_1Hyperlink-members.html
    old new  
    9494  <tr class="memlist"><td><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Object.html#a5ae4319439a3a03d8f803fb5a27f12df">~Object</a>()</td><td><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Object.html">Glib::Object</a></td><td><code> [protected, virtual]</code></td></tr>
    9595  <tr class="memlist"><td><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html#a42ac047a06c36c2d9c75f7cffc537dc4">~ObjectBase</a>()=0</td><td><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html">Glib::ObjectBase</a></td><td><code> [protected, pure virtual]</code></td></tr>
    9696</table></div>
    97 <hr class="footer"/><address class="footer"><small>Generated on Sat Nov 20 2010 13:35:45 for atkmm by&#160;
     97<hr class="footer"/><address class="footer"><small>Generated on Thu Dec 9 2010 16:12:54 for atkmm by&#160;
    9898<a href="http://www.doxygen.org/index.html">
    9999<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.7.2 </small></address>
    100100</body>
  • atkmm-2.22.1/doc/reference/html/classAtk_1_1Hyperlink.html

    diff -ur distfiles.macports.org/atkmm-2.22.1/doc/reference/html/classAtk_1_1Hyperlink.html ftp.cse.buffalo.edu/atkmm-2.22.1/doc/reference/html/classAtk_1_1Hyperlink.html
    old new  
    416416</div>
    417417</div>
    418418</div>
    419 <hr class="footer"/><address class="footer"><small>Generated on Sat Nov 20 2010 13:35:45 for atkmm by&#160;
     419<hr class="footer"/><address class="footer"><small>Generated on Thu Dec 9 2010 16:12:54 for atkmm by&#160;
    420420<a href="http://www.doxygen.org/index.html">
    421421<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.7.2 </small></address>
    422422</body>
  • atkmm-2.22.1/doc/reference/html/classAtk_1_1Image-members.html

    diff -ur distfiles.macports.org/atkmm-2.22.1/doc/reference/html/classAtk_1_1Image-members.html ftp.cse.buffalo.edu/atkmm-2.22.1/doc/reference/html/classAtk_1_1Image-members.html
    old new  
    6565  <tr class="memlist"><td><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Interface.html#a8e12a7a3e0281e28798326ad65e3560c">~Interface</a>()</td><td><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Interface.html">Glib::Interface</a></td><td><code> [virtual]</code></td></tr>
    6666  <tr class="memlist"><td><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html#a42ac047a06c36c2d9c75f7cffc537dc4">~ObjectBase</a>()=0</td><td><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html">Glib::ObjectBase</a></td><td><code> [protected, pure virtual]</code></td></tr>
    6767</table></div>
    68 <hr class="footer"/><address class="footer"><small>Generated on Sat Nov 20 2010 13:35:45 for atkmm by&#160;
     68<hr class="footer"/><address class="footer"><small>Generated on Thu Dec 9 2010 16:12:54 for atkmm by&#160;
    6969<a href="http://www.doxygen.org/index.html">
    7070<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.7.2 </small></address>
    7171</body>
  • atkmm-2.22.1/doc/reference/html/classAtk_1_1Image.html

    diff -ur distfiles.macports.org/atkmm-2.22.1/doc/reference/html/classAtk_1_1Image.html ftp.cse.buffalo.edu/atkmm-2.22.1/doc/reference/html/classAtk_1_1Image.html
    old new  
    246246</div>
    247247</div>
    248248</div>
    249 <hr class="footer"/><address class="footer"><small>Generated on Sat Nov 20 2010 13:35:45 for atkmm by&#160;
     249<hr class="footer"/><address class="footer"><small>Generated on Thu Dec 9 2010 16:12:54 for atkmm by&#160;
    250250<a href="http://www.doxygen.org/index.html">
    251251<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.7.2 </small></address>
    252252</body>
  • atkmm-2.22.1/doc/reference/html/classAtk_1_1NoOpObject-members.html

    diff -ur distfiles.macports.org/atkmm-2.22.1/doc/reference/html/classAtk_1_1NoOpObject-members.html ftp.cse.buffalo.edu/atkmm-2.22.1/doc/reference/html/classAtk_1_1NoOpObject-members.html
    old new  
    239239  <tr class="memlist"><td><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Interface.html#a8e12a7a3e0281e28798326ad65e3560c">~Interface</a>()</td><td><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Interface.html">Glib::Interface</a></td><td><code> [virtual]</code></td></tr>
    240240  <tr class="memlist"><td><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html#a42ac047a06c36c2d9c75f7cffc537dc4">~ObjectBase</a>()=0</td><td><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html">Glib::ObjectBase</a></td><td><code> [protected, pure virtual]</code></td></tr>
    241241</table></div>
    242 <hr class="footer"/><address class="footer"><small>Generated on Sat Nov 20 2010 13:35:45 for atkmm by&#160;
     242<hr class="footer"/><address class="footer"><small>Generated on Thu Dec 9 2010 16:12:54 for atkmm by&#160;
    243243<a href="http://www.doxygen.org/index.html">
    244244<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.7.2 </small></address>
    245245</body>
  • atkmm-2.22.1/doc/reference/html/classAtk_1_1NoOpObject.html

    diff -ur distfiles.macports.org/atkmm-2.22.1/doc/reference/html/classAtk_1_1NoOpObject.html ftp.cse.buffalo.edu/atkmm-2.22.1/doc/reference/html/classAtk_1_1NoOpObject.html
    old new  
    114114</div>
    115115</div>
    116116</div>
    117 <hr class="footer"/><address class="footer"><small>Generated on Sat Nov 20 2010 13:35:45 for atkmm by&#160;
     117<hr class="footer"/><address class="footer"><small>Generated on Thu Dec 9 2010 16:12:54 for atkmm by&#160;
    118118<a href="http://www.doxygen.org/index.html">
    119119<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.7.2 </small></address>
    120120</body>
  • atkmm-2.22.1/doc/reference/html/classAtk_1_1Object-members.html

    diff -ur distfiles.macports.org/atkmm-2.22.1/doc/reference/html/classAtk_1_1Object-members.html ftp.cse.buffalo.edu/atkmm-2.22.1/doc/reference/html/classAtk_1_1Object-members.html
    old new  
    115115  <tr class="memlist"><td><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Object.html#ae4dea9a8dc611d6e4400a5b6a3cb4e7f">Glib::Object::wrap</a>(GObject *object, bool take_copy=false)</td><td><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Object.html">Glib::Object</a></td><td></td></tr>
    116116  <tr class="memlist"><td><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html#a42ac047a06c36c2d9c75f7cffc537dc4">~ObjectBase</a>()=0</td><td><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html">Glib::ObjectBase</a></td><td><code> [protected, pure virtual]</code></td></tr>
    117117</table></div>
    118 <hr class="footer"/><address class="footer"><small>Generated on Sat Nov 20 2010 13:35:45 for atkmm by&#160;
     118<hr class="footer"/><address class="footer"><small>Generated on Thu Dec 9 2010 16:12:54 for atkmm by&#160;
    119119<a href="http://www.doxygen.org/index.html">
    120120<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.7.2 </small></address>
    121121</body>
  • atkmm-2.22.1/doc/reference/html/classAtk_1_1Object.html

    diff -ur distfiles.macports.org/atkmm-2.22.1/doc/reference/html/classAtk_1_1Object.html ftp.cse.buffalo.edu/atkmm-2.22.1/doc/reference/html/classAtk_1_1Object.html
    old new  
    9191<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the accessible parent of the accessible. <a href="#a05b859f172dcce174b6ec4c52e0b76be"></a><br/></td></tr>
    9292<tr><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classAtk_1_1Object.html#ac51f6e7286a90a5d4daee05160fe4f28">set_role</a> (Role role)</td></tr>
    9393<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the role of the accessible. <a href="#ac51f6e7286a90a5d4daee05160fe4f28"></a><br/></td></tr>
    94 <tr><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classAtk_1_1Object.html#a220aafba4f632e755c45bc57f3293689">notify_state_change</a> (State state, bool <a class="elRef" doxygen="libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a01193.html#ga1c9e781d8d15a3814a601f471797c825">value</a>)</td></tr>
     94<tr><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classAtk_1_1Object.html#a220aafba4f632e755c45bc57f3293689">notify_state_change</a> (State state, bool <a class="elRef" doxygen="libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a01190.html#ga1c9e781d8d15a3814a601f471797c825">value</a>)</td></tr>
    9595<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Emits a state-change signal for the specified state. <a href="#a220aafba4f632e755c45bc57f3293689"></a><br/></td></tr>
    9696<tr><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classAtk_1_1Object.html#a8ccf42eed0a5625d4c46444c73412daa">add_relationship</a> (RelationType relationship, const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>&lt; <a class="el" href="classAtk_1_1Object.html">Object</a> &gt;&amp; target)</td></tr>
    9797<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Adds a relationship of the specified type with the specified target. <a href="#a8ccf42eed0a5625d4c46444c73412daa"></a><br/></td></tr>
     
    11971197</div>
    11981198</div>
    11991199</div>
    1200 <hr class="footer"/><address class="footer"><small>Generated on Sat Nov 20 2010 13:35:45 for atkmm by&#160;
     1200<hr class="footer"/><address class="footer"><small>Generated on Thu Dec 9 2010 16:12:54 for atkmm by&#160;
    12011201<a href="http://www.doxygen.org/index.html">
    12021202<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.7.2 </small></address>
    12031203</body>
  • atkmm-2.22.1/doc/reference/html/classAtk_1_1ObjectAccessible-members.html

    diff -ur distfiles.macports.org/atkmm-2.22.1/doc/reference/html/classAtk_1_1ObjectAccessible-members.html ftp.cse.buffalo.edu/atkmm-2.22.1/doc/reference/html/classAtk_1_1ObjectAccessible-members.html
    old new  
    120120  <tr class="memlist"><td><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Object.html#ae4dea9a8dc611d6e4400a5b6a3cb4e7f">Glib::Object::wrap</a>(GObject *object, bool take_copy=false)</td><td><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Object.html">Glib::Object</a></td><td></td></tr>
    121121  <tr class="memlist"><td><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html#a42ac047a06c36c2d9c75f7cffc537dc4">~ObjectBase</a>()=0</td><td><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html">Glib::ObjectBase</a></td><td><code> [protected, pure virtual]</code></td></tr>
    122122</table></div>
    123 <hr class="footer"/><address class="footer"><small>Generated on Sat Nov 20 2010 13:35:45 for atkmm by&#160;
     123<hr class="footer"/><address class="footer"><small>Generated on Thu Dec 9 2010 16:12:54 for atkmm by&#160;
    124124<a href="http://www.doxygen.org/index.html">
    125125<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.7.2 </small></address>
    126126</body>
  • atkmm-2.22.1/doc/reference/html/classAtk_1_1ObjectAccessible.html

    diff -ur distfiles.macports.org/atkmm-2.22.1/doc/reference/html/classAtk_1_1ObjectAccessible.html ftp.cse.buffalo.edu/atkmm-2.22.1/doc/reference/html/classAtk_1_1ObjectAccessible.html
    old new  
    221221</div>
    222222</div>
    223223</div>
    224 <hr class="footer"/><address class="footer"><small>Generated on Sat Nov 20 2010 13:35:45 for atkmm by&#160;
     224<hr class="footer"/><address class="footer"><small>Generated on Thu Dec 9 2010 16:12:54 for atkmm by&#160;
    225225<a href="http://www.doxygen.org/index.html">
    226226<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.7.2 </small></address>
    227227</body>
  • atkmm-2.22.1/doc/reference/html/classAtk_1_1Relation-members.html

    diff -ur distfiles.macports.org/atkmm-2.22.1/doc/reference/html/classAtk_1_1Relation-members.html ftp.cse.buffalo.edu/atkmm-2.22.1/doc/reference/html/classAtk_1_1Relation-members.html
    old new  
    7272  <tr class="memlist"><td><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Object.html#a5ae4319439a3a03d8f803fb5a27f12df">~Object</a>()</td><td><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Object.html">Glib::Object</a></td><td><code> [protected, virtual]</code></td></tr>
    7373  <tr class="memlist"><td><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html#a42ac047a06c36c2d9c75f7cffc537dc4">~ObjectBase</a>()=0</td><td><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html">Glib::ObjectBase</a></td><td><code> [protected, pure virtual]</code></td></tr>
    7474</table></div>
    75 <hr class="footer"/><address class="footer"><small>Generated on Sat Nov 20 2010 13:35:45 for atkmm by&#160;
     75<hr class="footer"/><address class="footer"><small>Generated on Thu Dec 9 2010 16:12:54 for atkmm by&#160;
    7676<a href="http://www.doxygen.org/index.html">
    7777<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.7.2 </small></address>
    7878</body>
  • atkmm-2.22.1/doc/reference/html/classAtk_1_1Relation.html

    diff -ur distfiles.macports.org/atkmm-2.22.1/doc/reference/html/classAtk_1_1Relation.html ftp.cse.buffalo.edu/atkmm-2.22.1/doc/reference/html/classAtk_1_1Relation.html
    old new  
    165165</div>
    166166</div>
    167167</div>
    168 <hr class="footer"/><address class="footer"><small>Generated on Sat Nov 20 2010 13:35:45 for atkmm by&#160;
     168<hr class="footer"/><address class="footer"><small>Generated on Thu Dec 9 2010 16:12:54 for atkmm by&#160;
    169169<a href="http://www.doxygen.org/index.html">
    170170<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.7.2 </small></address>
    171171</body>
  • atkmm-2.22.1/doc/reference/html/classAtk_1_1RelationSet-members.html

    diff -ur distfiles.macports.org/atkmm-2.22.1/doc/reference/html/classAtk_1_1RelationSet-members.html ftp.cse.buffalo.edu/atkmm-2.22.1/doc/reference/html/classAtk_1_1RelationSet-members.html
    old new  
    7777  <tr class="memlist"><td><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Object.html#a5ae4319439a3a03d8f803fb5a27f12df">~Object</a>()</td><td><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Object.html">Glib::Object</a></td><td><code> [protected, virtual]</code></td></tr>
    7878  <tr class="memlist"><td><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html#a42ac047a06c36c2d9c75f7cffc537dc4">~ObjectBase</a>()=0</td><td><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html">Glib::ObjectBase</a></td><td><code> [protected, pure virtual]</code></td></tr>
    7979</table></div>
    80 <hr class="footer"/><address class="footer"><small>Generated on Sat Nov 20 2010 13:35:45 for atkmm by&#160;
     80<hr class="footer"/><address class="footer"><small>Generated on Thu Dec 9 2010 16:12:54 for atkmm by&#160;
    8181<a href="http://www.doxygen.org/index.html">
    8282<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.7.2 </small></address>
    8383</body>
  • atkmm-2.22.1/doc/reference/html/classAtk_1_1RelationSet.html

    diff -ur distfiles.macports.org/atkmm-2.22.1/doc/reference/html/classAtk_1_1RelationSet.html ftp.cse.buffalo.edu/atkmm-2.22.1/doc/reference/html/classAtk_1_1RelationSet.html
    old new  
    315315</div>
    316316</div>
    317317</div>
    318 <hr class="footer"/><address class="footer"><small>Generated on Sat Nov 20 2010 13:35:45 for atkmm by&#160;
     318<hr class="footer"/><address class="footer"><small>Generated on Thu Dec 9 2010 16:12:54 for atkmm by&#160;
    319319<a href="http://www.doxygen.org/index.html">
    320320<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.7.2 </small></address>
    321321</body>
  • atkmm-2.22.1/doc/reference/html/classAtk_1_1Selection-members.html

    diff -ur distfiles.macports.org/atkmm-2.22.1/doc/reference/html/classAtk_1_1Selection-members.html ftp.cse.buffalo.edu/atkmm-2.22.1/doc/reference/html/classAtk_1_1Selection-members.html
    old new  
    6969  <tr class="memlist"><td><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Interface.html#a8e12a7a3e0281e28798326ad65e3560c">~Interface</a>()</td><td><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Interface.html">Glib::Interface</a></td><td><code> [virtual]</code></td></tr>
    7070  <tr class="memlist"><td><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html#a42ac047a06c36c2d9c75f7cffc537dc4">~ObjectBase</a>()=0</td><td><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html">Glib::ObjectBase</a></td><td><code> [protected, pure virtual]</code></td></tr>
    7171</table></div>
    72 <hr class="footer"/><address class="footer"><small>Generated on Sat Nov 20 2010 13:35:45 for atkmm by&#160;
     72<hr class="footer"/><address class="footer"><small>Generated on Thu Dec 9 2010 16:12:54 for atkmm by&#160;
    7373<a href="http://www.doxygen.org/index.html">
    7474<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.7.2 </small></address>
    7575</body>
  • atkmm-2.22.1/doc/reference/html/classAtk_1_1Selection.html

    diff -ur distfiles.macports.org/atkmm-2.22.1/doc/reference/html/classAtk_1_1Selection.html ftp.cse.buffalo.edu/atkmm-2.22.1/doc/reference/html/classAtk_1_1Selection.html
    old new  
    309309</div>
    310310</div>
    311311</div>
    312 <hr class="footer"/><address class="footer"><small>Generated on Sat Nov 20 2010 13:35:45 for atkmm by&#160;
     312<hr class="footer"/><address class="footer"><small>Generated on Thu Dec 9 2010 16:12:54 for atkmm by&#160;
    313313<a href="http://www.doxygen.org/index.html">
    314314<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.7.2 </small></address>
    315315</body>
  • atkmm-2.22.1/doc/reference/html/classAtk_1_1StateSet-members.html

    diff -ur distfiles.macports.org/atkmm-2.22.1/doc/reference/html/classAtk_1_1StateSet-members.html ftp.cse.buffalo.edu/atkmm-2.22.1/doc/reference/html/classAtk_1_1StateSet-members.html
    old new  
    7878  <tr class="memlist"><td><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Object.html#a5ae4319439a3a03d8f803fb5a27f12df">~Object</a>()</td><td><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Object.html">Glib::Object</a></td><td><code> [protected, virtual]</code></td></tr>
    7979  <tr class="memlist"><td><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html#a42ac047a06c36c2d9c75f7cffc537dc4">~ObjectBase</a>()=0</td><td><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html">Glib::ObjectBase</a></td><td><code> [protected, pure virtual]</code></td></tr>
    8080</table></div>
    81 <hr class="footer"/><address class="footer"><small>Generated on Sat Nov 20 2010 13:35:45 for atkmm by&#160;
     81<hr class="footer"/><address class="footer"><small>Generated on Thu Dec 9 2010 16:12:54 for atkmm by&#160;
    8282<a href="http://www.doxygen.org/index.html">
    8383<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.7.2 </small></address>
    8484</body>
  • atkmm-2.22.1/doc/reference/html/classAtk_1_1StateSet.html

    diff -ur distfiles.macports.org/atkmm-2.22.1/doc/reference/html/classAtk_1_1StateSet.html ftp.cse.buffalo.edu/atkmm-2.22.1/doc/reference/html/classAtk_1_1StateSet.html
    old new  
    6767<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Provides access to the underlying C instance. The caller is responsible for unrefing it. Use when directly setting fields in structs. <br/></td></tr>
    6868<tr><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classAtk_1_1StateSet.html#ad60014ebc037244153ce812843ee4dd9">is_empty</a> () const </td></tr>
    6969<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Checks whether the state set is empty, i.e. has no states set. <a href="#ad60014ebc037244153ce812843ee4dd9"></a><br/></td></tr>
    70 <tr><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classAtk_1_1StateSet.html#aede4c4b8495f9772d35af9da9e77395d">add_state</a> (Atk::StateType <a class="elRef" doxygen="libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a01174.html#gabe3871001e1041d7b5341b5f42324e06">type</a>)</td></tr>
     70<tr><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classAtk_1_1StateSet.html#aede4c4b8495f9772d35af9da9e77395d">add_state</a> (Atk::StateType <a class="elRef" doxygen="libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a01172.html#ga2c2933c16c723af4d77eb939438617ca">type</a>)</td></tr>
    7171<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Add a new state for the specified type to the current state set if it is not already present. <a href="#aede4c4b8495f9772d35af9da9e77395d"></a><br/></td></tr>
    7272<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a7534af9c87a8e5af0c4033fafcb05f63"></a><!-- doxytag: member="Atk::StateSet::clear_states" ref="a7534af9c87a8e5af0c4033fafcb05f63" args="()" -->
    7373void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classAtk_1_1StateSet.html#a7534af9c87a8e5af0c4033fafcb05f63">clear_states</a> ()</td></tr>
    7474<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Removes all states from the state set. <br/></td></tr>
    75 <tr><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classAtk_1_1StateSet.html#ab49dcdfd6f09d04e5dd11fe66be83d27">contains_state</a> (Atk::StateType <a class="elRef" doxygen="libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a01174.html#gabe3871001e1041d7b5341b5f42324e06">type</a>)</td></tr>
     75<tr><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classAtk_1_1StateSet.html#ab49dcdfd6f09d04e5dd11fe66be83d27">contains_state</a> (Atk::StateType <a class="elRef" doxygen="libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a01172.html#ga2c2933c16c723af4d77eb939438617ca">type</a>)</td></tr>
    7676<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Checks whether the state for the specified type is in the specified set. <a href="#ab49dcdfd6f09d04e5dd11fe66be83d27"></a><br/></td></tr>
    77 <tr><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classAtk_1_1StateSet.html#a9f01863fb1490e645e58f1013496d7b9">remove_state</a> (Atk::StateType <a class="elRef" doxygen="libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a01174.html#gabe3871001e1041d7b5341b5f42324e06">type</a>)</td></tr>
     77<tr><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classAtk_1_1StateSet.html#a9f01863fb1490e645e58f1013496d7b9">remove_state</a> (Atk::StateType <a class="elRef" doxygen="libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a01172.html#ga2c2933c16c723af4d77eb939438617ca">type</a>)</td></tr>
    7878<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Removes the state for the specified type from the state set. <a href="#a9f01863fb1490e645e58f1013496d7b9"></a><br/></td></tr>
    7979<tr><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>&lt; <a class="el" href="classAtk_1_1StateSet.html">StateSet</a> &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classAtk_1_1StateSet.html#a770c542a9abc8e97e28e07772d2bf442">and_sets</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>&lt; <a class="el" href="classAtk_1_1StateSet.html">StateSet</a> &gt;&amp; compare_set)</td></tr>
    8080<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Constructs the intersection of the two sets, returning <code>0</code> if the intersection is empty. <a href="#a770c542a9abc8e97e28e07772d2bf442"></a><br/></td></tr>
     
    308308</div>
    309309</div>
    310310</div>
    311 <hr class="footer"/><address class="footer"><small>Generated on Sat Nov 20 2010 13:35:45 for atkmm by&#160;
     311<hr class="footer"/><address class="footer"><small>Generated on Thu Dec 9 2010 16:12:54 for atkmm by&#160;
    312312<a href="http://www.doxygen.org/index.html">
    313313<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.7.2 </small></address>
    314314</body>
  • atkmm-2.22.1/doc/reference/html/classAtk_1_1StreamableContent-members.html

    diff -ur distfiles.macports.org/atkmm-2.22.1/doc/reference/html/classAtk_1_1StreamableContent-members.html ftp.cse.buffalo.edu/atkmm-2.22.1/doc/reference/html/classAtk_1_1StreamableContent-members.html
    old new  
    6464  <tr class="memlist"><td><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Interface.html#a8e12a7a3e0281e28798326ad65e3560c">~Interface</a>()</td><td><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Interface.html">Glib::Interface</a></td><td><code> [virtual]</code></td></tr>
    6565  <tr class="memlist"><td><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html#a42ac047a06c36c2d9c75f7cffc537dc4">~ObjectBase</a>()=0</td><td><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html">Glib::ObjectBase</a></td><td><code> [protected, pure virtual]</code></td></tr>
    6666</table></div>
    67 <hr class="footer"/><address class="footer"><small>Generated on Sat Nov 20 2010 13:35:45 for atkmm by&#160;
     67<hr class="footer"/><address class="footer"><small>Generated on Thu Dec 9 2010 16:12:54 for atkmm by&#160;
    6868<a href="http://www.doxygen.org/index.html">
    6969<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.7.2 </small></address>
    7070</body>
  • atkmm-2.22.1/doc/reference/html/classAtk_1_1StreamableContent.html

    diff -ur distfiles.macports.org/atkmm-2.22.1/doc/reference/html/classAtk_1_1StreamableContent.html ftp.cse.buffalo.edu/atkmm-2.22.1/doc/reference/html/classAtk_1_1StreamableContent.html
    old new  
    190190</div>
    191191</div>
    192192</div>
    193 <hr class="footer"/><address class="footer"><small>Generated on Sat Nov 20 2010 13:35:45 for atkmm by&#160;
     193<hr class="footer"/><address class="footer"><small>Generated on Thu Dec 9 2010 16:12:54 for atkmm by&#160;
    194194<a href="http://www.doxygen.org/index.html">
    195195<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.7.2 </small></address>
    196196</body>
  • atkmm-2.22.1/doc/reference/html/classAtk_1_1Table-members.html

    diff -ur distfiles.macports.org/atkmm-2.22.1/doc/reference/html/classAtk_1_1Table-members.html ftp.cse.buffalo.edu/atkmm-2.22.1/doc/reference/html/classAtk_1_1Table-members.html
    old new  
    9999  <tr class="memlist"><td><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Interface.html#a8e12a7a3e0281e28798326ad65e3560c">~Interface</a>()</td><td><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Interface.html">Glib::Interface</a></td><td><code> [virtual]</code></td></tr>
    100100  <tr class="memlist"><td><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html#a42ac047a06c36c2d9c75f7cffc537dc4">~ObjectBase</a>()=0</td><td><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html">Glib::ObjectBase</a></td><td><code> [protected, pure virtual]</code></td></tr>
    101101</table></div>
    102 <hr class="footer"/><address class="footer"><small>Generated on Sat Nov 20 2010 13:35:45 for atkmm by&#160;
     102<hr class="footer"/><address class="footer"><small>Generated on Thu Dec 9 2010 16:12:54 for atkmm by&#160;
    103103<a href="http://www.doxygen.org/index.html">
    104104<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.7.2 </small></address>
    105105</body>
  • atkmm-2.22.1/doc/reference/html/classAtk_1_1Table.html

    diff -ur distfiles.macports.org/atkmm-2.22.1/doc/reference/html/classAtk_1_1Table.html ftp.cse.buffalo.edu/atkmm-2.22.1/doc/reference/html/classAtk_1_1Table.html
    old new  
    11631163</div>
    11641164</div>
    11651165</div>
    1166 <hr class="footer"/><address class="footer"><small>Generated on Sat Nov 20 2010 13:35:45 for atkmm by&#160;
     1166<hr class="footer"/><address class="footer"><small>Generated on Thu Dec 9 2010 16:12:54 for atkmm by&#160;
    11671167<a href="http://www.doxygen.org/index.html">
    11681168<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.7.2 </small></address>
    11691169</body>
  • atkmm-2.22.1/doc/reference/html/classAtk_1_1Text-members.html

    diff -ur distfiles.macports.org/atkmm-2.22.1/doc/reference/html/classAtk_1_1Text-members.html ftp.cse.buffalo.edu/atkmm-2.22.1/doc/reference/html/classAtk_1_1Text-members.html
    old new  
    8484  <tr class="memlist"><td><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Interface.html#a8e12a7a3e0281e28798326ad65e3560c">~Interface</a>()</td><td><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Interface.html">Glib::Interface</a></td><td><code> [virtual]</code></td></tr>
    8585  <tr class="memlist"><td><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html#a42ac047a06c36c2d9c75f7cffc537dc4">~ObjectBase</a>()=0</td><td><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html">Glib::ObjectBase</a></td><td><code> [protected, pure virtual]</code></td></tr>
    8686</table></div>
    87 <hr class="footer"/><address class="footer"><small>Generated on Sat Nov 20 2010 13:35:45 for atkmm by&#160;
     87<hr class="footer"/><address class="footer"><small>Generated on Thu Dec 9 2010 16:12:54 for atkmm by&#160;
    8888<a href="http://www.doxygen.org/index.html">
    8989<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.7.2 </small></address>
    9090</body>
  • atkmm-2.22.1/doc/reference/html/classAtk_1_1Text.html

    diff -ur distfiles.macports.org/atkmm-2.22.1/doc/reference/html/classAtk_1_1Text.html ftp.cse.buffalo.edu/atkmm-2.22.1/doc/reference/html/classAtk_1_1Text.html
    old new  
    984984</div>
    985985</div>
    986986</div>
    987 <hr class="footer"/><address class="footer"><small>Generated on Sat Nov 20 2010 13:35:45 for atkmm by&#160;
     987<hr class="footer"/><address class="footer"><small>Generated on Thu Dec 9 2010 16:12:54 for atkmm by&#160;
    988988<a href="http://www.doxygen.org/index.html">
    989989<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.7.2 </small></address>
    990990</body>
  • atkmm-2.22.1/doc/reference/html/classAtk_1_1Value-members.html

    diff -ur distfiles.macports.org/atkmm-2.22.1/doc/reference/html/classAtk_1_1Value-members.html ftp.cse.buffalo.edu/atkmm-2.22.1/doc/reference/html/classAtk_1_1Value-members.html
    old new  
    6565  <tr class="memlist"><td><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Interface.html#a8e12a7a3e0281e28798326ad65e3560c">~Interface</a>()</td><td><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Interface.html">Glib::Interface</a></td><td><code> [virtual]</code></td></tr>
    6666  <tr class="memlist"><td><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html#a42ac047a06c36c2d9c75f7cffc537dc4">~ObjectBase</a>()=0</td><td><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html">Glib::ObjectBase</a></td><td><code> [protected, pure virtual]</code></td></tr>
    6767</table></div>
    68 <hr class="footer"/><address class="footer"><small>Generated on Sat Nov 20 2010 13:35:45 for atkmm by&#160;
     68<hr class="footer"/><address class="footer"><small>Generated on Thu Dec 9 2010 16:12:54 for atkmm by&#160;
    6969<a href="http://www.doxygen.org/index.html">
    7070<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.7.2 </small></address>
    7171</body>
  • atkmm-2.22.1/doc/reference/html/classAtk_1_1Value.html

    diff -ur distfiles.macports.org/atkmm-2.22.1/doc/reference/html/classAtk_1_1Value.html ftp.cse.buffalo.edu/atkmm-2.22.1/doc/reference/html/classAtk_1_1Value.html
    old new  
    6262<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a1e9774208afa33f5536d0af2f1542724"></a><!-- doxytag: member="Atk::Value::gobj" ref="a1e9774208afa33f5536d0af2f1542724" args="() const " -->
    6363const AtkValue*&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classAtk_1_1Value.html#a1e9774208afa33f5536d0af2f1542724">gobj</a> () const </td></tr>
    6464<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Provides access to the underlying C GObject. <br/></td></tr>
    65 <tr><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classAtk_1_1Value.html#a413b3aa759306e5453c52c3cc633bbdd">get_current_value</a> (<a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ValueBase.html">Glib::ValueBase</a>&amp;<a class="elRef" doxygen="libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a01193.html#ga1c9e781d8d15a3814a601f471797c825">value</a>) const </td></tr>
     65<tr><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classAtk_1_1Value.html#a413b3aa759306e5453c52c3cc633bbdd">get_current_value</a> (<a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ValueBase.html">Glib::ValueBase</a>&amp;<a class="elRef" doxygen="libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a01190.html#ga1c9e781d8d15a3814a601f471797c825">value</a>) const </td></tr>
    6666<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Gets the value of this object. <a href="#a413b3aa759306e5453c52c3cc633bbdd"></a><br/></td></tr>
    67 <tr><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classAtk_1_1Value.html#a05900879b78b99af2f608f8aa6225043">get_maximum_value</a> (<a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ValueBase.html">Glib::ValueBase</a>&amp;<a class="elRef" doxygen="libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a01193.html#ga1c9e781d8d15a3814a601f471797c825">value</a>) const </td></tr>
     67<tr><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classAtk_1_1Value.html#a05900879b78b99af2f608f8aa6225043">get_maximum_value</a> (<a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ValueBase.html">Glib::ValueBase</a>&amp;<a class="elRef" doxygen="libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a01190.html#ga1c9e781d8d15a3814a601f471797c825">value</a>) const </td></tr>
    6868<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Gets the maximum value of this object. <a href="#a05900879b78b99af2f608f8aa6225043"></a><br/></td></tr>
    69 <tr><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classAtk_1_1Value.html#aa846b94c5afd243ad9b6488f3c882b30">get_minimum_value</a> (<a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ValueBase.html">Glib::ValueBase</a>&amp;<a class="elRef" doxygen="libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a01193.html#ga1c9e781d8d15a3814a601f471797c825">value</a>) const </td></tr>
     69<tr><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classAtk_1_1Value.html#aa846b94c5afd243ad9b6488f3c882b30">get_minimum_value</a> (<a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ValueBase.html">Glib::ValueBase</a>&amp;<a class="elRef" doxygen="libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a01190.html#ga1c9e781d8d15a3814a601f471797c825">value</a>) const </td></tr>
    7070<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Gets the minimum value of this object. <a href="#aa846b94c5afd243ad9b6488f3c882b30"></a><br/></td></tr>
    71 <tr><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classAtk_1_1Value.html#a5f68e4192b070a56f2f5dbdc29d18ef1">set_current_value</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ValueBase.html">Glib::ValueBase</a>&amp;<a class="elRef" doxygen="libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a01193.html#ga1c9e781d8d15a3814a601f471797c825">value</a>)</td></tr>
     71<tr><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classAtk_1_1Value.html#a5f68e4192b070a56f2f5dbdc29d18ef1">set_current_value</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ValueBase.html">Glib::ValueBase</a>&amp;<a class="elRef" doxygen="libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a01190.html#ga1c9e781d8d15a3814a601f471797c825">value</a>)</td></tr>
    7272<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the value of this object. <a href="#a5f68e4192b070a56f2f5dbdc29d18ef1"></a><br/></td></tr>
    7373<tr><td colspan="2"><h2><a name="related"></a>
    7474Related Functions</h2></td></tr>
     
    221221</div>
    222222</div>
    223223</div>
    224 <hr class="footer"/><address class="footer"><small>Generated on Sat Nov 20 2010 13:35:45 for atkmm by&#160;
     224<hr class="footer"/><address class="footer"><small>Generated on Thu Dec 9 2010 16:12:54 for atkmm by&#160;
    225225<a href="http://www.doxygen.org/index.html">
    226226<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.7.2 </small></address>
    227227</body>
  • atkmm-2.22.1/doc/reference/html/classes.html

    diff -ur distfiles.macports.org/atkmm-2.22.1/doc/reference/html/classes.html ftp.cse.buffalo.edu/atkmm-2.22.1/doc/reference/html/classes.html
    old new  
    4646</td><td><a name="letter_N"></a><table border="0" cellspacing="0" cellpadding="0"><tr><td><div class="ah">&#160;&#160;N&#160;&#160;</div></td></tr></table>
    4747</td><td><a class="el" href="classAtk_1_1Relation.html">Relation</a> (<a class="el" href="namespaceAtk.html">Atk</a>)&#160;&#160;&#160;</td><td><a class="el" href="classAtk_1_1StreamableContent.html">StreamableContent</a> (<a class="el" href="namespaceAtk.html">Atk</a>)&#160;&#160;&#160;</td><td><a class="el" href="classAtk_1_1Value.html">Value</a> (<a class="el" href="namespaceAtk.html">Atk</a>)&#160;&#160;&#160;</td></tr><tr><td><a class="el" href="classAtk_1_1Document.html">Document</a> (<a class="el" href="namespaceAtk.html">Atk</a>)&#160;&#160;&#160;</td><td><a class="el" href="classAtk_1_1NoOpObject.html">NoOpObject</a> (<a class="el" href="namespaceAtk.html">Atk</a>)&#160;&#160;&#160;</td></tr></table><div class="qindex"><a class="qindex" href="#letter_A">A</a>&#160;|&#160;<a class="qindex" href="#letter_C">C</a>&#160;|&#160;<a class="qindex" href="#letter_D">D</a>&#160;|&#160;<a class="qindex" href="#letter_H">H</a>&#160;|&#160;<a class="qindex" href="#letter_I">I</a>&#160;|&#160;<a class="qindex" href="#letter_N">N</a>&#160;|&#160;<a class="qindex" href="#letter_O">O</a>&#160;|&#160;<a class="qindex" href="#letter_R">R</a>&#160;|&#160;<a class="qindex" href="#letter_S">S</a>&#160;|&#160;<a class="qindex" href="#letter_T">T</a>&#160;|&#160;<a class="qindex" href="#letter_V">V</a></div>
    4848</div>
    49 <hr class="footer"/><address class="footer"><small>Generated on Sat Nov 20 2010 13:35:44 for atkmm by&#160;
     49<hr class="footer"/><address class="footer"><small>Generated on Thu Dec 9 2010 16:12:54 for atkmm by&#160;
    5050<a href="http://www.doxygen.org/index.html">
    5151<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.7.2 </small></address>
    5252</body>
  • atkmm-2.22.1/doc/reference/html/functions.html

    diff -ur distfiles.macports.org/atkmm-2.22.1/doc/reference/html/functions.html ftp.cse.buffalo.edu/atkmm-2.22.1/doc/reference/html/functions.html
    old new  
    8383</li>
    8484</ul>
    8585</div>
    86 <hr class="footer"/><address class="footer"><small>Generated on Sat Nov 20 2010 13:35:44 for atkmm by&#160;
     86<hr class="footer"/><address class="footer"><small>Generated on Thu Dec 9 2010 16:12:54 for atkmm by&#160;
    8787<a href="http://www.doxygen.org/index.html">
    8888<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.7.2 </small></address>
    8989</body>
  • atkmm-2.22.1/doc/reference/html/functions_0x63.html

    diff -ur distfiles.macports.org/atkmm-2.22.1/doc/reference/html/functions_0x63.html ftp.cse.buffalo.edu/atkmm-2.22.1/doc/reference/html/functions_0x63.html
    old new  
    6767</li>
    6868</ul>
    6969</div>
    70 <hr class="footer"/><address class="footer"><small>Generated on Sat Nov 20 2010 13:35:44 for atkmm by&#160;
     70<hr class="footer"/><address class="footer"><small>Generated on Thu Dec 9 2010 16:12:54 for atkmm by&#160;
    7171<a href="http://www.doxygen.org/index.html">
    7272<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.7.2 </small></address>
    7373</body>
  • atkmm-2.22.1/doc/reference/html/functions_0x64.html

    diff -ur distfiles.macports.org/atkmm-2.22.1/doc/reference/html/functions_0x64.html ftp.cse.buffalo.edu/atkmm-2.22.1/doc/reference/html/functions_0x64.html
    old new  
    5858</li>
    5959</ul>
    6060</div>
    61 <hr class="footer"/><address class="footer"><small>Generated on Sat Nov 20 2010 13:35:44 for atkmm by&#160;
     61<hr class="footer"/><address class="footer"><small>Generated on Thu Dec 9 2010 16:12:54 for atkmm by&#160;
    6262<a href="http://www.doxygen.org/index.html">
    6363<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.7.2 </small></address>
    6464</body>
  • atkmm-2.22.1/doc/reference/html/functions_0x66.html

    diff -ur distfiles.macports.org/atkmm-2.22.1/doc/reference/html/functions_0x66.html ftp.cse.buffalo.edu/atkmm-2.22.1/doc/reference/html/functions_0x66.html
    old new  
    5858</li>
    5959</ul>
    6060</div>
    61 <hr class="footer"/><address class="footer"><small>Generated on Sat Nov 20 2010 13:35:44 for atkmm by&#160;
     61<hr class="footer"/><address class="footer"><small>Generated on Thu Dec 9 2010 16:12:54 for atkmm by&#160;
    6262<a href="http://www.doxygen.org/index.html">
    6363<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.7.2 </small></address>
    6464</body>
  • atkmm-2.22.1/doc/reference/html/functions_0x67.html

    diff -ur distfiles.macports.org/atkmm-2.22.1/doc/reference/html/functions_0x67.html ftp.cse.buffalo.edu/atkmm-2.22.1/doc/reference/html/functions_0x67.html
    old new  
    305305</li>
    306306</ul>
    307307</div>
    308 <hr class="footer"/><address class="footer"><small>Generated on Sat Nov 20 2010 13:35:44 for atkmm by&#160;
     308<hr class="footer"/><address class="footer"><small>Generated on Thu Dec 9 2010 16:12:54 for atkmm by&#160;
    309309<a href="http://www.doxygen.org/index.html">
    310310<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.7.2 </small></address>
    311311</body>
  • atkmm-2.22.1/doc/reference/html/functions_0x69.html

    diff -ur distfiles.macports.org/atkmm-2.22.1/doc/reference/html/functions_0x69.html ftp.cse.buffalo.edu/atkmm-2.22.1/doc/reference/html/functions_0x69.html
    old new  
    7676</li>
    7777</ul>
    7878</div>
    79 <hr class="footer"/><address class="footer"><small>Generated on Sat Nov 20 2010 13:35:44 for atkmm by&#160;
     79<hr class="footer"/><address class="footer"><small>Generated on Thu Dec 9 2010 16:12:54 for atkmm by&#160;
    8080<a href="http://www.doxygen.org/index.html">
    8181<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.7.2 </small></address>
    8282</body>
  • atkmm-2.22.1/doc/reference/html/functions_0x6e.html

    diff -ur distfiles.macports.org/atkmm-2.22.1/doc/reference/html/functions_0x6e.html ftp.cse.buffalo.edu/atkmm-2.22.1/doc/reference/html/functions_0x6e.html
    old new  
    5858</li>
    5959</ul>
    6060</div>
    61 <hr class="footer"/><address class="footer"><small>Generated on Sat Nov 20 2010 13:35:44 for atkmm by&#160;
     61<hr class="footer"/><address class="footer"><small>Generated on Thu Dec 9 2010 16:12:54 for atkmm by&#160;
    6262<a href="http://www.doxygen.org/index.html">
    6363<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.7.2 </small></address>
    6464</body>
  • atkmm-2.22.1/doc/reference/html/functions_0x6f.html

    diff -ur distfiles.macports.org/atkmm-2.22.1/doc/reference/html/functions_0x6f.html ftp.cse.buffalo.edu/atkmm-2.22.1/doc/reference/html/functions_0x6f.html
    old new  
    5858</li>
    5959</ul>
    6060</div>
    61 <hr class="footer"/><address class="footer"><small>Generated on Sat Nov 20 2010 13:35:44 for atkmm by&#160;
     61<hr class="footer"/><address class="footer"><small>Generated on Thu Dec 9 2010 16:12:54 for atkmm by&#160;
    6262<a href="http://www.doxygen.org/index.html">
    6363<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.7.2 </small></address>
    6464</body>
  • atkmm-2.22.1/doc/reference/html/functions_0x70.html

    diff -ur distfiles.macports.org/atkmm-2.22.1/doc/reference/html/functions_0x70.html ftp.cse.buffalo.edu/atkmm-2.22.1/doc/reference/html/functions_0x70.html
    old new  
    106106</li>
    107107</ul>
    108108</div>
    109 <hr class="footer"/><address class="footer"><small>Generated on Sat Nov 20 2010 13:35:44 for atkmm by&#160;
     109<hr class="footer"/><address class="footer"><small>Generated on Thu Dec 9 2010 16:12:54 for atkmm by&#160;
    110110<a href="http://www.doxygen.org/index.html">
    111111<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.7.2 </small></address>
    112112</body>
  • atkmm-2.22.1/doc/reference/html/functions_0x72.html

    diff -ur distfiles.macports.org/atkmm-2.22.1/doc/reference/html/functions_0x72.html ftp.cse.buffalo.edu/atkmm-2.22.1/doc/reference/html/functions_0x72.html
    old new  
    7474</li>
    7575</ul>
    7676</div>
    77 <hr class="footer"/><address class="footer"><small>Generated on Sat Nov 20 2010 13:35:44 for atkmm by&#160;
     77<hr class="footer"/><address class="footer"><small>Generated on Thu Dec 9 2010 16:12:54 for atkmm by&#160;
    7878<a href="http://www.doxygen.org/index.html">
    7979<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.7.2 </small></address>
    8080</body>
  • atkmm-2.22.1/doc/reference/html/functions_0x73.html

    diff -ur distfiles.macports.org/atkmm-2.22.1/doc/reference/html/functions_0x73.html ftp.cse.buffalo.edu/atkmm-2.22.1/doc/reference/html/functions_0x73.html
    old new  
    176176</li>
    177177</ul>
    178178</div>
    179 <hr class="footer"/><address class="footer"><small>Generated on Sat Nov 20 2010 13:35:44 for atkmm by&#160;
     179<hr class="footer"/><address class="footer"><small>Generated on Thu Dec 9 2010 16:12:54 for atkmm by&#160;
    180180<a href="http://www.doxygen.org/index.html">
    181181<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.7.2 </small></address>
    182182</body>
  • atkmm-2.22.1/doc/reference/html/functions_0x77.html

    diff -ur distfiles.macports.org/atkmm-2.22.1/doc/reference/html/functions_0x77.html ftp.cse.buffalo.edu/atkmm-2.22.1/doc/reference/html/functions_0x77.html
    old new  
    7373</li>
    7474</ul>
    7575</div>
    76 <hr class="footer"/><address class="footer"><small>Generated on Sat Nov 20 2010 13:35:44 for atkmm by&#160;
     76<hr class="footer"/><address class="footer"><small>Generated on Thu Dec 9 2010 16:12:54 for atkmm by&#160;
    7777<a href="http://www.doxygen.org/index.html">
    7878<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.7.2 </small></address>
    7979</body>
  • atkmm-2.22.1/doc/reference/html/functions_0x78.html

    diff -ur distfiles.macports.org/atkmm-2.22.1/doc/reference/html/functions_0x78.html ftp.cse.buffalo.edu/atkmm-2.22.1/doc/reference/html/functions_0x78.html
    old new  
    5858</li>
    5959</ul>
    6060</div>
    61 <hr class="footer"/><address class="footer"><small>Generated on Sat Nov 20 2010 13:35:44 for atkmm by&#160;
     61<hr class="footer"/><address class="footer"><small>Generated on Thu Dec 9 2010 16:12:54 for atkmm by&#160;
    6262<a href="http://www.doxygen.org/index.html">
    6363<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.7.2 </small></address>
    6464</body>
  • atkmm-2.22.1/doc/reference/html/functions_func.html

    diff -ur distfiles.macports.org/atkmm-2.22.1/doc/reference/html/functions_func.html ftp.cse.buffalo.edu/atkmm-2.22.1/doc/reference/html/functions_func.html
    old new  
    8383</li>
    8484</ul>
    8585</div>
    86 <hr class="footer"/><address class="footer"><small>Generated on Sat Nov 20 2010 13:35:44 for atkmm by&#160;
     86<hr class="footer"/><address class="footer"><small>Generated on Thu Dec 9 2010 16:12:54 for atkmm by&#160;
    8787<a href="http://www.doxygen.org/index.html">
    8888<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.7.2 </small></address>
    8989</body>
  • atkmm-2.22.1/doc/reference/html/functions_func_0x63.html

    diff -ur distfiles.macports.org/atkmm-2.22.1/doc/reference/html/functions_func_0x63.html ftp.cse.buffalo.edu/atkmm-2.22.1/doc/reference/html/functions_func_0x63.html
    old new  
    6767</li>
    6868</ul>
    6969</div>
    70 <hr class="footer"/><address class="footer"><small>Generated on Sat Nov 20 2010 13:35:44 for atkmm by&#160;
     70<hr class="footer"/><address class="footer"><small>Generated on Thu Dec 9 2010 16:12:54 for atkmm by&#160;
    7171<a href="http://www.doxygen.org/index.html">
    7272<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.7.2 </small></address>
    7373</body>
  • atkmm-2.22.1/doc/reference/html/functions_func_0x64.html

    diff -ur distfiles.macports.org/atkmm-2.22.1/doc/reference/html/functions_func_0x64.html ftp.cse.buffalo.edu/atkmm-2.22.1/doc/reference/html/functions_func_0x64.html
    old new  
    5858</li>
    5959</ul>
    6060</div>
    61 <hr class="footer"/><address class="footer"><small>Generated on Sat Nov 20 2010 13:35:44 for atkmm by&#160;
     61<hr class="footer"/><address class="footer"><small>Generated on Thu Dec 9 2010 16:12:54 for atkmm by&#160;
    6262<a href="http://www.doxygen.org/index.html">
    6363<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.7.2 </small></address>
    6464</body>
  • atkmm-2.22.1/doc/reference/html/functions_func_0x66.html

    diff -ur distfiles.macports.org/atkmm-2.22.1/doc/reference/html/functions_func_0x66.html ftp.cse.buffalo.edu/atkmm-2.22.1/doc/reference/html/functions_func_0x66.html
    old new  
    5858</li>
    5959</ul>
    6060</div>
    61 <hr class="footer"/><address class="footer"><small>Generated on Sat Nov 20 2010 13:35:44 for atkmm by&#160;
     61<hr class="footer"/><address class="footer"><small>Generated on Thu Dec 9 2010 16:12:54 for atkmm by&#160;
    6262<a href="http://www.doxygen.org/index.html">
    6363<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.7.2 </small></address>
    6464</body>
  • atkmm-2.22.1/doc/reference/html/functions_func_0x67.html

    diff -ur distfiles.macports.org/atkmm-2.22.1/doc/reference/html/functions_func_0x67.html ftp.cse.buffalo.edu/atkmm-2.22.1/doc/reference/html/functions_func_0x67.html
    old new  
    305305</li>
    306306</ul>
    307307</div>
    308 <hr class="footer"/><address class="footer"><small>Generated on Sat Nov 20 2010 13:35:44 for atkmm by&#160;
     308<hr class="footer"/><address class="footer"><small>Generated on Thu Dec 9 2010 16:12:54 for atkmm by&#160;
    309309<a href="http://www.doxygen.org/index.html">
    310310<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.7.2 </small></address>
    311311</body>
  • atkmm-2.22.1/doc/reference/html/functions_func_0x69.html

    diff -ur distfiles.macports.org/atkmm-2.22.1/doc/reference/html/functions_func_0x69.html ftp.cse.buffalo.edu/atkmm-2.22.1/doc/reference/html/functions_func_0x69.html
    old new  
    7676</li>
    7777</ul>
    7878</div>
    79 <hr class="footer"/><address class="footer"><small>Generated on Sat Nov 20 2010 13:35:44 for atkmm by&#160;
     79<hr class="footer"/><address class="footer"><small>Generated on Thu Dec 9 2010 16:12:54 for atkmm by&#160;
    8080<a href="http://www.doxygen.org/index.html">
    8181<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.7.2 </small></address>
    8282</body>
  • atkmm-2.22.1/doc/reference/html/functions_func_0x6e.html

    diff -ur distfiles.macports.org/atkmm-2.22.1/doc/reference/html/functions_func_0x6e.html ftp.cse.buffalo.edu/atkmm-2.22.1/doc/reference/html/functions_func_0x6e.html
    old new  
    5858</li>
    5959</ul>
    6060</div>
    61 <hr class="footer"/><address class="footer"><small>Generated on Sat Nov 20 2010 13:35:44 for atkmm by&#160;
     61<hr class="footer"/><address class="footer"><small>Generated on Thu Dec 9 2010 16:12:54 for atkmm by&#160;
    6262<a href="http://www.doxygen.org/index.html">
    6363<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.7.2 </small></address>
    6464</body>
  • atkmm-2.22.1/doc/reference/html/functions_func_0x6f.html

    diff -ur distfiles.macports.org/atkmm-2.22.1/doc/reference/html/functions_func_0x6f.html ftp.cse.buffalo.edu/atkmm-2.22.1/doc/reference/html/functions_func_0x6f.html
    old new  
    5858</li>
    5959</ul>
    6060</div>
    61 <hr class="footer"/><address class="footer"><small>Generated on Sat Nov 20 2010 13:35:44 for atkmm by&#160;
     61<hr class="footer"/><address class="footer"><small>Generated on Thu Dec 9 2010 16:12:54 for atkmm by&#160;
    6262<a href="http://www.doxygen.org/index.html">
    6363<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.7.2 </small></address>
    6464</body>
  • atkmm-2.22.1/doc/reference/html/functions_func_0x70.html

    diff -ur distfiles.macports.org/atkmm-2.22.1/doc/reference/html/functions_func_0x70.html ftp.cse.buffalo.edu/atkmm-2.22.1/doc/reference/html/functions_func_0x70.html
    old new  
    106106</li>
    107107</ul>
    108108</div>
    109 <hr class="footer"/><address class="footer"><small>Generated on Sat Nov 20 2010 13:35:44 for atkmm by&#160;
     109<hr class="footer"/><address class="footer"><small>Generated on Thu Dec 9 2010 16:12:54 for atkmm by&#160;
    110110<a href="http://www.doxygen.org/index.html">
    111111<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.7.2 </small></address>
    112112</body>
  • atkmm-2.22.1/doc/reference/html/functions_func_0x72.html

    diff -ur distfiles.macports.org/atkmm-2.22.1/doc/reference/html/functions_func_0x72.html ftp.cse.buffalo.edu/atkmm-2.22.1/doc/reference/html/functions_func_0x72.html
    old new  
    7474</li>
    7575</ul>
    7676</div>
    77 <hr class="footer"/><address class="footer"><small>Generated on Sat Nov 20 2010 13:35:44 for atkmm by&#160;
     77<hr class="footer"/><address class="footer"><small>Generated on Thu Dec 9 2010 16:12:54 for atkmm by&#160;
    7878<a href="http://www.doxygen.org/index.html">
    7979<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.7.2 </small></address>
    8080</body>
  • atkmm-2.22.1/doc/reference/html/functions_func_0x73.html

    diff -ur distfiles.macports.org/atkmm-2.22.1/doc/reference/html/functions_func_0x73.html ftp.cse.buffalo.edu/atkmm-2.22.1/doc/reference/html/functions_func_0x73.html
    old new  
    176176</li>
    177177</ul>
    178178</div>
    179 <hr class="footer"/><address class="footer"><small>Generated on Sat Nov 20 2010 13:35:44 for atkmm by&#160;
     179<hr class="footer"/><address class="footer"><small>Generated on Thu Dec 9 2010 16:12:54 for atkmm by&#160;
    180180<a href="http://www.doxygen.org/index.html">
    181181<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.7.2 </small></address>
    182182</body>
  • atkmm-2.22.1/doc/reference/html/functions_func_0x77.html

    diff -ur distfiles.macports.org/atkmm-2.22.1/doc/reference/html/functions_func_0x77.html ftp.cse.buffalo.edu/atkmm-2.22.1/doc/reference/html/functions_func_0x77.html
    old new  
    7373</li>
    7474</ul>
    7575</div>
    76 <hr class="footer"/><address class="footer"><small>Generated on Sat Nov 20 2010 13:35:44 for atkmm by&#160;
     76<hr class="footer"/><address class="footer"><small>Generated on Thu Dec 9 2010 16:12:54 for atkmm by&#160;
    7777<a href="http://www.doxygen.org/index.html">
    7878<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.7.2 </small></address>
    7979</body>
  • atkmm-2.22.1/doc/reference/html/functions_func_0x78.html

    diff -ur distfiles.macports.org/atkmm-2.22.1/doc/reference/html/functions_func_0x78.html ftp.cse.buffalo.edu/atkmm-2.22.1/doc/reference/html/functions_func_0x78.html
    old new  
    5858</li>
    5959</ul>
    6060</div>
    61 <hr class="footer"/><address class="footer"><small>Generated on Sat Nov 20 2010 13:35:44 for atkmm by&#160;
     61<hr class="footer"/><address class="footer"><small>Generated on Thu Dec 9 2010 16:12:54 for atkmm by&#160;
    6262<a href="http://www.doxygen.org/index.html">
    6363<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.7.2 </small></address>
    6464</body>
  • atkmm-2.22.1/doc/reference/html/graph_legend.html

    diff -ur distfiles.macports.org/atkmm-2.22.1/doc/reference/html/graph_legend.html ftp.cse.buffalo.edu/atkmm-2.22.1/doc/reference/html/graph_legend.html
    old new  
    8989A yellow dashed arrow denotes a relation between a template instance and the template class it was instantiated from. The arrow is labeled with the template parameters of the instance. </li>
    9090</ul>
    9191</div>
    92 <hr class="footer"/><address class="footer"><small>Generated on Sat Nov 20 2010 13:35:45 for atkmm by&#160;
     92<hr class="footer"/><address class="footer"><small>Generated on Thu Dec 9 2010 16:12:54 for atkmm by&#160;
    9393<a href="http://www.doxygen.org/index.html">
    9494<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.7.2 </small></address>
    9595</body>
  • atkmm-2.22.1/doc/reference/html/group__atkmmEnums.html

    diff -ur distfiles.macports.org/atkmm-2.22.1/doc/reference/html/group__atkmmEnums.html ftp.cse.buffalo.edu/atkmm-2.22.1/doc/reference/html/group__atkmmEnums.html
    old new  
    2727<table class="memberdecls">
    2828</table>
    2929</div>
    30 <hr class="footer"/><address class="footer"><small>Generated on Sat Nov 20 2010 13:35:44 for atkmm by&#160;
     30<hr class="footer"/><address class="footer"><small>Generated on Thu Dec 9 2010 16:12:54 for atkmm by&#160;
    3131<a href="http://www.doxygen.org/index.html">
    3232<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.7.2 </small></address>
    3333</body>
  • atkmm-2.22.1/doc/reference/html/hierarchy.html

    diff -ur distfiles.macports.org/atkmm-2.22.1/doc/reference/html/hierarchy.html ftp.cse.buffalo.edu/atkmm-2.22.1/doc/reference/html/hierarchy.html
    old new  
    8888</li>
    8989</ul>
    9090</div>
    91 <hr class="footer"/><address class="footer"><small>Generated on Sat Nov 20 2010 13:35:44 for atkmm by&#160;
     91<hr class="footer"/><address class="footer"><small>Generated on Thu Dec 9 2010 16:12:54 for atkmm by&#160;
    9292<a href="http://www.doxygen.org/index.html">
    9393<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.7.2 </small></address>
    9494</body>
  • atkmm-2.22.1/doc/reference/html/index.html

    diff -ur distfiles.macports.org/atkmm-2.22.1/doc/reference/html/index.html ftp.cse.buffalo.edu/atkmm-2.22.1/doc/reference/html/index.html
    old new  
    3939<div class="fragment"><pre class="fragment"> program_CPPFLAGS = $(ATKMM_CFLAGS)
    4040 program_LDADD = $(ATKMM_LIBS)
    4141</pre></div> </div>
    42 <hr class="footer"/><address class="footer"><small>Generated on Sat Nov 20 2010 13:35:44 for atkmm by&#160;
     42<hr class="footer"/><address class="footer"><small>Generated on Thu Dec 9 2010 16:12:54 for atkmm by&#160;
    4343<a href="http://www.doxygen.org/index.html">
    4444<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.7.2 </small></address>
    4545</body>
  • atkmm-2.22.1/doc/reference/html/inherits.html

    diff -ur distfiles.macports.org/atkmm-2.22.1/doc/reference/html/inherits.html ftp.cse.buffalo.edu/atkmm-2.22.1/doc/reference/html/inherits.html
    old new  
    4040</td></tr>
    4141</table>
    4242</div>
    43 <hr class="footer"/><address class="footer"><small>Generated on Sat Nov 20 2010 13:35:44 for atkmm by&#160;
     43<hr class="footer"/><address class="footer"><small>Generated on Thu Dec 9 2010 16:12:54 for atkmm by&#160;
    4444<a href="http://www.doxygen.org/index.html">
    4545<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.7.2 </small></address>
    4646</body>
  • atkmm-2.22.1/doc/reference/html/modules.html

    diff -ur distfiles.macports.org/atkmm-2.22.1/doc/reference/html/modules.html ftp.cse.buffalo.edu/atkmm-2.22.1/doc/reference/html/modules.html
    old new  
    2828<li><a class="el" href="group__atkmmEnums.html">atkmm Enums and Flags</a></li>
    2929</ul>
    3030</div>
    31 <hr class="footer"/><address class="footer"><small>Generated on Sat Nov 20 2010 13:35:44 for atkmm by&#160;
     31<hr class="footer"/><address class="footer"><small>Generated on Thu Dec 9 2010 16:12:54 for atkmm by&#160;
    3232<a href="http://www.doxygen.org/index.html">
    3333<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.7.2 </small></address>
    3434</body>
  • atkmm-2.22.1/doc/reference/html/namespaceAtk.html

    diff -ur distfiles.macports.org/atkmm-2.22.1/doc/reference/html/namespaceAtk.html ftp.cse.buffalo.edu/atkmm-2.22.1/doc/reference/html/namespaceAtk.html
    old new  
    9898</div>
    9999</div>
    100100</div>
    101 <hr class="footer"/><address class="footer"><small>Generated on Sat Nov 20 2010 13:35:45 for atkmm by&#160;
     101<hr class="footer"/><address class="footer"><small>Generated on Thu Dec 9 2010 16:12:54 for atkmm by&#160;
    102102<a href="http://www.doxygen.org/index.html">
    103103<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.7.2 </small></address>
    104104</body>
  • atkmm-2.22.1/doc/reference/html/namespacemembers.html

    diff -ur distfiles.macports.org/atkmm-2.22.1/doc/reference/html/namespacemembers.html ftp.cse.buffalo.edu/atkmm-2.22.1/doc/reference/html/namespacemembers.html
    old new  
    3838</li>
    3939</ul>
    4040</div>
    41 <hr class="footer"/><address class="footer"><small>Generated on Sat Nov 20 2010 13:35:45 for atkmm by&#160;
     41<hr class="footer"/><address class="footer"><small>Generated on Thu Dec 9 2010 16:12:54 for atkmm by&#160;
    4242<a href="http://www.doxygen.org/index.html">
    4343<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.7.2 </small></address>
    4444</body>
  • atkmm-2.22.1/doc/reference/html/namespacemembers_func.html

    diff -ur distfiles.macports.org/atkmm-2.22.1/doc/reference/html/namespacemembers_func.html ftp.cse.buffalo.edu/atkmm-2.22.1/doc/reference/html/namespacemembers_func.html
    old new  
    3838</li>
    3939</ul>
    4040</div>
    41 <hr class="footer"/><address class="footer"><small>Generated on Sat Nov 20 2010 13:35:45 for atkmm by&#160;
     41<hr class="footer"/><address class="footer"><small>Generated on Thu Dec 9 2010 16:12:54 for atkmm by&#160;
    4242<a href="http://www.doxygen.org/index.html">
    4343<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.7.2 </small></address>
    4444</body>
  • atkmm-2.22.1/doc/reference/html/namespaces.html

    diff -ur distfiles.macports.org/atkmm-2.22.1/doc/reference/html/namespaces.html ftp.cse.buffalo.edu/atkmm-2.22.1/doc/reference/html/namespaces.html
    old new  
    3434  <tr><td class="indexkey"><a class="el" href="namespaceAtk.html">Atk</a></td><td class="indexvalue">The ATK interface which provides standard mechanism for manipulating hyperlinks </td></tr>
    3535</table>
    3636</div>
    37 <hr class="footer"/><address class="footer"><small>Generated on Sat Nov 20 2010 13:35:44 for atkmm by&#160;
     37<hr class="footer"/><address class="footer"><small>Generated on Thu Dec 9 2010 16:12:54 for atkmm by&#160;
    3838<a href="http://www.doxygen.org/index.html">
    3939<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.7.2 </small></address>
    4040</body>
  • atkmm-2.22.1/doc/reference/html/pages.html

    diff -ur distfiles.macports.org/atkmm-2.22.1/doc/reference/html/pages.html ftp.cse.buffalo.edu/atkmm-2.22.1/doc/reference/html/pages.html
    old new  
    3131</li>
    3232</ul>
    3333</div>
    34 <hr class="footer"/><address class="footer"><small>Generated on Sat Nov 20 2010 13:35:44 for atkmm by&#160;
     34<hr class="footer"/><address class="footer"><small>Generated on Thu Dec 9 2010 16:12:54 for atkmm by&#160;
    3535<a href="http://www.doxygen.org/index.html">
    3636<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.7.2 </small></address>
    3737</body>
  • atkmm-2.22.1/doc/reference/html/since_1_3.html

    diff -ur distfiles.macports.org/atkmm-2.22.1/doc/reference/html/since_1_3.html ftp.cse.buffalo.edu/atkmm-2.22.1/doc/reference/html/since_1_3.html
    old new  
    3535<dd></dd>
    3636</dl>
    3737</div>
    38 <hr class="footer"/><address class="footer"><small>Generated on Sat Nov 20 2010 13:35:44 for atkmm by&#160;
     38<hr class="footer"/><address class="footer"><small>Generated on Thu Dec 9 2010 16:12:54 for atkmm by&#160;
    3939<a href="http://www.doxygen.org/index.html">
    4040<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.7.2 </small></address>
    4141</body>
  • atkmm-2.22.1/doc/reference/html/since_1_9.html

    diff -ur distfiles.macports.org/atkmm-2.22.1/doc/reference/html/since_1_9.html ftp.cse.buffalo.edu/atkmm-2.22.1/doc/reference/html/since_1_9.html
    old new  
    3535<dd></dd>
    3636</dl>
    3737</div>
    38 <hr class="footer"/><address class="footer"><small>Generated on Sat Nov 20 2010 13:35:44 for atkmm by&#160;
     38<hr class="footer"/><address class="footer"><small>Generated on Thu Dec 9 2010 16:12:54 for atkmm by&#160;
    3939<a href="http://www.doxygen.org/index.html">
    4040<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.7.2 </small></address>
    4141</body>