diff -Nru atkmm1.6-2.24.2/aclocal.m4 atkmm1.6-2.28.0/aclocal.m4 --- atkmm1.6-2.24.2/aclocal.m4 2015-11-29 20:04:49.507660332 +0000 +++ atkmm1.6-2.28.0/aclocal.m4 2018-11-04 11:44:47.615516899 +0000 @@ -1,6 +1,6 @@ -# generated automatically by aclocal 1.15 -*- Autoconf -*- +# generated automatically by aclocal 1.16.1 -*- Autoconf -*- -# Copyright (C) 1996-2014 Free Software Foundation, Inc. +# Copyright (C) 1996-2018 Free Software Foundation, Inc. # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -20,32 +20,63 @@ If you have problems, you may need to regenerate the build system entirely. To do so, use the procedure documented by the package, typically 'autoreconf'.])]) -# pkg.m4 - Macros to locate and utilise pkg-config. -*- Autoconf -*- -# serial 1 (pkg-config-0.24) -# -# Copyright © 2004 Scott James Remnant . -# -# This program is free software; you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation; either version 2 of the License, or -# (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, but -# WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with this program; if not, write to the Free Software -# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. -# -# As a special exception to the GNU General Public License, if you -# distribute this file as part of a program that contains a -# configuration script generated by Autoconf, you may include it under -# the same distribution terms that you use for the rest of that program. +# pkg.m4 - Macros to locate and utilise pkg-config. -*- Autoconf -*- +# serial 11 (pkg-config-0.29.1) -# PKG_PROG_PKG_CONFIG([MIN-VERSION]) -# ---------------------------------- +dnl Copyright © 2004 Scott James Remnant . +dnl Copyright © 2012-2015 Dan Nicholson +dnl +dnl This program is free software; you can redistribute it and/or modify +dnl it under the terms of the GNU General Public License as published by +dnl the Free Software Foundation; either version 2 of the License, or +dnl (at your option) any later version. +dnl +dnl This program is distributed in the hope that it will be useful, but +dnl WITHOUT ANY WARRANTY; without even the implied warranty of +dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +dnl General Public License for more details. +dnl +dnl You should have received a copy of the GNU General Public License +dnl along with this program; if not, write to the Free Software +dnl Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA +dnl 02111-1307, USA. +dnl +dnl As a special exception to the GNU General Public License, if you +dnl distribute this file as part of a program that contains a +dnl configuration script generated by Autoconf, you may include it under +dnl the same distribution terms that you use for the rest of that +dnl program. + +dnl PKG_PREREQ(MIN-VERSION) +dnl ----------------------- +dnl Since: 0.29 +dnl +dnl Verify that the version of the pkg-config macros are at least +dnl MIN-VERSION. Unlike PKG_PROG_PKG_CONFIG, which checks the user's +dnl installed version of pkg-config, this checks the developer's version +dnl of pkg.m4 when generating configure. +dnl +dnl To ensure that this macro is defined, also add: +dnl m4_ifndef([PKG_PREREQ], +dnl [m4_fatal([must install pkg-config 0.29 or later before running autoconf/autogen])]) +dnl +dnl See the "Since" comment for each macro you use to see what version +dnl of the macros you require. +m4_defun([PKG_PREREQ], +[m4_define([PKG_MACROS_VERSION], [0.29.1]) +m4_if(m4_version_compare(PKG_MACROS_VERSION, [$1]), -1, + [m4_fatal([pkg.m4 version $1 or higher is required but ]PKG_MACROS_VERSION[ found])]) +])dnl PKG_PREREQ + +dnl PKG_PROG_PKG_CONFIG([MIN-VERSION]) +dnl ---------------------------------- +dnl Since: 0.16 +dnl +dnl Search for the pkg-config tool and set the PKG_CONFIG variable to +dnl first found in the path. Checks that the version of pkg-config found +dnl is at least MIN-VERSION. If MIN-VERSION is not specified, 0.9.0 is +dnl used since that's the first version where most current features of +dnl pkg-config existed. AC_DEFUN([PKG_PROG_PKG_CONFIG], [m4_pattern_forbid([^_?PKG_[A-Z_]+$]) m4_pattern_allow([^PKG_CONFIG(_(PATH|LIBDIR|SYSROOT_DIR|ALLOW_SYSTEM_(CFLAGS|LIBS)))?$]) @@ -67,18 +98,19 @@ PKG_CONFIG="" fi fi[]dnl -])# PKG_PROG_PKG_CONFIG +])dnl PKG_PROG_PKG_CONFIG -# PKG_CHECK_EXISTS(MODULES, [ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND]) -# -# Check to see whether a particular set of modules exists. Similar -# to PKG_CHECK_MODULES(), but does not set variables or print errors. -# -# Please remember that m4 expands AC_REQUIRE([PKG_PROG_PKG_CONFIG]) -# only at the first occurence in configure.ac, so if the first place -# it's called might be skipped (such as if it is within an "if", you -# have to call PKG_CHECK_EXISTS manually -# -------------------------------------------------------------- +dnl PKG_CHECK_EXISTS(MODULES, [ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND]) +dnl ------------------------------------------------------------------- +dnl Since: 0.18 +dnl +dnl Check to see whether a particular set of modules exists. Similar to +dnl PKG_CHECK_MODULES(), but does not set variables or print errors. +dnl +dnl Please remember that m4 expands AC_REQUIRE([PKG_PROG_PKG_CONFIG]) +dnl only at the first occurence in configure.ac, so if the first place +dnl it's called might be skipped (such as if it is within an "if", you +dnl have to call PKG_CHECK_EXISTS manually AC_DEFUN([PKG_CHECK_EXISTS], [AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl if test -n "$PKG_CONFIG" && \ @@ -88,8 +120,10 @@ $3])dnl fi]) -# _PKG_CONFIG([VARIABLE], [COMMAND], [MODULES]) -# --------------------------------------------- +dnl _PKG_CONFIG([VARIABLE], [COMMAND], [MODULES]) +dnl --------------------------------------------- +dnl Internal wrapper calling pkg-config via PKG_CONFIG and setting +dnl pkg_failed based on the result. m4_define([_PKG_CONFIG], [if test -n "$$1"; then pkg_cv_[]$1="$$1" @@ -101,10 +135,11 @@ else pkg_failed=untried fi[]dnl -])# _PKG_CONFIG +])dnl _PKG_CONFIG -# _PKG_SHORT_ERRORS_SUPPORTED -# ----------------------------- +dnl _PKG_SHORT_ERRORS_SUPPORTED +dnl --------------------------- +dnl Internal check to see if pkg-config supports short errors. AC_DEFUN([_PKG_SHORT_ERRORS_SUPPORTED], [AC_REQUIRE([PKG_PROG_PKG_CONFIG]) if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then @@ -112,19 +147,17 @@ else _pkg_short_errors_supported=no fi[]dnl -])# _PKG_SHORT_ERRORS_SUPPORTED +])dnl _PKG_SHORT_ERRORS_SUPPORTED -# PKG_CHECK_MODULES(VARIABLE-PREFIX, MODULES, [ACTION-IF-FOUND], -# [ACTION-IF-NOT-FOUND]) -# -# -# Note that if there is a possibility the first call to -# PKG_CHECK_MODULES might not happen, you should be sure to include an -# explicit call to PKG_PROG_PKG_CONFIG in your configure.ac -# -# -# -------------------------------------------------------------- +dnl PKG_CHECK_MODULES(VARIABLE-PREFIX, MODULES, [ACTION-IF-FOUND], +dnl [ACTION-IF-NOT-FOUND]) +dnl -------------------------------------------------------------- +dnl Since: 0.4.0 +dnl +dnl Note that if there is a possibility the first call to +dnl PKG_CHECK_MODULES might not happen, you should be sure to include an +dnl explicit call to PKG_PROG_PKG_CONFIG in your configure.ac AC_DEFUN([PKG_CHECK_MODULES], [AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl AC_ARG_VAR([$1][_CFLAGS], [C compiler flags for $1, overriding pkg-config])dnl @@ -178,16 +211,40 @@ AC_MSG_RESULT([yes]) $3 fi[]dnl -])# PKG_CHECK_MODULES +])dnl PKG_CHECK_MODULES -# PKG_INSTALLDIR(DIRECTORY) -# ------------------------- -# Substitutes the variable pkgconfigdir as the location where a module -# should install pkg-config .pc files. By default the directory is -# $libdir/pkgconfig, but the default can be changed by passing -# DIRECTORY. The user can override through the --with-pkgconfigdir -# parameter. +dnl PKG_CHECK_MODULES_STATIC(VARIABLE-PREFIX, MODULES, [ACTION-IF-FOUND], +dnl [ACTION-IF-NOT-FOUND]) +dnl --------------------------------------------------------------------- +dnl Since: 0.29 +dnl +dnl Checks for existence of MODULES and gathers its build flags with +dnl static libraries enabled. Sets VARIABLE-PREFIX_CFLAGS from --cflags +dnl and VARIABLE-PREFIX_LIBS from --libs. +dnl +dnl Note that if there is a possibility the first call to +dnl PKG_CHECK_MODULES_STATIC might not happen, you should be sure to +dnl include an explicit call to PKG_PROG_PKG_CONFIG in your +dnl configure.ac. +AC_DEFUN([PKG_CHECK_MODULES_STATIC], +[AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl +_save_PKG_CONFIG=$PKG_CONFIG +PKG_CONFIG="$PKG_CONFIG --static" +PKG_CHECK_MODULES($@) +PKG_CONFIG=$_save_PKG_CONFIG[]dnl +])dnl PKG_CHECK_MODULES_STATIC + + +dnl PKG_INSTALLDIR([DIRECTORY]) +dnl ------------------------- +dnl Since: 0.27 +dnl +dnl Substitutes the variable pkgconfigdir as the location where a module +dnl should install pkg-config .pc files. By default the directory is +dnl $libdir/pkgconfig, but the default can be changed by passing +dnl DIRECTORY. The user can override through the --with-pkgconfigdir +dnl parameter. AC_DEFUN([PKG_INSTALLDIR], [m4_pushdef([pkg_default], [m4_default([$1], ['${libdir}/pkgconfig'])]) m4_pushdef([pkg_description], @@ -198,16 +255,18 @@ AC_SUBST([pkgconfigdir], [$with_pkgconfigdir]) m4_popdef([pkg_default]) m4_popdef([pkg_description]) -]) dnl PKG_INSTALLDIR +])dnl PKG_INSTALLDIR -# PKG_NOARCH_INSTALLDIR(DIRECTORY) -# ------------------------- -# Substitutes the variable noarch_pkgconfigdir as the location where a -# module should install arch-independent pkg-config .pc files. By -# default the directory is $datadir/pkgconfig, but the default can be -# changed by passing DIRECTORY. The user can override through the -# --with-noarch-pkgconfigdir parameter. +dnl PKG_NOARCH_INSTALLDIR([DIRECTORY]) +dnl -------------------------------- +dnl Since: 0.27 +dnl +dnl Substitutes the variable noarch_pkgconfigdir as the location where a +dnl module should install arch-independent pkg-config .pc files. By +dnl default the directory is $datadir/pkgconfig, but the default can be +dnl changed by passing DIRECTORY. The user can override through the +dnl --with-noarch-pkgconfigdir parameter. AC_DEFUN([PKG_NOARCH_INSTALLDIR], [m4_pushdef([pkg_default], [m4_default([$1], ['${datadir}/pkgconfig'])]) m4_pushdef([pkg_description], @@ -218,13 +277,15 @@ AC_SUBST([noarch_pkgconfigdir], [$with_noarch_pkgconfigdir]) m4_popdef([pkg_default]) m4_popdef([pkg_description]) -]) dnl PKG_NOARCH_INSTALLDIR +])dnl PKG_NOARCH_INSTALLDIR -# PKG_CHECK_VAR(VARIABLE, MODULE, CONFIG-VARIABLE, -# [ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND]) -# ------------------------------------------- -# Retrieves the value of the pkg-config variable for the given module. +dnl PKG_CHECK_VAR(VARIABLE, MODULE, CONFIG-VARIABLE, +dnl [ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND]) +dnl ------------------------------------------- +dnl Since: 0.28 +dnl +dnl Retrieves the value of the pkg-config variable for the given module. AC_DEFUN([PKG_CHECK_VAR], [AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl AC_ARG_VAR([$1], [value of $3 for $2, overriding pkg-config])dnl @@ -233,31 +294,102 @@ AS_VAR_COPY([$1], [pkg_cv_][$1]) AS_VAR_IF([$1], [""], [$5], [$4])dnl -])# PKG_CHECK_VAR +])dnl PKG_CHECK_VAR -# ============================================================================ -# http://www.gnu.org/software/autoconf-archive/ax_cxx_compile_stdcxx_11.html -# ============================================================================ +dnl PKG_WITH_MODULES(VARIABLE-PREFIX, MODULES, +dnl [ACTION-IF-FOUND],[ACTION-IF-NOT-FOUND], +dnl [DESCRIPTION], [DEFAULT]) +dnl ------------------------------------------ +dnl +dnl Prepare a "--with-" configure option using the lowercase +dnl [VARIABLE-PREFIX] name, merging the behaviour of AC_ARG_WITH and +dnl PKG_CHECK_MODULES in a single macro. +AC_DEFUN([PKG_WITH_MODULES], +[ +m4_pushdef([with_arg], m4_tolower([$1])) + +m4_pushdef([description], + [m4_default([$5], [build with ]with_arg[ support])]) + +m4_pushdef([def_arg], [m4_default([$6], [auto])]) +m4_pushdef([def_action_if_found], [AS_TR_SH([with_]with_arg)=yes]) +m4_pushdef([def_action_if_not_found], [AS_TR_SH([with_]with_arg)=no]) + +m4_case(def_arg, + [yes],[m4_pushdef([with_without], [--without-]with_arg)], + [m4_pushdef([with_without],[--with-]with_arg)]) + +AC_ARG_WITH(with_arg, + AS_HELP_STRING(with_without, description[ @<:@default=]def_arg[@:>@]),, + [AS_TR_SH([with_]with_arg)=def_arg]) + +AS_CASE([$AS_TR_SH([with_]with_arg)], + [yes],[PKG_CHECK_MODULES([$1],[$2],$3,$4)], + [auto],[PKG_CHECK_MODULES([$1],[$2], + [m4_n([def_action_if_found]) $3], + [m4_n([def_action_if_not_found]) $4])]) + +m4_popdef([with_arg]) +m4_popdef([description]) +m4_popdef([def_arg]) + +])dnl PKG_WITH_MODULES + +dnl PKG_HAVE_WITH_MODULES(VARIABLE-PREFIX, MODULES, +dnl [DESCRIPTION], [DEFAULT]) +dnl ----------------------------------------------- +dnl +dnl Convenience macro to trigger AM_CONDITIONAL after PKG_WITH_MODULES +dnl check._[VARIABLE-PREFIX] is exported as make variable. +AC_DEFUN([PKG_HAVE_WITH_MODULES], +[ +PKG_WITH_MODULES([$1],[$2],,,[$3],[$4]) + +AM_CONDITIONAL([HAVE_][$1], + [test "$AS_TR_SH([with_]m4_tolower([$1]))" = "yes"]) +])dnl PKG_HAVE_WITH_MODULES + +dnl PKG_HAVE_DEFINE_WITH_MODULES(VARIABLE-PREFIX, MODULES, +dnl [DESCRIPTION], [DEFAULT]) +dnl ------------------------------------------------------ +dnl +dnl Convenience macro to run AM_CONDITIONAL and AC_DEFINE after +dnl PKG_WITH_MODULES check. HAVE_[VARIABLE-PREFIX] is exported as make +dnl and preprocessor variable. +AC_DEFUN([PKG_HAVE_DEFINE_WITH_MODULES], +[ +PKG_HAVE_WITH_MODULES([$1],[$2],[$3],[$4]) + +AS_IF([test "$AS_TR_SH([with_]m4_tolower([$1]))" = "yes"], + [AC_DEFINE([HAVE_][$1], 1, [Enable ]m4_tolower([$1])[ support])]) +])dnl PKG_HAVE_DEFINE_WITH_MODULES + +# =========================================================================== +# https://www.gnu.org/software/autoconf-archive/MM_AX_CXX_COMPILE_STDCXX.html +# =========================================================================== # # SYNOPSIS # -# MM_AX_CXX_COMPILE_STDCXX_11([ext|noext],[mandatory|optional]) +# MM_AX_CXX_COMPILE_STDCXX(VERSION, [ext|noext], [mandatory|optional]) # # DESCRIPTION # -# Check for baseline language coverage in the compiler for the C++11 -# standard; if necessary, add switches to CXXFLAGS to enable support. +# Check for baseline language coverage in the compiler for the specified +# version of the C++ standard. If necessary, add switches to CXX and +# CXXCPP to enable support. VERSION may be '11' (for the C++11 standard) +# or '14' (for the C++14 standard). # -# The first argument, if specified, indicates whether you insist on an +# The second argument, if specified, indicates whether you insist on an # extended mode (e.g. -std=gnu++11) or a strict conformance mode (e.g. # -std=c++11). If neither is specified, you get whatever works, with # preference for an extended mode. # -# The second argument, if specified 'mandatory' or if left unspecified, -# indicates that baseline C++11 support is required and that the macro -# should error out if no mode with that support is found. If specified -# 'optional', then configuration proceeds regardless, after defining -# HAVE_CXX11 if and only if a supporting mode is found. +# The third argument, if specified 'mandatory' or if left unspecified, +# indicates that baseline support for the specified C++ standard is +# required and that the macro should error out if no mode with that +# support is found. If specified 'optional', then configuration proceeds +# regardless, after defining HAVE_CXX${VERSION} if and only if a +# supporting mode is found. # # LICENSE # @@ -265,148 +397,957 @@ # Copyright (c) 2012 Zack Weinberg # Copyright (c) 2013 Roy Stogner # Copyright (c) 2014, 2015 Google Inc.; contributed by Alexey Sokolov +# Copyright (c) 2015 Paul Norman +# Copyright (c) 2015 Moritz Klammler +# Copyright (c) 2016 Krzesimir Nowak # # Copying and distribution of this file, with or without modification, are # permitted in any medium without royalty provided the copyright notice -# and this notice are preserved. This file is offered as-is, without any +# and this notice are preserved. This file is offered as-is, without any # warranty. -# Copied from ax_cxx_compile_stdcxx_11.m4 and added MM_ prefix to avoid -# possible conflict with AX_CXX_COMPILE_STDCXX_11 in other modules. - -#serial 11 - -m4_define([_MM_AX_CXX_COMPILE_STDCXX_11_testbody], [[ - template - struct check - { - static_assert(sizeof(int) <= sizeof(T), "not big enough"); - }; - - struct Base { - virtual void f() {} - }; - struct Child : public Base { - virtual void f() override {} - }; - - typedef check> right_angle_brackets; - - int a; - decltype(a) b; - - typedef check check_type; - check_type c; - check_type&& cr = static_cast(c); - - auto d = a; - auto l = [](){}; - // Prevent Clang error: unused variable 'l' [-Werror,-Wunused-variable] - struct use_l { use_l() { l(); } }; +#serial 8 - // http://stackoverflow.com/questions/13728184/template-aliases-and-sfinae - // Clang 3.1 fails with headers of libstd++ 4.8.3 when using std::function because of this - namespace test_template_alias_sfinae { - struct foo {}; +# Copied from ax_cxx_compile_stdcxx.m4 and added MM_ prefix to avoid +# possible conflict with AX_CXX_COMPILE_STDCXX in other modules. - template - using member = typename T::member_type; +dnl This macro is based on the code from the MM_AX_CXX_COMPILE_STDCXX_11 macro +dnl (serial version number 13). - template - void func(...) {} - - template - void func(member*) {} - - void test(); - - void test() { - func(0); - } - } -]]) - -AC_DEFUN([MM_AX_CXX_COMPILE_STDCXX_11], [dnl - m4_if([$1], [], [], - [$1], [ext], [], - [$1], [noext], [], - [m4_fatal([invalid argument `$1' to MM_AX_CXX_COMPILE_STDCXX_11])])dnl - m4_if([$2], [], [ax_cxx_compile_cxx11_required=true], - [$2], [mandatory], [ax_cxx_compile_cxx11_required=true], - [$2], [optional], [ax_cxx_compile_cxx11_required=false], - [m4_fatal([invalid second argument `$2' to MM_AX_CXX_COMPILE_STDCXX_11])]) +AC_DEFUN([MM_AX_CXX_COMPILE_STDCXX], [dnl + m4_if([$1], [11], [ax_cxx_compile_alternatives="11 0x"], + [$1], [14], [ax_cxx_compile_alternatives="14 1y"], + [$1], [17], [ax_cxx_compile_alternatives="17 1z"], + [m4_fatal([invalid first argument `$1' to MM_AX_CXX_COMPILE_STDCXX])])dnl + m4_if([$2], [], [], + [$2], [ext], [], + [$2], [noext], [], + [m4_fatal([invalid second argument `$2' to MM_AX_CXX_COMPILE_STDCXX])])dnl + m4_if([$3], [], [ax_cxx_compile_cxx$1_required=true], + [$3], [mandatory], [ax_cxx_compile_cxx$1_required=true], + [$3], [optional], [ax_cxx_compile_cxx$1_required=false], + [m4_fatal([invalid third argument `$3' to MM_AX_CXX_COMPILE_STDCXX])]) AC_LANG_PUSH([C++])dnl ac_success=no - AC_CACHE_CHECK(whether $CXX supports C++11 features by default, - ax_cv_cxx_compile_cxx11, - [AC_COMPILE_IFELSE([AC_LANG_SOURCE([_MM_AX_CXX_COMPILE_STDCXX_11_testbody])], - [ax_cv_cxx_compile_cxx11=yes], - [ax_cv_cxx_compile_cxx11=no])]) - if test x$ax_cv_cxx_compile_cxx11 = xyes; then + AC_CACHE_CHECK(whether $CXX supports C++$1 features by default, + ax_cv_cxx_compile_cxx$1, + [AC_COMPILE_IFELSE([AC_LANG_SOURCE([_MM_AX_CXX_COMPILE_STDCXX_testbody_$1])], + [ax_cv_cxx_compile_cxx$1=yes], + [ax_cv_cxx_compile_cxx$1=no])]) + if test x$ax_cv_cxx_compile_cxx$1 = xyes; then ac_success=yes fi - m4_if([$1], [noext], [], [dnl + m4_if([$2], [noext], [], [dnl if test x$ac_success = xno; then - for switch in -std=gnu++11 -std=gnu++0x; do - cachevar=AS_TR_SH([ax_cv_cxx_compile_cxx11_$switch]) - AC_CACHE_CHECK(whether $CXX supports C++11 features with $switch, + for alternative in ${ax_cxx_compile_alternatives}; do + switch="-std=gnu++${alternative}" + cachevar=AS_TR_SH([ax_cv_cxx_compile_cxx$1_$switch]) + AC_CACHE_CHECK(whether $CXX supports C++$1 features with $switch, $cachevar, - [ac_save_CXXFLAGS="$CXXFLAGS" - CXXFLAGS="$CXXFLAGS $switch" - AC_COMPILE_IFELSE([AC_LANG_SOURCE([_MM_AX_CXX_COMPILE_STDCXX_11_testbody])], + [ac_save_CXX="$CXX" + CXX="$CXX $switch" + AC_COMPILE_IFELSE([AC_LANG_SOURCE([_MM_AX_CXX_COMPILE_STDCXX_testbody_$1])], [eval $cachevar=yes], [eval $cachevar=no]) - CXXFLAGS="$ac_save_CXXFLAGS"]) + CXX="$ac_save_CXX"]) if eval test x\$$cachevar = xyes; then - CXXFLAGS="$CXXFLAGS $switch" + CXX="$CXX $switch" + if test -n "$CXXCPP" ; then + CXXCPP="$CXXCPP $switch" + fi ac_success=yes break fi done fi]) - m4_if([$1], [ext], [], [dnl + m4_if([$2], [ext], [], [dnl if test x$ac_success = xno; then dnl HP's aCC needs +std=c++11 according to: dnl http://h21007.www2.hp.com/portal/download/files/unprot/aCxx/PDF_Release_Notes/769149-001.pdf - for switch in -std=c++11 -std=c++0x +std=c++11; do - cachevar=AS_TR_SH([ax_cv_cxx_compile_cxx11_$switch]) - AC_CACHE_CHECK(whether $CXX supports C++11 features with $switch, - $cachevar, - [ac_save_CXXFLAGS="$CXXFLAGS" - CXXFLAGS="$CXXFLAGS $switch" - AC_COMPILE_IFELSE([AC_LANG_SOURCE([_MM_AX_CXX_COMPILE_STDCXX_11_testbody])], - [eval $cachevar=yes], - [eval $cachevar=no]) - CXXFLAGS="$ac_save_CXXFLAGS"]) - if eval test x\$$cachevar = xyes; then - CXXFLAGS="$CXXFLAGS $switch" - ac_success=yes + dnl Cray's crayCC needs "-h std=c++11" + for alternative in ${ax_cxx_compile_alternatives}; do + for switch in -std=c++${alternative} +std=c++${alternative} "-h std=c++${alternative}"; do + cachevar=AS_TR_SH([ax_cv_cxx_compile_cxx$1_$switch]) + AC_CACHE_CHECK(whether $CXX supports C++$1 features with $switch, + $cachevar, + [ac_save_CXX="$CXX" + CXX="$CXX $switch" + AC_COMPILE_IFELSE([AC_LANG_SOURCE([_MM_AX_CXX_COMPILE_STDCXX_testbody_$1])], + [eval $cachevar=yes], + [eval $cachevar=no]) + CXX="$ac_save_CXX"]) + if eval test x\$$cachevar = xyes; then + CXX="$CXX $switch" + if test -n "$CXXCPP" ; then + CXXCPP="$CXXCPP $switch" + fi + ac_success=yes + break + fi + done + if test x$ac_success = xyes; then break fi done fi]) AC_LANG_POP([C++]) - if test x$ax_cxx_compile_cxx11_required = xtrue; then + if test x$ax_cxx_compile_cxx$1_required = xtrue; then if test x$ac_success = xno; then - AC_MSG_ERROR([*** A compiler with support for C++11 language features is required.]) + AC_MSG_ERROR([*** A compiler with support for C++$1 language features is required.]) fi + fi + if test x$ac_success = xno; then + HAVE_CXX$1=0 + AC_MSG_NOTICE([No compiler with C++$1 support was found]) else - if test x$ac_success = xno; then - HAVE_CXX11=0 - AC_MSG_NOTICE([No compiler with C++11 support was found]) - else - HAVE_CXX11=1 - AC_DEFINE(HAVE_CXX11,1, - [define if the compiler supports basic C++11 syntax]) - fi - - AC_SUBST(HAVE_CXX11) + HAVE_CXX$1=1 + AC_DEFINE(HAVE_CXX$1,1, + [define if the compiler supports basic C++$1 syntax]) fi + AC_SUBST(HAVE_CXX$1) ]) +dnl Test body for checking C++11 support + +m4_define([_MM_AX_CXX_COMPILE_STDCXX_testbody_11], + _MM_AX_CXX_COMPILE_STDCXX_testbody_new_in_11 +) + + +dnl Test body for checking C++14 support + +m4_define([_MM_AX_CXX_COMPILE_STDCXX_testbody_14], + _MM_AX_CXX_COMPILE_STDCXX_testbody_new_in_11 + _MM_AX_CXX_COMPILE_STDCXX_testbody_new_in_14 +) + +m4_define([_MM_AX_CXX_COMPILE_STDCXX_testbody_17], + _MM_AX_CXX_COMPILE_STDCXX_testbody_new_in_11 + _MM_AX_CXX_COMPILE_STDCXX_testbody_new_in_14 + _MM_AX_CXX_COMPILE_STDCXX_testbody_new_in_17 +) + +dnl Tests for new features in C++11 + +m4_define([_MM_AX_CXX_COMPILE_STDCXX_testbody_new_in_11], [[ + +// If the compiler admits that it is not ready for C++11, why torture it? +// Hopefully, this will speed up the test. + +#ifndef __cplusplus + +#error "This is not a C++ compiler" + +#elif __cplusplus < 201103L + +#error "This is not a C++11 compiler" + +#else + +namespace cxx11 +{ + + namespace test_static_assert + { + + template + struct check + { + static_assert(sizeof(int) <= sizeof(T), "not big enough"); + }; + + } + + namespace test_final_override + { + + struct Base + { + virtual void f() {} + }; + + struct Derived : public Base + { + virtual void f() override {} + }; + + } + + namespace test_double_right_angle_brackets + { + + template < typename T > + struct check {}; + + typedef check single_type; + typedef check> double_type; + typedef check>> triple_type; + typedef check>>> quadruple_type; + + } + + namespace test_decltype + { + + int + f() + { + int a = 1; + decltype(a) b = 2; + return a + b; + } + + } + + namespace test_type_deduction + { + + template < typename T1, typename T2 > + struct is_same + { + static const bool value = false; + }; + + template < typename T > + struct is_same + { + static const bool value = true; + }; + + template < typename T1, typename T2 > + auto + add(T1 a1, T2 a2) -> decltype(a1 + a2) + { + return a1 + a2; + } + + int + test(const int c, volatile int v) + { + static_assert(is_same::value == true, ""); + static_assert(is_same::value == false, ""); + static_assert(is_same::value == false, ""); + auto ac = c; + auto av = v; + auto sumi = ac + av + 'x'; + auto sumf = ac + av + 1.0; + static_assert(is_same::value == true, ""); + static_assert(is_same::value == true, ""); + static_assert(is_same::value == true, ""); + static_assert(is_same::value == false, ""); + static_assert(is_same::value == true, ""); + return (sumf > 0.0) ? sumi : add(c, v); + } + + } + + namespace test_noexcept + { + + int f() { return 0; } + int g() noexcept { return 0; } + + static_assert(noexcept(f()) == false, ""); + static_assert(noexcept(g()) == true, ""); + + } + + namespace test_constexpr + { + + template < typename CharT > + unsigned long constexpr + strlen_c_r(const CharT *const s, const unsigned long acc) noexcept + { + return *s ? strlen_c_r(s + 1, acc + 1) : acc; + } + + template < typename CharT > + unsigned long constexpr + strlen_c(const CharT *const s) noexcept + { + return strlen_c_r(s, 0UL); + } + + static_assert(strlen_c("") == 0UL, ""); + static_assert(strlen_c("1") == 1UL, ""); + static_assert(strlen_c("example") == 7UL, ""); + static_assert(strlen_c("another\0example") == 7UL, ""); + + } + + namespace test_rvalue_references + { + + template < int N > + struct answer + { + static constexpr int value = N; + }; + + answer<1> f(int&) { return answer<1>(); } + answer<2> f(const int&) { return answer<2>(); } + answer<3> f(int&&) { return answer<3>(); } + + void + test() + { + int i = 0; + const int c = 0; + static_assert(decltype(f(i))::value == 1, ""); + static_assert(decltype(f(c))::value == 2, ""); + static_assert(decltype(f(0))::value == 3, ""); + } + + } + + namespace test_uniform_initialization + { + + struct test + { + static const int zero {}; + static const int one {1}; + }; + + static_assert(test::zero == 0, ""); + static_assert(test::one == 1, ""); + + } + + namespace test_lambdas + { + + void + test1() + { + auto lambda1 = [](){}; + auto lambda2 = lambda1; + lambda1(); + lambda2(); + } + + int + test2() + { + auto a = [](int i, int j){ return i + j; }(1, 2); + auto b = []() -> int { return '0'; }(); + auto c = [=](){ return a + b; }(); + auto d = [&](){ return c; }(); + auto e = [a, &b](int x) mutable { + const auto identity = [](int y){ return y; }; + for (auto i = 0; i < a; ++i) + a += b--; + return x + identity(a + b); + }(0); + return a + b + c + d + e; + } + + int + test3() + { + const auto nullary = [](){ return 0; }; + const auto unary = [](int x){ return x; }; + using nullary_t = decltype(nullary); + using unary_t = decltype(unary); + const auto higher1st = [](nullary_t f){ return f(); }; + const auto higher2nd = [unary](nullary_t f1){ + return [unary, f1](unary_t f2){ return f2(unary(f1())); }; + }; + return higher1st(nullary) + higher2nd(nullary)(unary); + } + + } + + namespace test_variadic_templates + { + + template + struct sum; + + template + struct sum + { + static constexpr auto value = N0 + sum::value; + }; + + template <> + struct sum<> + { + static constexpr auto value = 0; + }; + + static_assert(sum<>::value == 0, ""); + static_assert(sum<1>::value == 1, ""); + static_assert(sum<23>::value == 23, ""); + static_assert(sum<1, 2>::value == 3, ""); + static_assert(sum<5, 5, 11>::value == 21, ""); + static_assert(sum<2, 3, 5, 7, 11, 13>::value == 41, ""); + + } + + // http://stackoverflow.com/questions/13728184/template-aliases-and-sfinae + // Clang 3.1 fails with headers of libstd++ 4.8.3 when using std::function + // because of this. + namespace test_template_alias_sfinae + { + + struct foo {}; + + template + using member = typename T::member_type; + + template + void func(...) {} + + template + void func(member*) {} + + void test(); + + void test() { func(0); } + + } + +} // namespace cxx11 + +#endif // __cplusplus >= 201103L + +]]) + + +dnl Tests for new features in C++14 + +m4_define([_MM_AX_CXX_COMPILE_STDCXX_testbody_new_in_14], [[ + +// If the compiler admits that it is not ready for C++14, why torture it? +// Hopefully, this will speed up the test. + +#ifndef __cplusplus + +#error "This is not a C++ compiler" + +#elif __cplusplus < 201402L + +#error "This is not a C++14 compiler" + +#else + +namespace cxx14 +{ + + namespace test_polymorphic_lambdas + { + + int + test() + { + const auto lambda = [](auto&&... args){ + const auto istiny = [](auto x){ + return (sizeof(x) == 1UL) ? 1 : 0; + }; + const int aretiny[] = { istiny(args)... }; + return aretiny[0]; + }; + return lambda(1, 1L, 1.0f, '1'); + } + + } + + namespace test_binary_literals + { + + constexpr auto ivii = 0b0000000000101010; + static_assert(ivii == 42, "wrong value"); + + } + + namespace test_generalized_constexpr + { + + template < typename CharT > + constexpr unsigned long + strlen_c(const CharT *const s) noexcept + { + auto length = 0UL; + for (auto p = s; *p; ++p) + ++length; + return length; + } + + static_assert(strlen_c("") == 0UL, ""); + static_assert(strlen_c("x") == 1UL, ""); + static_assert(strlen_c("test") == 4UL, ""); + static_assert(strlen_c("another\0test") == 7UL, ""); + + } + + namespace test_lambda_init_capture + { + + int + test() + { + auto x = 0; + const auto lambda1 = [a = x](int b){ return a + b; }; + const auto lambda2 = [a = lambda1(x)](){ return a; }; + return lambda2(); + } + + } + + namespace test_digit_separators + { + + constexpr auto ten_million = 100'000'000; + static_assert(ten_million == 100000000, ""); + + } + + namespace test_return_type_deduction + { + + auto f(int& x) { return x; } + decltype(auto) g(int& x) { return x; } + + template < typename T1, typename T2 > + struct is_same + { + static constexpr auto value = false; + }; + + template < typename T > + struct is_same + { + static constexpr auto value = true; + }; + + int + test() + { + auto x = 0; + static_assert(is_same::value, ""); + static_assert(is_same::value, ""); + return x; + } + + } + +} // namespace cxx14 + +#endif // __cplusplus >= 201402L + +]]) + + +dnl Tests for new features in C++17 + +m4_define([_MM_AX_CXX_COMPILE_STDCXX_testbody_new_in_17], [[ + +// If the compiler admits that it is not ready for C++17, why torture it? +// Hopefully, this will speed up the test. + +#ifndef __cplusplus + +#error "This is not a C++ compiler" + +#elif __cplusplus <= 201402L + +#error "This is not a C++17 compiler" + +#else + +#if defined(__clang__) + #define REALLY_CLANG +#else + #if defined(__GNUC__) + #define REALLY_GCC + #endif +#endif + +#include +#include +#include + +namespace cxx17 +{ + +#if !defined(REALLY_CLANG) + namespace test_constexpr_lambdas + { + + // TODO: test it with clang++ from git + + constexpr int foo = [](){return 42;}(); + + } +#endif // !defined(REALLY_CLANG) + + namespace test::nested_namespace::definitions + { + + } + + namespace test_fold_expression + { + + template + int multiply(Args... args) + { + return (args * ... * 1); + } + + template + bool all(Args... args) + { + return (args && ...); + } + + } + + namespace test_extended_static_assert + { + + static_assert (true); + + } + + namespace test_auto_brace_init_list + { + + auto foo = {5}; + auto bar {5}; + + static_assert(std::is_same, decltype(foo)>::value); + static_assert(std::is_same::value); + } + + namespace test_typename_in_template_template_parameter + { + + template typename X> struct D; + + } + + namespace test_fallthrough_nodiscard_maybe_unused_attributes + { + + int f1() + { + return 42; + } + + [[nodiscard]] int f2() + { + [[maybe_unused]] auto unused = f1(); + + switch (f1()) + { + case 17: + f1(); + [[fallthrough]]; + case 42: + f1(); + } + return f1(); + } + + } + + namespace test_extended_aggregate_initialization + { + + struct base1 + { + int b1, b2 = 42; + }; + + struct base2 + { + base2() { + b3 = 42; + } + int b3; + }; + + struct derived : base1, base2 + { + int d; + }; + + derived d1 {{1, 2}, {}, 4}; // full initialization + derived d2 {{}, {}, 4}; // value-initialized bases + + } + + namespace test_general_range_based_for_loop + { + + struct iter + { + int i; + + int& operator* () + { + return i; + } + + const int& operator* () const + { + return i; + } + + iter& operator++() + { + ++i; + return *this; + } + }; + + struct sentinel + { + int i; + }; + + bool operator== (const iter& i, const sentinel& s) + { + return i.i == s.i; + } + + bool operator!= (const iter& i, const sentinel& s) + { + return !(i == s); + } + + struct range + { + iter begin() const + { + return {0}; + } + + sentinel end() const + { + return {5}; + } + }; + + void f() + { + range r {}; + + for (auto i : r) + { + [[maybe_unused]] auto v = i; + } + } + + } + + namespace test_lambda_capture_asterisk_this_by_value + { + + struct t + { + int i; + int foo() + { + return [*this]() + { + return i; + }(); + } + }; + + } + + namespace test_enum_class_construction + { + + enum class byte : unsigned char + {}; + + byte foo {42}; + + } + + namespace test_constexpr_if + { + + template + int f () + { + if constexpr(cond) + { + return 13; + } + else + { + return 42; + } + } + + } + + namespace test_selection_statement_with_initializer + { + + int f() + { + return 13; + } + + int f2() + { + if (auto i = f(); i > 0) + { + return 3; + } + + switch (auto i = f(); i + 4) + { + case 17: + return 2; + + default: + return 1; + } + } + + } + +#if !defined(REALLY_CLANG) + namespace test_template_argument_deduction_for_class_templates + { + + // TODO: test it with clang++ from git + + template + struct pair + { + pair (T1 p1, T2 p2) + : m1 {p1}, + m2 {p2} + {} + + T1 m1; + T2 m2; + }; + + void f() + { + [[maybe_unused]] auto p = pair{13, 42u}; + } + + } +#endif // !defined(REALLY_CLANG) + + namespace test_non_type_auto_template_parameters + { + + template + struct B + {}; + + B<5> b1; + B<'a'> b2; + + } + +#if !defined(REALLY_CLANG) + namespace test_structured_bindings + { + + // TODO: test it with clang++ from git + + int arr[2] = { 1, 2 }; + std::pair pr = { 1, 2 }; + + auto f1() -> int(&)[2] + { + return arr; + } + + auto f2() -> std::pair& + { + return pr; + } + + struct S + { + int x1 : 2; + volatile double y1; + }; + + S f3() + { + return {}; + } + + auto [ x1, y1 ] = f1(); + auto& [ xr1, yr1 ] = f1(); + auto [ x2, y2 ] = f2(); + auto& [ xr2, yr2 ] = f2(); + const auto [ x3, y3 ] = f3(); + + } +#endif // !defined(REALLY_CLANG) + +#if !defined(REALLY_CLANG) + namespace test_exception_spec_type_system + { + + // TODO: test it with clang++ from git + + struct Good {}; + struct Bad {}; + + void g1() noexcept; + void g2(); + + template + Bad + f(T*, T*); + + template + Good + f(T1*, T2*); + + static_assert (std::is_same_v); + + } +#endif // !defined(REALLY_CLANG) + + namespace test_inline_variables + { + + template void f(T) + {} + + template inline T g(T) + { + return T{}; + } + + template<> inline void f<>(int) + {} + + template<> int g<>(int) + { + return 5; + } + + } + +} // namespace cxx17 + +#endif // __cplusplus <= 201402L + +]]) + #serial 20090814 @@ -422,7 +1363,7 @@ [dnl m4_assert([$# >= 1])[]dnl AC_REQUIRE([_MM_PRE_INIT])[]dnl -_MM_PREREQ([mm-common], [0.9.9], [$1], m4_defn([AC_PACKAGE_NAME]))[]dnl +_MM_PREREQ([mm-common], [0.9.12], [$1], m4_defn([AC_PACKAGE_NAME]))[]dnl ]) @@ -836,7 +1777,7 @@ AC_MSG_RESULT([$mm_all_flags])[]dnl ]) -# Copyright (C) 2002-2014 Free Software Foundation, Inc. +# Copyright (C) 2002-2018 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -848,10 +1789,10 @@ # generated from the m4 files accompanying Automake X.Y. # (This private macro should not be called outside this file.) AC_DEFUN([AM_AUTOMAKE_VERSION], -[am__api_version='1.15' +[am__api_version='1.16' dnl Some users find AM_AUTOMAKE_VERSION and mistake it for a way to dnl require some minimum version. Point them to the right macro. -m4_if([$1], [1.15], [], +m4_if([$1], [1.16.1], [], [AC_FATAL([Do not call $0, use AM_INIT_AUTOMAKE([$1]).])])dnl ]) @@ -867,14 +1808,14 @@ # Call AM_AUTOMAKE_VERSION and AM_AUTOMAKE_VERSION so they can be traced. # This function is AC_REQUIREd by AM_INIT_AUTOMAKE. AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION], -[AM_AUTOMAKE_VERSION([1.15])dnl +[AM_AUTOMAKE_VERSION([1.16.1])dnl m4_ifndef([AC_AUTOCONF_VERSION], [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl _AM_AUTOCONF_VERSION(m4_defn([AC_AUTOCONF_VERSION]))]) # AM_AUX_DIR_EXPAND -*- Autoconf -*- -# Copyright (C) 2001-2014 Free Software Foundation, Inc. +# Copyright (C) 2001-2018 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -926,7 +1867,7 @@ # AM_CONDITIONAL -*- Autoconf -*- -# Copyright (C) 1997-2014 Free Software Foundation, Inc. +# Copyright (C) 1997-2018 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -957,7 +1898,7 @@ Usually this means the macro was only invoked conditionally.]]) fi])]) -# Copyright (C) 1999-2014 Free Software Foundation, Inc. +# Copyright (C) 1999-2018 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -1148,13 +2089,12 @@ # Generate code to set up dependency tracking. -*- Autoconf -*- -# Copyright (C) 1999-2014 Free Software Foundation, Inc. +# Copyright (C) 1999-2018 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. - # _AM_OUTPUT_DEPENDENCY_COMMANDS # ------------------------------ AC_DEFUN([_AM_OUTPUT_DEPENDENCY_COMMANDS], @@ -1162,49 +2102,41 @@ # Older Autoconf quotes --file arguments for eval, but not when files # are listed without --file. Let's play safe and only enable the eval # if we detect the quoting. - case $CONFIG_FILES in - *\'*) eval set x "$CONFIG_FILES" ;; - *) set x $CONFIG_FILES ;; - esac + # TODO: see whether this extra hack can be removed once we start + # requiring Autoconf 2.70 or later. + AS_CASE([$CONFIG_FILES], + [*\'*], [eval set x "$CONFIG_FILES"], + [*], [set x $CONFIG_FILES]) shift - for mf + # Used to flag and report bootstrapping failures. + am_rc=0 + for am_mf do # Strip MF so we end up with the name of the file. - mf=`echo "$mf" | sed -e 's/:.*$//'` - # Check whether this is an Automake generated Makefile or not. - # We used to match only the files named 'Makefile.in', but - # some people rename them; so instead we look at the file content. - # Grep'ing the first line is not enough: some people post-process - # each Makefile.in and add a new line on top of each file to say so. - # Grep'ing the whole file is not good either: AIX grep has a line + am_mf=`AS_ECHO(["$am_mf"]) | sed -e 's/:.*$//'` + # Check whether this is an Automake generated Makefile which includes + # dependency-tracking related rules and includes. + # Grep'ing the whole file directly is not great: AIX grep has a line # limit of 2048, but all sed's we know have understand at least 4000. - if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then - dirpart=`AS_DIRNAME("$mf")` - else - continue - fi - # Extract the definition of DEPDIR, am__include, and am__quote - # from the Makefile without running 'make'. - DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"` - test -z "$DEPDIR" && continue - am__include=`sed -n 's/^am__include = //p' < "$mf"` - test -z "$am__include" && continue - am__quote=`sed -n 's/^am__quote = //p' < "$mf"` - # Find all dependency output files, they are included files with - # $(DEPDIR) in their names. We invoke sed twice because it is the - # simplest approach to changing $(DEPDIR) to its actual value in the - # expansion. - for file in `sed -n " - s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \ - sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g'`; do - # Make sure the directory exists. - test -f "$dirpart/$file" && continue - fdir=`AS_DIRNAME(["$file"])` - AS_MKDIR_P([$dirpart/$fdir]) - # echo "creating $dirpart/$file" - echo '# dummy' > "$dirpart/$file" - done + sed -n 's,^am--depfiles:.*,X,p' "$am_mf" | grep X >/dev/null 2>&1 \ + || continue + am_dirpart=`AS_DIRNAME(["$am_mf"])` + am_filepart=`AS_BASENAME(["$am_mf"])` + AM_RUN_LOG([cd "$am_dirpart" \ + && sed -e '/# am--include-marker/d' "$am_filepart" \ + | $MAKE -f - am--depfiles]) || am_rc=$? done + if test $am_rc -ne 0; then + AC_MSG_FAILURE([Something went wrong bootstrapping makefile fragments + for automatic dependency tracking. Try re-running configure with the + '--disable-dependency-tracking' option to at least be able to build + the package (albeit without support for automatic dependency tracking).]) + fi + AS_UNSET([am_dirpart]) + AS_UNSET([am_filepart]) + AS_UNSET([am_mf]) + AS_UNSET([am_rc]) + rm -f conftest-deps.mk } ])# _AM_OUTPUT_DEPENDENCY_COMMANDS @@ -1213,18 +2145,17 @@ # ----------------------------- # This macro should only be invoked once -- use via AC_REQUIRE. # -# This code is only required when automatic dependency tracking -# is enabled. FIXME. This creates each '.P' file that we will -# need in order to bootstrap the dependency handling code. +# This code is only required when automatic dependency tracking is enabled. +# This creates each '.Po' and '.Plo' makefile fragment that we'll need in +# order to bootstrap the dependency handling code. AC_DEFUN([AM_OUTPUT_DEPENDENCY_COMMANDS], [AC_CONFIG_COMMANDS([depfiles], [test x"$AMDEP_TRUE" != x"" || _AM_OUTPUT_DEPENDENCY_COMMANDS], - [AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir"]) -]) + [AMDEP_TRUE="$AMDEP_TRUE" MAKE="${MAKE-make}"])]) # Do all the work for Automake. -*- Autoconf -*- -# Copyright (C) 1996-2014 Free Software Foundation, Inc. +# Copyright (C) 1996-2018 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -1311,8 +2242,8 @@ AC_REQUIRE([AC_PROG_MKDIR_P])dnl # For better backward compatibility. To be removed once Automake 1.9.x # dies out for good. For more background, see: -# -# +# +# AC_SUBST([mkdir_p], ['$(MKDIR_P)']) # We need awk for the "check" target (and possibly the TAP driver). The # system "awk" is bad on some platforms. @@ -1379,7 +2310,7 @@ Aborting the configuration process, to ensure you take notice of the issue. You can download and install GNU coreutils to get an 'rm' implementation -that behaves properly: . +that behaves properly: . If you want to complete the configuration process using your problematic 'rm' anyway, export the environment variable ACCEPT_INFERIOR_RM_PROGRAM @@ -1421,7 +2352,7 @@ done echo "timestamp for $_am_arg" >`AS_DIRNAME(["$_am_arg"])`/stamp-h[]$_am_stamp_count]) -# Copyright (C) 2001-2014 Free Software Foundation, Inc. +# Copyright (C) 2001-2018 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -1442,7 +2373,7 @@ fi AC_SUBST([install_sh])]) -# Copyright (C) 2003-2014 Free Software Foundation, Inc. +# Copyright (C) 2003-2018 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -1464,7 +2395,7 @@ # Add --enable-maintainer-mode option to configure. -*- Autoconf -*- # From Jim Meyering -# Copyright (C) 1996-2014 Free Software Foundation, Inc. +# Copyright (C) 1996-2018 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -1499,7 +2430,7 @@ # Check to see how 'make' treats includes. -*- Autoconf -*- -# Copyright (C) 2001-2014 Free Software Foundation, Inc. +# Copyright (C) 2001-2018 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -1507,49 +2438,42 @@ # AM_MAKE_INCLUDE() # ----------------- -# Check to see how make treats includes. +# Check whether make has an 'include' directive that can support all +# the idioms we need for our automatic dependency tracking code. AC_DEFUN([AM_MAKE_INCLUDE], -[am_make=${MAKE-make} -cat > confinc << 'END' +[AC_MSG_CHECKING([whether ${MAKE-make} supports the include directive]) +cat > confinc.mk << 'END' am__doit: - @echo this is the am__doit target + @echo this is the am__doit target >confinc.out .PHONY: am__doit END -# If we don't find an include directive, just comment out the code. -AC_MSG_CHECKING([for style of include used by $am_make]) am__include="#" am__quote= -_am_result=none -# First try GNU make style include. -echo "include confinc" > confmf -# Ignore all kinds of additional output from 'make'. -case `$am_make -s -f confmf 2> /dev/null` in #( -*the\ am__doit\ target*) - am__include=include - am__quote= - _am_result=GNU - ;; -esac -# Now try BSD make style include. -if test "$am__include" = "#"; then - echo '.include "confinc"' > confmf - case `$am_make -s -f confmf 2> /dev/null` in #( - *the\ am__doit\ target*) - am__include=.include - am__quote="\"" - _am_result=BSD - ;; - esac -fi -AC_SUBST([am__include]) -AC_SUBST([am__quote]) -AC_MSG_RESULT([$_am_result]) -rm -f confinc confmf -]) +# BSD make does it like this. +echo '.include "confinc.mk" # ignored' > confmf.BSD +# Other make implementations (GNU, Solaris 10, AIX) do it like this. +echo 'include confinc.mk # ignored' > confmf.GNU +_am_result=no +for s in GNU BSD; do + AM_RUN_LOG([${MAKE-make} -f confmf.$s && cat confinc.out]) + AS_CASE([$?:`cat confinc.out 2>/dev/null`], + ['0:this is the am__doit target'], + [AS_CASE([$s], + [BSD], [am__include='.include' am__quote='"'], + [am__include='include' am__quote=''])]) + if test "$am__include" != "#"; then + _am_result="yes ($s style)" + break + fi +done +rm -f confinc.* confmf.* +AC_MSG_RESULT([${_am_result}]) +AC_SUBST([am__include])]) +AC_SUBST([am__quote])]) # Fake the existence of programs that GNU maintainers use. -*- Autoconf -*- -# Copyright (C) 1997-2014 Free Software Foundation, Inc. +# Copyright (C) 1997-2018 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -1588,7 +2512,7 @@ # Helper functions for option handling. -*- Autoconf -*- -# Copyright (C) 2001-2014 Free Software Foundation, Inc. +# Copyright (C) 2001-2018 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -1617,7 +2541,7 @@ AC_DEFUN([_AM_IF_OPTION], [m4_ifset(_AM_MANGLE_OPTION([$1]), [$2], [$3])]) -# Copyright (C) 1999-2014 Free Software Foundation, Inc. +# Copyright (C) 1999-2018 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -1664,7 +2588,7 @@ # For backward compatibility. AC_DEFUN_ONCE([AM_PROG_CC_C_O], [AC_REQUIRE([AC_PROG_CC])]) -# Copyright (C) 2001-2014 Free Software Foundation, Inc. +# Copyright (C) 2001-2018 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -1683,7 +2607,7 @@ # Check to make sure that the build environment is sane. -*- Autoconf -*- -# Copyright (C) 1996-2014 Free Software Foundation, Inc. +# Copyright (C) 1996-2018 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -1764,7 +2688,7 @@ rm -f conftest.file ]) -# Copyright (C) 2009-2014 Free Software Foundation, Inc. +# Copyright (C) 2009-2018 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -1824,7 +2748,7 @@ _AM_SUBST_NOTMAKE([AM_BACKSLASH])dnl ]) -# Copyright (C) 2001-2014 Free Software Foundation, Inc. +# Copyright (C) 2001-2018 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -1852,7 +2776,7 @@ INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s" AC_SUBST([INSTALL_STRIP_PROGRAM])]) -# Copyright (C) 2006-2014 Free Software Foundation, Inc. +# Copyright (C) 2006-2018 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -1871,7 +2795,7 @@ # Check how to create a tarball. -*- Autoconf -*- -# Copyright (C) 2004-2014 Free Software Foundation, Inc. +# Copyright (C) 2004-2018 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, diff -Nru atkmm1.6-2.24.2/atk/atkmm/action.cc atkmm1.6-2.28.0/atk/atkmm/action.cc --- atkmm1.6-2.24.2/atk/atkmm/action.cc 2015-11-29 20:04:55.162947913 +0000 +++ atkmm1.6-2.28.0/atk/atkmm/action.cc 2018-05-06 10:59:33.649406105 +0000 @@ -1,4 +1,4 @@ -// Generated by gmmproc 2.47.3.1 -- DO NOT MODIFY! +// Generated by gmmproc 2.56.0 -- DO NOT MODIFY! #include @@ -74,7 +74,7 @@ //This is just to avoid an "unused variable" warning when there are no vfuncs or signal handlers to connect. //This is a temporary fix until I find out why I can not seem to derive a GtkFileChooser interface. murrayc - g_assert(klass != nullptr); + g_assert(klass != nullptr); klass->do_action = &do_action_vfunc_callback; klass->get_n_actions = &get_n_actions_vfunc_callback; @@ -120,12 +120,9 @@ // Call the original underlying C function: if(base && base->do_action) - { - gboolean retval = (*base->do_action)(self, i); - return retval; - } + return (*base->do_action)(self, i); - typedef gboolean RType; + using RType = gboolean; return RType(); } gint Action_Class::get_n_actions_vfunc_callback(AtkAction* self) @@ -162,12 +159,9 @@ // Call the original underlying C function: if(base && base->get_n_actions) - { - gint retval = (*base->get_n_actions)(self); - return retval; - } + return (*base->get_n_actions)(self); - typedef gint RType; + using RType = gint; return RType(); } const gchar* Action_Class::get_description_vfunc_callback(AtkAction* self, gint i) @@ -205,12 +199,9 @@ // Call the original underlying C function: if(base && base->get_description) - { - const gchar* retval = (*base->get_description)(self, i); - return retval; - } + return (*base->get_description)(self, i); - typedef const gchar* RType; + using RType = const gchar*; return RType(); } const gchar* Action_Class::get_name_vfunc_callback(AtkAction* self, gint i) @@ -248,12 +239,9 @@ // Call the original underlying C function: if(base && base->get_name) - { - const gchar* retval = (*base->get_name)(self, i); - return retval; - } + return (*base->get_name)(self, i); - typedef const gchar* RType; + using RType = const gchar*; return RType(); } const gchar* Action_Class::get_keybinding_vfunc_callback(AtkAction* self, gint i) @@ -291,12 +279,9 @@ // Call the original underlying C function: if(base && base->get_keybinding) - { - const gchar* retval = (*base->get_keybinding)(self, i); - return retval; - } + return (*base->get_keybinding)(self, i); - typedef const gchar* RType; + using RType = const gchar*; return RType(); } gboolean Action_Class::set_description_vfunc_callback(AtkAction* self, gint i, const gchar* desc) @@ -335,12 +320,9 @@ // Call the original underlying C function: if(base && base->set_description) - { - gboolean retval = (*base->set_description)(self, i, desc); - return retval; - } + return (*base->set_description)(self, i, desc); - typedef gboolean RType; + using RType = gboolean; return RType(); } @@ -450,7 +432,7 @@ return retval; } - typedef bool RType; + using RType = bool; return RType(); } int Atk::Action::get_n_actions_vfunc() const @@ -466,7 +448,7 @@ return retval; } - typedef int RType; + using RType = int; return RType(); } const char* Atk::Action::get_description_vfunc(int i) const @@ -482,7 +464,7 @@ return retval; } - typedef const char* RType; + using RType = const char*; return RType(); } const char* Atk::Action::get_name_vfunc(int i) const @@ -498,7 +480,7 @@ return retval; } - typedef const char* RType; + using RType = const char*; return RType(); } const char* Atk::Action::get_keybinding_vfunc(int i) const @@ -514,7 +496,7 @@ return retval; } - typedef const char* RType; + using RType = const char*; return RType(); } bool Atk::Action::set_description_vfunc(int i, const Glib::ustring& desc) @@ -530,7 +512,7 @@ return retval; } - typedef bool RType; + using RType = bool; return RType(); } diff -Nru atkmm1.6-2.24.2/atk/atkmm/action.h atkmm1.6-2.28.0/atk/atkmm/action.h --- atkmm1.6-2.24.2/atk/atkmm/action.h 2015-11-29 20:04:55.158948415 +0000 +++ atkmm1.6-2.28.0/atk/atkmm/action.h 2018-05-06 10:59:33.617404569 +0000 @@ -1,5 +1,4 @@ -// -*- c++ -*- -// Generated by gmmproc 2.47.3.1 -- DO NOT MODIFY! +// Generated by gmmproc 2.56.0 -- DO NOT MODIFY! #ifndef _ATKMM_ACTION_H #define _ATKMM_ACTION_H @@ -35,8 +34,8 @@ #ifndef DOXYGEN_SHOULD_SKIP_THIS -typedef struct _AtkAction AtkAction; -typedef struct _AtkActionClass AtkActionClass; +using AtkAction = struct _AtkAction; +using AtkActionClass = struct _AtkActionClass; #endif /* DOXYGEN_SHOULD_SKIP_THIS */ @@ -71,10 +70,10 @@ #ifndef DOXYGEN_SHOULD_SKIP_THIS public: - typedef Action CppObjectType; - typedef Action_Class CppClassType; - typedef AtkAction BaseObjectType; - typedef AtkActionIface BaseClassType; + using CppObjectType = Action; + using CppClassType = Action_Class; + using BaseObjectType = AtkAction; + using BaseClassType = AtkActionIface; // noncopyable Action(const Action&) = delete; @@ -92,10 +91,10 @@ Action(); #ifndef DOXYGEN_SHOULD_SKIP_THIS - /** Called by constructors of derived classes. Provide the result of - * the Class init() function to ensure that it is properly + /** Called by constructors of derived classes. Provide the result of + * the Class init() function to ensure that it is properly * initialized. - * + * * @param interface_class The Class object for the derived type. */ explicit Action(const Glib::Interface_Class& interface_class); @@ -103,7 +102,7 @@ public: // This is public so that C++ wrapper instances can be // created for C instances of unwrapped types. - // For instance, if an unexpected C type implements the C interface. + // For instance, if an unexpected C type implements the C interface. explicit Action(AtkAction* castitem); protected: @@ -114,7 +113,7 @@ Action(Action&& src) noexcept; Action& operator=(Action&& src) noexcept; - virtual ~Action() noexcept; + ~Action() noexcept override; static void add_interface(GType gtype_implementer); @@ -227,7 +226,7 @@ namespace Glib { /** A Glib::wrap() method for this object. - * + * * @param object The C instance. * @param take_copy False if the result should take ownership of the C instance. True if it should take a new copy or ref. * @result A C++ instance that wraps this C instance. diff -Nru atkmm1.6-2.24.2/atk/atkmm/component.cc atkmm1.6-2.28.0/atk/atkmm/component.cc --- atkmm1.6-2.24.2/atk/atkmm/component.cc 2015-11-29 20:04:55.330926824 +0000 +++ atkmm1.6-2.28.0/atk/atkmm/component.cc 2018-05-06 10:59:33.701408602 +0000 @@ -1,4 +1,4 @@ -// Generated by gmmproc 2.47.3.1 -- DO NOT MODIFY! +// Generated by gmmproc 2.56.0 -- DO NOT MODIFY! #include @@ -88,7 +88,7 @@ //This is just to avoid an "unused variable" warning when there are no vfuncs or signal handlers to connect. //This is a temporary fix until I find out why I can not seem to derive a GtkFileChooser interface. murrayc - g_assert(klass != nullptr); + g_assert(klass != nullptr); klass->add_focus_handler = &add_focus_handler_vfunc_callback; klass->contains = &contains_vfunc_callback; @@ -140,12 +140,9 @@ // Call the original underlying C function: if(base && base->add_focus_handler) - { - guint retval = (*base->add_focus_handler)(self, handler); - return retval; - } + return (*base->add_focus_handler)(self, handler); - typedef guint RType; + using RType = guint; return RType(); } gboolean Component_Class::contains_vfunc_callback(AtkComponent* self, gint x, gint y, AtkCoordType coord_type) @@ -185,12 +182,9 @@ // Call the original underlying C function: if(base && base->contains) - { - gboolean retval = (*base->contains)(self, x, y, coord_type); - return retval; - } + return (*base->contains)(self, x, y, coord_type); - typedef gboolean RType; + using RType = gboolean; return RType(); } AtkObject* Component_Class::ref_accessible_at_point_vfunc_callback(AtkComponent* self, gint x, gint y, AtkCoordType coord_type) @@ -230,12 +224,9 @@ // Call the original underlying C function: if(base && base->ref_accessible_at_point) - { - AtkObject* retval = (*base->ref_accessible_at_point)(self, x, y, coord_type); - return retval; - } + return (*base->ref_accessible_at_point)(self, x, y, coord_type); - typedef AtkObject* RType; + using RType = AtkObject*; return RType(); } void Component_Class::get_extents_vfunc_callback(AtkComponent* self, gint* x, gint* y, gint* width, gint* height, AtkCoordType coord_type) @@ -278,10 +269,7 @@ // Call the original underlying C function: if(base && base->get_extents) - { (*base->get_extents)(self, x, y, width, height, coord_type); - } - } void Component_Class::get_position_vfunc_callback(AtkComponent* self, gint* x, gint* y, AtkCoordType coord_type) { @@ -321,10 +309,7 @@ // Call the original underlying C function: if(base && base->get_position) - { (*base->get_position)(self, x, y, coord_type); - } - } void Component_Class::get_size_vfunc_callback(AtkComponent* self, gint* width, gint* height) { @@ -363,10 +348,7 @@ // Call the original underlying C function: if(base && base->get_size) - { (*base->get_size)(self, width, height); - } - } AtkLayer Component_Class::get_layer_vfunc_callback(AtkComponent* self) { @@ -402,12 +384,9 @@ // Call the original underlying C function: if(base && base->get_layer) - { - AtkLayer retval = (*base->get_layer)(self); - return retval; - } + return (*base->get_layer)(self); - typedef AtkLayer RType; + using RType = AtkLayer; return RType(); } gint Component_Class::get_mdi_zorder_vfunc_callback(AtkComponent* self) @@ -444,12 +423,9 @@ // Call the original underlying C function: if(base && base->get_mdi_zorder) - { - gint retval = (*base->get_mdi_zorder)(self); - return retval; - } + return (*base->get_mdi_zorder)(self); - typedef gint RType; + using RType = gint; return RType(); } gboolean Component_Class::grab_focus_vfunc_callback(AtkComponent* self) @@ -486,12 +462,9 @@ // Call the original underlying C function: if(base && base->grab_focus) - { - gboolean retval = (*base->grab_focus)(self); - return retval; - } + return (*base->grab_focus)(self); - typedef gboolean RType; + using RType = gboolean; return RType(); } void Component_Class::remove_focus_handler_vfunc_callback(AtkComponent* self, guint handler_id) @@ -529,10 +502,7 @@ // Call the original underlying C function: if(base && base->remove_focus_handler) - { (*base->remove_focus_handler)(self, handler_id); - } - } gboolean Component_Class::set_extents_vfunc_callback(AtkComponent* self, gint x, gint y, gint width, gint height, AtkCoordType coord_type) { @@ -573,12 +543,9 @@ // Call the original underlying C function: if(base && base->set_extents) - { - gboolean retval = (*base->set_extents)(self, x, y, width, height, coord_type); - return retval; - } + return (*base->set_extents)(self, x, y, width, height, coord_type); - typedef gboolean RType; + using RType = gboolean; return RType(); } gboolean Component_Class::set_position_vfunc_callback(AtkComponent* self, gint x, gint y, AtkCoordType coord_type) @@ -618,12 +585,9 @@ // Call the original underlying C function: if(base && base->set_position) - { - gboolean retval = (*base->set_position)(self, x, y, coord_type); - return retval; - } + return (*base->set_position)(self, x, y, coord_type); - typedef gboolean RType; + using RType = gboolean; return RType(); } gboolean Component_Class::set_size_vfunc_callback(AtkComponent* self, gint width, gint height) @@ -662,12 +626,9 @@ // Call the original underlying C function: if(base && base->set_size) - { - gboolean retval = (*base->set_size)(self, width, height); - return retval; - } + return (*base->set_size)(self, width, height); - typedef gboolean RType; + using RType = gboolean; return RType(); } @@ -823,7 +784,7 @@ return retval; } - typedef guint RType; + using RType = guint; return RType(); } bool Atk::Component::contains_vfunc(int x, int y, CoordType coord_type) const @@ -839,7 +800,7 @@ return retval; } - typedef bool RType; + using RType = bool; return RType(); } Glib::RefPtr Atk::Component::get_accessible_at_point_vfunc(int x, int y, CoordType coord_type) @@ -855,7 +816,7 @@ return retval; } - typedef Glib::RefPtr RType; + using RType = Glib::RefPtr; return RType(); } void Atk::Component::get_extents_vfunc(int& x, int& y, int& width, int& height, CoordType coord_type) const @@ -907,7 +868,7 @@ return retval; } - typedef Layer RType; + using RType = Layer; return RType(); } int Atk::Component::get_mdi_zorder_vfunc() const @@ -923,7 +884,7 @@ return retval; } - typedef int RType; + using RType = int; return RType(); } bool Atk::Component::grab_focus_vfunc() @@ -939,7 +900,7 @@ return retval; } - typedef bool RType; + using RType = bool; return RType(); } void Atk::Component::remove_focus_handler_vfunc(guint handler_id) @@ -967,7 +928,7 @@ return retval; } - typedef bool RType; + using RType = bool; return RType(); } bool Atk::Component::set_position_vfunc(int x, int y, CoordType coord_type) @@ -983,7 +944,7 @@ return retval; } - typedef bool RType; + using RType = bool; return RType(); } bool Atk::Component::set_size_vfunc(int width, int height) @@ -999,7 +960,7 @@ return retval; } - typedef bool RType; + using RType = bool; return RType(); } diff -Nru atkmm1.6-2.24.2/atk/atkmm/component.h atkmm1.6-2.28.0/atk/atkmm/component.h --- atkmm1.6-2.24.2/atk/atkmm/component.h 2015-11-29 20:04:55.322927828 +0000 +++ atkmm1.6-2.28.0/atk/atkmm/component.h 2018-05-06 10:59:33.657406489 +0000 @@ -1,5 +1,4 @@ -// -*- c++ -*- -// Generated by gmmproc 2.47.3.1 -- DO NOT MODIFY! +// Generated by gmmproc 2.56.0 -- DO NOT MODIFY! #ifndef _ATKMM_COMPONENT_H #define _ATKMM_COMPONENT_H @@ -41,8 +40,8 @@ #ifndef DOXYGEN_SHOULD_SKIP_THIS -typedef struct _AtkComponent AtkComponent; -typedef struct _AtkComponentClass AtkComponentClass; +using AtkComponent = struct _AtkComponent; +using AtkComponentClass = struct _AtkComponentClass; #endif /* DOXYGEN_SHOULD_SKIP_THIS */ @@ -80,7 +79,6 @@ } // namespace Atk - #ifndef DOXYGEN_SHOULD_SKIP_THIS namespace Glib { @@ -95,7 +93,6 @@ } // namespace Glib #endif /* DOXYGEN_SHOULD_SKIP_THIS */ - namespace Atk { @@ -148,7 +145,6 @@ } // namespace Atk - #ifndef DOXYGEN_SHOULD_SKIP_THIS namespace Glib { @@ -163,7 +159,6 @@ } // namespace Glib #endif /* DOXYGEN_SHOULD_SKIP_THIS */ - namespace Atk { @@ -187,10 +182,10 @@ #ifndef DOXYGEN_SHOULD_SKIP_THIS public: - typedef Component CppObjectType; - typedef Component_Class CppClassType; - typedef AtkComponent BaseObjectType; - typedef AtkComponentIface BaseClassType; + using CppObjectType = Component; + using CppClassType = Component_Class; + using BaseObjectType = AtkComponent; + using BaseClassType = AtkComponentIface; // noncopyable Component(const Component&) = delete; @@ -208,10 +203,10 @@ Component(); #ifndef DOXYGEN_SHOULD_SKIP_THIS - /** Called by constructors of derived classes. Provide the result of - * the Class init() function to ensure that it is properly + /** Called by constructors of derived classes. Provide the result of + * the Class init() function to ensure that it is properly * initialized. - * + * * @param interface_class The Class object for the derived type. */ explicit Component(const Glib::Interface_Class& interface_class); @@ -219,7 +214,7 @@ public: // This is public so that C++ wrapper instances can be // created for C instances of unwrapped types. - // For instance, if an unexpected C type implements the C interface. + // For instance, if an unexpected C type implements the C interface. explicit Component(AtkComponent* castitem); protected: @@ -230,7 +225,7 @@ Component(Component&& src) noexcept; Component& operator=(Component&& src) noexcept; - virtual ~Component() noexcept; + ~Component() noexcept override; static void add_interface(GType gtype_implementer); @@ -469,7 +464,7 @@ namespace Glib { /** A Glib::wrap() method for this object. - * + * * @param object The C instance. * @param take_copy False if the result should take ownership of the C instance. True if it should take a new copy or ref. * @result A C++ instance that wraps this C instance. diff -Nru atkmm1.6-2.24.2/atk/atkmm/document.cc atkmm1.6-2.28.0/atk/atkmm/document.cc --- atkmm1.6-2.24.2/atk/atkmm/document.cc 2015-11-29 20:04:55.510904229 +0000 +++ atkmm1.6-2.28.0/atk/atkmm/document.cc 2018-05-06 10:59:33.653406297 +0000 @@ -1,4 +1,4 @@ -// Generated by gmmproc 2.47.3.1 -- DO NOT MODIFY! +// Generated by gmmproc 2.56.0 -- DO NOT MODIFY! #include @@ -82,7 +82,7 @@ //This is just to avoid an "unused variable" warning when there are no vfuncs or signal handlers to connect. //This is a temporary fix until I find out why I can not seem to derive a GtkFileChooser interface. murrayc - g_assert(klass != nullptr); + g_assert(klass != nullptr); klass->get_document_type = &get_document_type_vfunc_callback; klass->get_document = &get_document_vfunc_callback; @@ -123,12 +123,9 @@ // Call the original underlying C function: if(base && base->get_document_type) - { - const gchar* retval = (*base->get_document_type)(self); - return retval; - } + return (*base->get_document_type)(self); - typedef const gchar* RType; + using RType = const gchar*; return RType(); } gpointer Document_Class::get_document_vfunc_callback(AtkDocument* self) @@ -165,12 +162,9 @@ // Call the original underlying C function: if(base && base->get_document) - { - gpointer retval = (*base->get_document)(self); - return retval; - } + return (*base->get_document)(self); - typedef gpointer RType; + using RType = gpointer; return RType(); } @@ -273,7 +267,7 @@ return retval; } - typedef const gchar* RType; + using RType = const gchar*; return RType(); } gpointer Atk::Document::get_document_vfunc() const @@ -289,7 +283,7 @@ return retval; } - typedef gpointer RType; + using RType = gpointer; return RType(); } diff -Nru atkmm1.6-2.24.2/atk/atkmm/document.h atkmm1.6-2.28.0/atk/atkmm/document.h --- atkmm1.6-2.24.2/atk/atkmm/document.h 2015-11-29 20:04:55.502905233 +0000 +++ atkmm1.6-2.28.0/atk/atkmm/document.h 2018-05-06 10:59:33.621404761 +0000 @@ -1,5 +1,4 @@ -// -*- c++ -*- -// Generated by gmmproc 2.47.3.1 -- DO NOT MODIFY! +// Generated by gmmproc 2.56.0 -- DO NOT MODIFY! #ifndef _ATKMM_DOCUMENT_H #define _ATKMM_DOCUMENT_H @@ -38,8 +37,8 @@ #endif /* DOXYGEN_SHOULD_SKIP_THIS */ #ifndef DOXYGEN_SHOULD_SKIP_THIS -typedef struct _AtkDocument AtkDocument; -typedef struct _AtkDocumentClass AtkDocumentClass; +using AtkDocument = struct _AtkDocument; +using AtkDocumentClass = struct _AtkDocumentClass; #endif /* DOXYGEN_SHOULD_SKIP_THIS */ @@ -64,10 +63,10 @@ #ifndef DOXYGEN_SHOULD_SKIP_THIS public: - typedef Document CppObjectType; - typedef Document_Class CppClassType; - typedef AtkDocument BaseObjectType; - typedef AtkDocumentIface BaseClassType; + using CppObjectType = Document; + using CppClassType = Document_Class; + using BaseObjectType = AtkDocument; + using BaseClassType = AtkDocumentIface; // noncopyable Document(const Document&) = delete; @@ -85,10 +84,10 @@ Document(); #ifndef DOXYGEN_SHOULD_SKIP_THIS - /** Called by constructors of derived classes. Provide the result of - * the Class init() function to ensure that it is properly + /** Called by constructors of derived classes. Provide the result of + * the Class init() function to ensure that it is properly * initialized. - * + * * @param interface_class The Class object for the derived type. */ explicit Document(const Glib::Interface_Class& interface_class); @@ -96,7 +95,7 @@ public: // This is public so that C++ wrapper instances can be // created for C instances of unwrapped types. - // For instance, if an unexpected C type implements the C interface. + // For instance, if an unexpected C type implements the C interface. explicit Document(AtkDocument* castitem); protected: @@ -107,7 +106,7 @@ Document(Document&& src) noexcept; Document& operator=(Document&& src) noexcept; - virtual ~Document() noexcept; + ~Document() noexcept override; static void add_interface(GType gtype_implementer); @@ -211,7 +210,7 @@ namespace Glib { /** A Glib::wrap() method for this object. - * + * * @param object The C instance. * @param take_copy False if the result should take ownership of the C instance. True if it should take a new copy or ref. * @result A C++ instance that wraps this C instance. diff -Nru atkmm1.6-2.24.2/atk/atkmm/editabletext.cc atkmm1.6-2.28.0/atk/atkmm/editabletext.cc --- atkmm1.6-2.24.2/atk/atkmm/editabletext.cc 2015-11-29 20:04:55.682882638 +0000 +++ atkmm1.6-2.28.0/atk/atkmm/editabletext.cc 2018-05-06 10:59:34.261435486 +0000 @@ -1,4 +1,4 @@ -// Generated by gmmproc 2.47.3.1 -- DO NOT MODIFY! +// Generated by gmmproc 2.56.0 -- DO NOT MODIFY! #include @@ -75,7 +75,7 @@ //This is just to avoid an "unused variable" warning when there are no vfuncs or signal handlers to connect. //This is a temporary fix until I find out why I can not seem to derive a GtkFileChooser interface. murrayc - g_assert(klass != nullptr); + g_assert(klass != nullptr); klass->set_run_attributes = &set_run_attributes_vfunc_callback; klass->set_text_contents = &set_text_contents_vfunc_callback; @@ -123,12 +123,9 @@ // Call the original underlying C function: if(base && base->set_run_attributes) - { - gboolean retval = (*base->set_run_attributes)(self, attrib_set, start_offset, end_offset); - return retval; - } + return (*base->set_run_attributes)(self, attrib_set, start_offset, end_offset); - typedef gboolean RType; + using RType = gboolean; return RType(); } void EditableText_Class::set_text_contents_vfunc_callback(AtkEditableText* self, const gchar* string) @@ -167,10 +164,7 @@ // Call the original underlying C function: if(base && base->set_text_contents) - { (*base->set_text_contents)(self, string); - } - } void EditableText_Class::insert_text_vfunc_callback(AtkEditableText* self, const gchar* string, gint length, gint* position) { @@ -210,10 +204,7 @@ // Call the original underlying C function: if(base && base->insert_text) - { (*base->insert_text)(self, string, length, position); - } - } void EditableText_Class::copy_text_vfunc_callback(AtkEditableText* self, gint start_pos, gint end_pos) { @@ -252,10 +243,7 @@ // Call the original underlying C function: if(base && base->copy_text) - { (*base->copy_text)(self, start_pos, end_pos); - } - } void EditableText_Class::cut_text_vfunc_callback(AtkEditableText* self, gint start_pos, gint end_pos) { @@ -294,10 +282,7 @@ // Call the original underlying C function: if(base && base->cut_text) - { (*base->cut_text)(self, start_pos, end_pos); - } - } void EditableText_Class::delete_text_vfunc_callback(AtkEditableText* self, gint start_pos, gint end_pos) { @@ -336,10 +321,7 @@ // Call the original underlying C function: if(base && base->delete_text) - { (*base->delete_text)(self, start_pos, end_pos); - } - } void EditableText_Class::paste_text_vfunc_callback(AtkEditableText* self, gint position) { @@ -377,10 +359,7 @@ // Call the original underlying C function: if(base && base->paste_text) - { (*base->paste_text)(self, position); - } - } @@ -489,7 +468,7 @@ return retval; } - typedef bool RType; + using RType = bool; return RType(); } void Atk::EditableText::set_text_contents_vfunc(const Glib::ustring& string) diff -Nru atkmm1.6-2.24.2/atk/atkmm/editabletext.h atkmm1.6-2.28.0/atk/atkmm/editabletext.h --- atkmm1.6-2.24.2/atk/atkmm/editabletext.h 2015-11-29 20:04:55.674883642 +0000 +++ atkmm1.6-2.28.0/atk/atkmm/editabletext.h 2018-05-06 10:59:34.233434142 +0000 @@ -1,5 +1,4 @@ -// -*- c++ -*- -// Generated by gmmproc 2.47.3.1 -- DO NOT MODIFY! +// Generated by gmmproc 2.56.0 -- DO NOT MODIFY! #ifndef _ATKMM_EDITABLETEXT_H #define _ATKMM_EDITABLETEXT_H @@ -39,8 +38,8 @@ #ifndef DOXYGEN_SHOULD_SKIP_THIS -typedef struct _AtkEditableText AtkEditableText; -typedef struct _AtkEditableTextClass AtkEditableTextClass; +using AtkEditableText = struct _AtkEditableText; +using AtkEditableTextClass = struct _AtkEditableTextClass; #endif /* DOXYGEN_SHOULD_SKIP_THIS */ @@ -66,10 +65,10 @@ #ifndef DOXYGEN_SHOULD_SKIP_THIS public: - typedef EditableText CppObjectType; - typedef EditableText_Class CppClassType; - typedef AtkEditableText BaseObjectType; - typedef AtkEditableTextIface BaseClassType; + using CppObjectType = EditableText; + using CppClassType = EditableText_Class; + using BaseObjectType = AtkEditableText; + using BaseClassType = AtkEditableTextIface; // noncopyable EditableText(const EditableText&) = delete; @@ -87,10 +86,10 @@ EditableText(); #ifndef DOXYGEN_SHOULD_SKIP_THIS - /** Called by constructors of derived classes. Provide the result of - * the Class init() function to ensure that it is properly + /** Called by constructors of derived classes. Provide the result of + * the Class init() function to ensure that it is properly * initialized. - * + * * @param interface_class The Class object for the derived type. */ explicit EditableText(const Glib::Interface_Class& interface_class); @@ -98,7 +97,7 @@ public: // This is public so that C++ wrapper instances can be // created for C instances of unwrapped types. - // For instance, if an unexpected C type implements the C interface. + // For instance, if an unexpected C type implements the C interface. explicit EditableText(AtkEditableText* castitem); protected: @@ -109,7 +108,7 @@ EditableText(EditableText&& src) noexcept; EditableText& operator=(EditableText&& src) noexcept; - virtual ~EditableText() noexcept; + ~EditableText() noexcept override; static void add_interface(GType gtype_implementer); @@ -227,7 +226,7 @@ namespace Glib { /** A Glib::wrap() method for this object. - * + * * @param object The C instance. * @param take_copy False if the result should take ownership of the C instance. True if it should take a new copy or ref. * @result A C++ instance that wraps this C instance. diff -Nru atkmm1.6-2.24.2/atk/atkmm/filelist.am atkmm1.6-2.28.0/atk/atkmm/filelist.am --- atkmm1.6-2.24.2/atk/atkmm/filelist.am 2014-12-09 08:04:03.789553873 +0000 +++ atkmm1.6-2.28.0/atk/atkmm/filelist.am 2018-10-31 17:51:16.673585851 +0000 @@ -2,7 +2,6 @@ atkmm_files_built_cc = $(atkmm_files_hg:.hg=.cc) wrap_init.cc atkmm_files_built_h = $(atkmm_files_hg:.hg=.h) -atkmm_files_built_ph = $(patsubst %.hg,private/%_p.h,$(atkmm_files_hg)) atkmm_files_extra_cc = init.cc atkmm_files_extra_h = init.h wrap_init.h diff -Nru atkmm1.6-2.24.2/atk/atkmm/filelist.gmake.am atkmm1.6-2.28.0/atk/atkmm/filelist.gmake.am --- atkmm1.6-2.24.2/atk/atkmm/filelist.gmake.am 1970-01-01 00:00:00.000000000 +0000 +++ atkmm1.6-2.28.0/atk/atkmm/filelist.gmake.am 2018-10-31 17:51:16.673585851 +0000 @@ -0,0 +1,4 @@ +include $(top_srcdir)/atk/atkmm/filelist.am + +# Split out from $(srcdir)/filelist.am +atkmm_files_built_ph = $(patsubst %.hg,private/%_p.h,$(atkmm_files_hg)) diff -Nru atkmm1.6-2.24.2/atk/atkmm/hyperlink.cc atkmm1.6-2.28.0/atk/atkmm/hyperlink.cc --- atkmm1.6-2.24.2/atk/atkmm/hyperlink.cc 2015-11-29 20:04:55.862860042 +0000 +++ atkmm1.6-2.28.0/atk/atkmm/hyperlink.cc 2018-05-06 10:59:34.389441632 +0000 @@ -1,4 +1,4 @@ -// Generated by gmmproc 2.47.3.1 -- DO NOT MODIFY! +// Generated by gmmproc 2.56.0 -- DO NOT MODIFY! #include @@ -145,12 +145,9 @@ // Call the original underlying C function: if(base && base->get_uri) - { - gchar* retval = (*base->get_uri)(self, i); - return retval; - } + return (*base->get_uri)(self, i); - typedef gchar* RType; + using RType = gchar*; return RType(); } AtkObject* Hyperlink_Class::get_object_vfunc_callback(AtkHyperlink* self, gint i) @@ -187,12 +184,9 @@ // Call the original underlying C function: if(base && base->get_object) - { - AtkObject* retval = (*base->get_object)(self, i); - return retval; - } + return (*base->get_object)(self, i); - typedef AtkObject* RType; + using RType = AtkObject*; return RType(); } gint Hyperlink_Class::get_end_index_vfunc_callback(AtkHyperlink* self) @@ -228,12 +222,9 @@ // Call the original underlying C function: if(base && base->get_end_index) - { - gint retval = (*base->get_end_index)(self); - return retval; - } + return (*base->get_end_index)(self); - typedef gint RType; + using RType = gint; return RType(); } gint Hyperlink_Class::get_start_index_vfunc_callback(AtkHyperlink* self) @@ -269,12 +260,9 @@ // Call the original underlying C function: if(base && base->get_start_index) - { - gint retval = (*base->get_start_index)(self); - return retval; - } + return (*base->get_start_index)(self); - typedef gint RType; + using RType = gint; return RType(); } gboolean Hyperlink_Class::is_valid_vfunc_callback(AtkHyperlink* self) @@ -310,12 +298,9 @@ // Call the original underlying C function: if(base && base->is_valid) - { - gboolean retval = (*base->is_valid)(self); - return retval; - } + return (*base->is_valid)(self); - typedef gboolean RType; + using RType = gboolean; return RType(); } gint Hyperlink_Class::get_n_anchors_vfunc_callback(AtkHyperlink* self) @@ -351,12 +336,9 @@ // Call the original underlying C function: if(base && base->get_n_anchors) - { - gint retval = (*base->get_n_anchors)(self); - return retval; - } + return (*base->get_n_anchors)(self); - typedef gint RType; + using RType = gint; return RType(); } guint Hyperlink_Class::link_state_vfunc_callback(AtkHyperlink* self) @@ -392,12 +374,9 @@ // Call the original underlying C function: if(base && base->link_state) - { - guint retval = (*base->link_state)(self); - return retval; - } + return (*base->link_state)(self); - typedef guint RType; + using RType = guint; return RType(); } gboolean Hyperlink_Class::is_selected_link_vfunc_callback(AtkHyperlink* self) @@ -433,12 +412,9 @@ // Call the original underlying C function: if(base && base->is_selected_link) - { - gboolean retval = (*base->is_selected_link)(self); - return retval; - } + return (*base->is_selected_link)(self); - typedef gboolean RType; + using RType = gboolean; return RType(); } @@ -519,6 +495,7 @@ return *this; } + Hyperlink::~Hyperlink() noexcept {} @@ -581,9 +558,9 @@ } -Glib::SignalProxy0< void > Hyperlink::signal_link_activated() +Glib::SignalProxy< void > Hyperlink::signal_link_activated() { - return Glib::SignalProxy0< void >(this, &Hyperlink_signal_link_activated_info); + return Glib::SignalProxy< void >(this, &Hyperlink_signal_link_activated_info); } @@ -630,7 +607,7 @@ return retval; } - typedef gchar* RType; + using RType = gchar*; return RType(); } Glib::RefPtr Atk::Hyperlink::get_object_vfunc(int i) @@ -645,7 +622,7 @@ return retval; } - typedef Glib::RefPtr RType; + using RType = Glib::RefPtr; return RType(); } int Atk::Hyperlink::get_end_index_vfunc() const @@ -660,7 +637,7 @@ return retval; } - typedef int RType; + using RType = int; return RType(); } int Atk::Hyperlink::get_start_index_vfunc() const @@ -675,7 +652,7 @@ return retval; } - typedef int RType; + using RType = int; return RType(); } bool Atk::Hyperlink::is_valid_vfunc() const @@ -690,7 +667,7 @@ return retval; } - typedef bool RType; + using RType = bool; return RType(); } int Atk::Hyperlink::get_n_anchors_vfunc() const @@ -705,7 +682,7 @@ return retval; } - typedef int RType; + using RType = int; return RType(); } guint Atk::Hyperlink::link_state_vfunc() const @@ -720,7 +697,7 @@ return retval; } - typedef guint RType; + using RType = guint; return RType(); } bool Atk::Hyperlink::is_selected_link_vfunc() const @@ -735,7 +712,7 @@ return retval; } - typedef bool RType; + using RType = bool; return RType(); } diff -Nru atkmm1.6-2.24.2/atk/atkmm/hyperlink.h atkmm1.6-2.28.0/atk/atkmm/hyperlink.h --- atkmm1.6-2.24.2/atk/atkmm/hyperlink.h 2015-11-29 20:04:55.854861047 +0000 +++ atkmm1.6-2.28.0/atk/atkmm/hyperlink.h 2018-05-06 10:59:34.357440095 +0000 @@ -1,5 +1,4 @@ -// -*- c++ -*- -// Generated by gmmproc 2.47.3.1 -- DO NOT MODIFY! +// Generated by gmmproc 2.56.0 -- DO NOT MODIFY! #ifndef _ATKMM_HYPERLINK_H #define _ATKMM_HYPERLINK_H @@ -28,8 +27,8 @@ #ifndef DOXYGEN_SHOULD_SKIP_THIS -typedef struct _AtkHyperlink AtkHyperlink; -typedef struct _AtkHyperlinkClass AtkHyperlinkClass; +using AtkHyperlink = struct _AtkHyperlink; +using AtkHyperlinkClass = struct _AtkHyperlinkClass; #endif /* DOXYGEN_SHOULD_SKIP_THIS */ @@ -52,10 +51,10 @@ #ifndef DOXYGEN_SHOULD_SKIP_THIS public: - typedef Hyperlink CppObjectType; - typedef Hyperlink_Class CppClassType; - typedef AtkHyperlink BaseObjectType; - typedef AtkHyperlinkClass BaseClassType; + using CppObjectType = Hyperlink; + using CppClassType = Hyperlink_Class; + using BaseObjectType = AtkHyperlink; + using BaseClassType = AtkHyperlinkClass; // noncopyable Hyperlink(const Hyperlink&) = delete; @@ -75,7 +74,7 @@ Hyperlink(Hyperlink&& src) noexcept; Hyperlink& operator=(Hyperlink&& src) noexcept; - virtual ~Hyperlink() noexcept; + ~Hyperlink() noexcept override; /** Get the GType for this class, for use with the underlying GObject type system. */ @@ -181,10 +180,12 @@ * @par Slot Prototype: * void on_my_%link_activated() * + * Flags: Run Last + * * The signal link-activated is emitted when a link is activated. */ - Glib::SignalProxy0< void > signal_link_activated(); + Glib::SignalProxy< void > signal_link_activated(); /** Specifies whether the AtkHyperlink object is selected. @@ -258,7 +259,7 @@ namespace Glib { /** A Glib::wrap() method for this object. - * + * * @param object The C instance. * @param take_copy False if the result should take ownership of the C instance. True if it should take a new copy or ref. * @result A C++ instance that wraps this C instance. diff -Nru atkmm1.6-2.24.2/atk/atkmm/hypertext.cc atkmm1.6-2.28.0/atk/atkmm/hypertext.cc --- atkmm1.6-2.24.2/atk/atkmm/hypertext.cc 2015-11-29 20:04:56.010841465 +0000 +++ atkmm1.6-2.28.0/atk/atkmm/hypertext.cc 2018-05-06 10:59:34.397442015 +0000 @@ -1,4 +1,4 @@ -// Generated by gmmproc 2.47.3.1 -- DO NOT MODIFY! +// Generated by gmmproc 2.56.0 -- DO NOT MODIFY! #include @@ -45,7 +45,7 @@ static void Hypertext_signal_link_selected_callback(AtkHypertext* self, gint p0,void* data) { using namespace Atk; - typedef sigc::slot< void,int > SlotType; + using SlotType = sigc::slot< void,int >; auto obj = dynamic_cast(Glib::ObjectBase::_get_current_wrapper((GObject*) self)); // Do not try to call a signal on a disassociated wrapper. @@ -114,7 +114,7 @@ //This is just to avoid an "unused variable" warning when there are no vfuncs or signal handlers to connect. //This is a temporary fix until I find out why I can not seem to derive a GtkFileChooser interface. murrayc - g_assert(klass != nullptr); + g_assert(klass != nullptr); klass->get_link = &get_link_vfunc_callback; klass->get_n_links = &get_n_links_vfunc_callback; @@ -158,12 +158,9 @@ // Call the original underlying C function: if(base && base->get_link) - { - AtkHyperlink* retval = (*base->get_link)(self, link_index); - return retval; - } + return (*base->get_link)(self, link_index); - typedef AtkHyperlink* RType; + using RType = AtkHyperlink*; return RType(); } gint Hypertext_Class::get_n_links_vfunc_callback(AtkHypertext* self) @@ -200,12 +197,9 @@ // Call the original underlying C function: if(base && base->get_n_links) - { - gint retval = (*base->get_n_links)(self); - return retval; - } + return (*base->get_n_links)(self); - typedef gint RType; + using RType = gint; return RType(); } gint Hypertext_Class::get_link_index_vfunc_callback(AtkHypertext* self, gint char_index) @@ -243,12 +237,9 @@ // Call the original underlying C function: if(base && base->get_link_index) - { - gint retval = (*base->get_link_index)(self, char_index); - return retval; - } + return (*base->get_link_index)(self, char_index); - typedef gint RType; + using RType = gint; return RType(); } @@ -369,9 +360,9 @@ } -Glib::SignalProxy1< void,int > Hypertext::signal_link_selected() +Glib::SignalProxy< void,int > Hypertext::signal_link_selected() { - return Glib::SignalProxy1< void,int >(this, &Hypertext_signal_link_selected_info); + return Glib::SignalProxy< void,int >(this, &Hypertext_signal_link_selected_info); } @@ -399,7 +390,7 @@ return retval; } - typedef Glib::RefPtr RType; + using RType = Glib::RefPtr; return RType(); } int Atk::Hypertext::get_n_links_vfunc() const @@ -415,7 +406,7 @@ return retval; } - typedef int RType; + using RType = int; return RType(); } int Atk::Hypertext::get_link_index_vfunc(int char_index) const @@ -431,7 +422,7 @@ return retval; } - typedef int RType; + using RType = int; return RType(); } diff -Nru atkmm1.6-2.24.2/atk/atkmm/hypertext.h atkmm1.6-2.28.0/atk/atkmm/hypertext.h --- atkmm1.6-2.24.2/atk/atkmm/hypertext.h 2015-11-29 20:04:56.002842468 +0000 +++ atkmm1.6-2.28.0/atk/atkmm/hypertext.h 2018-05-06 10:59:34.357440095 +0000 @@ -1,5 +1,4 @@ -// -*- c++ -*- -// Generated by gmmproc 2.47.3.1 -- DO NOT MODIFY! +// Generated by gmmproc 2.56.0 -- DO NOT MODIFY! #ifndef _ATKMM_HYPERTEXT_H #define _ATKMM_HYPERTEXT_H @@ -40,8 +39,8 @@ /** The ATK interface which provides standard mechanism for manipulating hyperlinks. */ #ifndef DOXYGEN_SHOULD_SKIP_THIS -typedef struct _AtkHypertext AtkHypertext; -typedef struct _AtkHypertextClass AtkHypertextClass; +using AtkHypertext = struct _AtkHypertext; +using AtkHypertextClass = struct _AtkHypertextClass; #endif /* DOXYGEN_SHOULD_SKIP_THIS */ @@ -62,10 +61,10 @@ #ifndef DOXYGEN_SHOULD_SKIP_THIS public: - typedef Hypertext CppObjectType; - typedef Hypertext_Class CppClassType; - typedef AtkHypertext BaseObjectType; - typedef AtkHypertextIface BaseClassType; + using CppObjectType = Hypertext; + using CppClassType = Hypertext_Class; + using BaseObjectType = AtkHypertext; + using BaseClassType = AtkHypertextIface; // noncopyable Hypertext(const Hypertext&) = delete; @@ -83,10 +82,10 @@ Hypertext(); #ifndef DOXYGEN_SHOULD_SKIP_THIS - /** Called by constructors of derived classes. Provide the result of - * the Class init() function to ensure that it is properly + /** Called by constructors of derived classes. Provide the result of + * the Class init() function to ensure that it is properly * initialized. - * + * * @param interface_class The Class object for the derived type. */ explicit Hypertext(const Glib::Interface_Class& interface_class); @@ -94,7 +93,7 @@ public: // This is public so that C++ wrapper instances can be // created for C instances of unwrapped types. - // For instance, if an unexpected C type implements the C interface. + // For instance, if an unexpected C type implements the C interface. explicit Hypertext(AtkHypertext* castitem); protected: @@ -105,7 +104,7 @@ Hypertext(Hypertext&& src) noexcept; Hypertext& operator=(Hypertext&& src) noexcept; - virtual ~Hypertext() noexcept; + ~Hypertext() noexcept override; static void add_interface(GType gtype_implementer); @@ -166,6 +165,8 @@ * @par Slot Prototype: * void on_my_%link_selected(int link_index) * + * Flags: Run Last + * * The "link-selected" signal is emitted by an AtkHyperText * object when one of the hyperlinks associated with the object * is selected. @@ -173,7 +174,7 @@ * @param link_index The index of the hyperlink which is selected. */ - Glib::SignalProxy1< void,int > signal_link_selected(); + Glib::SignalProxy< void,int > signal_link_selected(); virtual Glib::RefPtr get_link_vfunc(int link_index); @@ -204,7 +205,7 @@ namespace Glib { /** A Glib::wrap() method for this object. - * + * * @param object The C instance. * @param take_copy False if the result should take ownership of the C instance. True if it should take a new copy or ref. * @result A C++ instance that wraps this C instance. diff -Nru atkmm1.6-2.24.2/atk/atkmm/image.cc atkmm1.6-2.28.0/atk/atkmm/image.cc --- atkmm1.6-2.24.2/atk/atkmm/image.cc 2015-11-29 20:04:56.162822404 +0000 +++ atkmm1.6-2.28.0/atk/atkmm/image.cc 2018-05-06 10:59:34.885465443 +0000 @@ -1,4 +1,4 @@ -// Generated by gmmproc 2.47.3.1 -- DO NOT MODIFY! +// Generated by gmmproc 2.56.0 -- DO NOT MODIFY! #include @@ -75,7 +75,7 @@ //This is just to avoid an "unused variable" warning when there are no vfuncs or signal handlers to connect. //This is a temporary fix until I find out why I can not seem to derive a GtkFileChooser interface. murrayc - g_assert(klass != nullptr); + g_assert(klass != nullptr); klass->set_image_description = &set_image_description_vfunc_callback; klass->get_image_description = &get_image_description_vfunc_callback; @@ -119,12 +119,9 @@ // Call the original underlying C function: if(base && base->set_image_description) - { - gboolean retval = (*base->set_image_description)(self, description); - return retval; - } + return (*base->set_image_description)(self, description); - typedef gboolean RType; + using RType = gboolean; return RType(); } const gchar* Image_Class::get_image_description_vfunc_callback(AtkImage* self) @@ -161,12 +158,9 @@ // Call the original underlying C function: if(base && base->get_image_description) - { - const gchar* retval = (*base->get_image_description)(self); - return retval; - } + return (*base->get_image_description)(self); - typedef const gchar* RType; + using RType = const gchar*; return RType(); } void Image_Class::get_image_position_vfunc_callback(AtkImage* self, gint* x, gint* y, AtkCoordType coord_type) @@ -207,10 +201,7 @@ // Call the original underlying C function: if(base && base->get_image_position) - { (*base->get_image_position)(self, x, y, coord_type); - } - } void Image_Class::get_image_size_vfunc_callback(AtkImage* self, gint* width, gint* height) { @@ -249,10 +240,7 @@ // Call the original underlying C function: if(base && base->get_image_size) - { (*base->get_image_size)(self, width, height); - } - } @@ -346,7 +334,7 @@ return retval; } - typedef bool RType; + using RType = bool; return RType(); } const char* Atk::Image::get_image_description_vfunc() const @@ -362,7 +350,7 @@ return retval; } - typedef const char* RType; + using RType = const char*; return RType(); } void Atk::Image::get_image_position_vfunc(int& x, int& y, CoordType coord_type) const diff -Nru atkmm1.6-2.24.2/atk/atkmm/image.h atkmm1.6-2.28.0/atk/atkmm/image.h --- atkmm1.6-2.24.2/atk/atkmm/image.h 2015-11-29 20:04:56.154823408 +0000 +++ atkmm1.6-2.28.0/atk/atkmm/image.h 2018-05-06 10:59:34.853463907 +0000 @@ -1,5 +1,4 @@ -// -*- c++ -*- -// Generated by gmmproc 2.47.3.1 -- DO NOT MODIFY! +// Generated by gmmproc 2.56.0 -- DO NOT MODIFY! #ifndef _ATKMM_IMAGE_H #define _ATKMM_IMAGE_H @@ -39,8 +38,8 @@ #ifndef DOXYGEN_SHOULD_SKIP_THIS -typedef struct _AtkImage AtkImage; -typedef struct _AtkImageClass AtkImageClass; +using AtkImage = struct _AtkImage; +using AtkImageClass = struct _AtkImageClass; #endif /* DOXYGEN_SHOULD_SKIP_THIS */ @@ -68,10 +67,10 @@ #ifndef DOXYGEN_SHOULD_SKIP_THIS public: - typedef Image CppObjectType; - typedef Image_Class CppClassType; - typedef AtkImage BaseObjectType; - typedef AtkImageIface BaseClassType; + using CppObjectType = Image; + using CppClassType = Image_Class; + using BaseObjectType = AtkImage; + using BaseClassType = AtkImageIface; // noncopyable Image(const Image&) = delete; @@ -89,10 +88,10 @@ Image(); #ifndef DOXYGEN_SHOULD_SKIP_THIS - /** Called by constructors of derived classes. Provide the result of - * the Class init() function to ensure that it is properly + /** Called by constructors of derived classes. Provide the result of + * the Class init() function to ensure that it is properly * initialized. - * + * * @param interface_class The Class object for the derived type. */ explicit Image(const Glib::Interface_Class& interface_class); @@ -100,7 +99,7 @@ public: // This is public so that C++ wrapper instances can be // created for C instances of unwrapped types. - // For instance, if an unexpected C type implements the C interface. + // For instance, if an unexpected C type implements the C interface. explicit Image(AtkImage* castitem); protected: @@ -111,7 +110,7 @@ Image(Image&& src) noexcept; Image& operator=(Image&& src) noexcept; - virtual ~Image() noexcept; + ~Image() noexcept override; static void add_interface(GType gtype_implementer); @@ -200,7 +199,7 @@ namespace Glib { /** A Glib::wrap() method for this object. - * + * * @param object The C instance. * @param take_copy False if the result should take ownership of the C instance. True if it should take a new copy or ref. * @result A C++ instance that wraps this C instance. diff -Nru atkmm1.6-2.24.2/atk/atkmm/implementor.cc atkmm1.6-2.28.0/atk/atkmm/implementor.cc --- atkmm1.6-2.24.2/atk/atkmm/implementor.cc 2015-11-29 20:04:56.322802341 +0000 +++ atkmm1.6-2.28.0/atk/atkmm/implementor.cc 2018-05-06 10:59:34.893465828 +0000 @@ -1,4 +1,4 @@ -// Generated by gmmproc 2.47.3.1 -- DO NOT MODIFY! +// Generated by gmmproc 2.56.0 -- DO NOT MODIFY! #include @@ -75,7 +75,7 @@ //This is just to avoid an "unused variable" warning when there are no vfuncs or signal handlers to connect. //This is a temporary fix until I find out why I can not seem to derive a GtkFileChooser interface. murrayc - g_assert(klass != nullptr); + g_assert(klass != nullptr); klass->ref_accessible = &ref_accessible_vfunc_callback; @@ -115,12 +115,9 @@ // Call the original underlying C function: if(base && base->ref_accessible) - { - AtkObject* retval = (*base->ref_accessible)(self); - return retval; - } + return (*base->ref_accessible)(self); - typedef AtkObject* RType; + using RType = AtkObject*; return RType(); } @@ -194,7 +191,7 @@ return retval; } - typedef Glib::RefPtr RType; + using RType = Glib::RefPtr; return RType(); } diff -Nru atkmm1.6-2.24.2/atk/atkmm/implementor.h atkmm1.6-2.28.0/atk/atkmm/implementor.h --- atkmm1.6-2.24.2/atk/atkmm/implementor.h 2015-11-29 20:04:56.318802843 +0000 +++ atkmm1.6-2.28.0/atk/atkmm/implementor.h 2018-05-06 10:59:34.861464291 +0000 @@ -1,5 +1,4 @@ -// -*- c++ -*- -// Generated by gmmproc 2.47.3.1 -- DO NOT MODIFY! +// Generated by gmmproc 2.56.0 -- DO NOT MODIFY! #ifndef _ATKMM_IMPLEMENTOR_H #define _ATKMM_IMPLEMENTOR_H @@ -39,8 +38,8 @@ #ifndef DOXYGEN_SHOULD_SKIP_THIS -typedef struct _AtkImplementor AtkImplementor; -typedef struct _AtkImplementorClass AtkImplementorClass; +using AtkImplementor = struct _AtkImplementor; +using AtkImplementorClass = struct _AtkImplementorClass; #endif /* DOXYGEN_SHOULD_SKIP_THIS */ @@ -59,10 +58,10 @@ #ifndef DOXYGEN_SHOULD_SKIP_THIS public: - typedef Implementor CppObjectType; - typedef Implementor_Class CppClassType; - typedef AtkImplementor BaseObjectType; - typedef AtkImplementorIface BaseClassType; + using CppObjectType = Implementor; + using CppClassType = Implementor_Class; + using BaseObjectType = AtkImplementor; + using BaseClassType = AtkImplementorIface; // noncopyable Implementor(const Implementor&) = delete; @@ -80,10 +79,10 @@ Implementor(); #ifndef DOXYGEN_SHOULD_SKIP_THIS - /** Called by constructors of derived classes. Provide the result of - * the Class init() function to ensure that it is properly + /** Called by constructors of derived classes. Provide the result of + * the Class init() function to ensure that it is properly * initialized. - * + * * @param interface_class The Class object for the derived type. */ explicit Implementor(const Glib::Interface_Class& interface_class); @@ -91,7 +90,7 @@ public: // This is public so that C++ wrapper instances can be // created for C instances of unwrapped types. - // For instance, if an unexpected C type implements the C interface. + // For instance, if an unexpected C type implements the C interface. explicit Implementor(AtkImplementor* castitem); protected: @@ -102,7 +101,7 @@ Implementor(Implementor&& src) noexcept; Implementor& operator=(Implementor&& src) noexcept; - virtual ~Implementor() noexcept; + ~Implementor() noexcept override; static void add_interface(GType gtype_implementer); @@ -146,7 +145,7 @@ namespace Glib { /** A Glib::wrap() method for this object. - * + * * @param object The C instance. * @param take_copy False if the result should take ownership of the C instance. True if it should take a new copy or ref. * @result A C++ instance that wraps this C instance. diff -Nru atkmm1.6-2.24.2/atk/atkmm/Makefile.am atkmm1.6-2.28.0/atk/atkmm/Makefile.am --- atkmm1.6-2.24.2/atk/atkmm/Makefile.am 2014-12-09 08:04:03.789553873 +0000 +++ atkmm1.6-2.28.0/atk/atkmm/Makefile.am 2018-10-31 17:51:16.669585909 +0000 @@ -18,7 +18,8 @@ lib_LTLIBRARIES = libatkmm-@ATKMM_API_VERSION@.la include $(srcdir)/../src/filelist.am -include $(srcdir)/filelist.am +include $(srcdir)/filelist.gmake.am + files_built_cc = $(atkmm_files_built_cc) files_built_h = $(atkmm_files_built_h) diff -Nru atkmm1.6-2.24.2/atk/atkmm/Makefile.in atkmm1.6-2.28.0/atk/atkmm/Makefile.in --- atkmm1.6-2.24.2/atk/atkmm/Makefile.in 2015-11-29 20:04:51.279436669 +0000 +++ atkmm1.6-2.28.0/atk/atkmm/Makefile.in 2018-11-04 11:44:50.695546023 +0000 @@ -1,7 +1,7 @@ -# Makefile.in generated by automake 1.15 from Makefile.am. +# Makefile.in generated by automake 1.16.1 from Makefile.am. # @configure_input@ -# Copyright (C) 1994-2014 Free Software Foundation, Inc. +# Copyright (C) 1994-2018 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -173,7 +173,18 @@ am__v_at_1 = DEFAULT_INCLUDES = depcomp = $(SHELL) $(top_srcdir)/build/depcomp -am__depfiles_maybe = depfiles +am__maybe_remake_depfiles = depfiles +am__depfiles_remade = ./$(DEPDIR)/action.Plo ./$(DEPDIR)/component.Plo \ + ./$(DEPDIR)/document.Plo ./$(DEPDIR)/editabletext.Plo \ + ./$(DEPDIR)/hyperlink.Plo ./$(DEPDIR)/hypertext.Plo \ + ./$(DEPDIR)/image.Plo ./$(DEPDIR)/implementor.Plo \ + ./$(DEPDIR)/init.Plo ./$(DEPDIR)/noopobject.Plo \ + ./$(DEPDIR)/object.Plo ./$(DEPDIR)/objectaccessible.Plo \ + ./$(DEPDIR)/range.Plo ./$(DEPDIR)/relation.Plo \ + ./$(DEPDIR)/relationset.Plo ./$(DEPDIR)/selection.Plo \ + ./$(DEPDIR)/stateset.Plo ./$(DEPDIR)/streamablecontent.Plo \ + ./$(DEPDIR)/table.Plo ./$(DEPDIR)/text.Plo \ + ./$(DEPDIR)/value.Plo ./$(DEPDIR)/wrap_init.Plo am__mv = mv -f CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) @@ -221,7 +232,9 @@ ETAGS = etags CTAGS = ctags am__DIST_COMMON = $(srcdir)/../src/filelist.am $(srcdir)/Makefile.in \ - $(srcdir)/filelist.am $(top_srcdir)/build/compile-binding.am \ + $(srcdir)/filelist.gmake.am \ + $(top_srcdir)/atk/atkmm/filelist.am \ + $(top_srcdir)/build/compile-binding.am \ $(top_srcdir)/build/depcomp DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ @@ -287,6 +300,7 @@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ +LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ MAINT = @MAINT@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ @@ -362,6 +376,7 @@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ +runstatedir = @runstatedir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ @@ -405,10 +420,12 @@ atkmm_files_ccg = $(atkmm_files_hg:.hg=.ccg) atkmm_files_built_cc = $(atkmm_files_hg:.hg=.cc) wrap_init.cc atkmm_files_built_h = $(atkmm_files_hg:.hg=.h) -atkmm_files_built_ph = $(patsubst %.hg,private/%_p.h,$(atkmm_files_hg)) atkmm_files_extra_cc = init.cc atkmm_files_extra_h = init.h wrap_init.h atkmm_files_extra_ph = + +# Split out from $(srcdir)/filelist.am +atkmm_files_built_ph = $(patsubst %.hg,private/%_p.h,$(atkmm_files_hg)) files_built_cc = $(atkmm_files_built_cc) files_built_h = $(atkmm_files_built_h) files_built_ph = $(atkmm_files_built_ph) @@ -447,7 +464,7 @@ .SUFFIXES: .SUFFIXES: .cc .lo .o .obj -$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(srcdir)/../src/filelist.am $(srcdir)/filelist.am $(top_srcdir)/build/compile-binding.am $(am__configure_deps) +$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(srcdir)/../src/filelist.am $(srcdir)/filelist.gmake.am $(top_srcdir)/atk/atkmm/filelist.am $(top_srcdir)/build/compile-binding.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ @@ -464,10 +481,10 @@ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ - echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \ esac; -$(srcdir)/../src/filelist.am $(srcdir)/filelist.am $(top_srcdir)/build/compile-binding.am $(am__empty): +$(srcdir)/../src/filelist.am $(srcdir)/filelist.gmake.am $(top_srcdir)/atk/atkmm/filelist.am $(top_srcdir)/build/compile-binding.am $(am__empty): $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh @@ -522,28 +539,34 @@ distclean-compile: -rm -f *.tab.c -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/action.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/component.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/document.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/editabletext.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/hyperlink.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/hypertext.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/image.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/implementor.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/init.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/noopobject.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/object.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/objectaccessible.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/range.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/relation.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/relationset.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/selection.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/stateset.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/streamablecontent.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/table.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/text.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/value.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/wrap_init.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/action.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/component.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/document.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/editabletext.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/hyperlink.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/hypertext.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/image.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/implementor.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/init.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/noopobject.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/object.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/objectaccessible.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/range.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/relation.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/relationset.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/selection.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/stateset.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/streamablecontent.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/table.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/text.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/value.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/wrap_init.Plo@am__quote@ # am--include-marker + +$(am__depfiles_remade): + @$(MKDIR_P) $(@D) + @echo '# dummy' >$@-t && $(am__mv) $@-t $@ + +am--depfiles: $(am__depfiles_remade) .cc.o: @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< @@ -666,7 +689,10 @@ distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags -distdir: $(DISTFILES) +distdir: $(BUILT_SOURCES) + $(MAKE) $(AM_MAKEFLAGS) distdir-am + +distdir-am: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ @@ -740,7 +766,28 @@ mostlyclean-am distclean: distclean-am - -rm -rf ./$(DEPDIR) + -rm -f ./$(DEPDIR)/action.Plo + -rm -f ./$(DEPDIR)/component.Plo + -rm -f ./$(DEPDIR)/document.Plo + -rm -f ./$(DEPDIR)/editabletext.Plo + -rm -f ./$(DEPDIR)/hyperlink.Plo + -rm -f ./$(DEPDIR)/hypertext.Plo + -rm -f ./$(DEPDIR)/image.Plo + -rm -f ./$(DEPDIR)/implementor.Plo + -rm -f ./$(DEPDIR)/init.Plo + -rm -f ./$(DEPDIR)/noopobject.Plo + -rm -f ./$(DEPDIR)/object.Plo + -rm -f ./$(DEPDIR)/objectaccessible.Plo + -rm -f ./$(DEPDIR)/range.Plo + -rm -f ./$(DEPDIR)/relation.Plo + -rm -f ./$(DEPDIR)/relationset.Plo + -rm -f ./$(DEPDIR)/selection.Plo + -rm -f ./$(DEPDIR)/stateset.Plo + -rm -f ./$(DEPDIR)/streamablecontent.Plo + -rm -f ./$(DEPDIR)/table.Plo + -rm -f ./$(DEPDIR)/text.Plo + -rm -f ./$(DEPDIR)/value.Plo + -rm -f ./$(DEPDIR)/wrap_init.Plo -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-tags @@ -787,7 +834,28 @@ installcheck-am: maintainer-clean: maintainer-clean-am - -rm -rf ./$(DEPDIR) + -rm -f ./$(DEPDIR)/action.Plo + -rm -f ./$(DEPDIR)/component.Plo + -rm -f ./$(DEPDIR)/document.Plo + -rm -f ./$(DEPDIR)/editabletext.Plo + -rm -f ./$(DEPDIR)/hyperlink.Plo + -rm -f ./$(DEPDIR)/hypertext.Plo + -rm -f ./$(DEPDIR)/image.Plo + -rm -f ./$(DEPDIR)/implementor.Plo + -rm -f ./$(DEPDIR)/init.Plo + -rm -f ./$(DEPDIR)/noopobject.Plo + -rm -f ./$(DEPDIR)/object.Plo + -rm -f ./$(DEPDIR)/objectaccessible.Plo + -rm -f ./$(DEPDIR)/range.Plo + -rm -f ./$(DEPDIR)/relation.Plo + -rm -f ./$(DEPDIR)/relationset.Plo + -rm -f ./$(DEPDIR)/selection.Plo + -rm -f ./$(DEPDIR)/stateset.Plo + -rm -f ./$(DEPDIR)/streamablecontent.Plo + -rm -f ./$(DEPDIR)/table.Plo + -rm -f ./$(DEPDIR)/text.Plo + -rm -f ./$(DEPDIR)/value.Plo + -rm -f ./$(DEPDIR)/wrap_init.Plo -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic @@ -809,9 +877,9 @@ .MAKE: install-am install-strip -.PHONY: CTAGS GTAGS TAGS all all-am check check-am clean clean-generic \ - clean-libLTLIBRARIES clean-libtool cscopelist-am ctags \ - ctags-am distclean distclean-compile distclean-generic \ +.PHONY: CTAGS GTAGS TAGS all all-am am--depfiles check check-am clean \ + clean-generic clean-libLTLIBRARIES clean-libtool cscopelist-am \ + ctags ctags-am distclean distclean-compile distclean-generic \ distclean-libtool distclean-tags distdir dvi dvi-am html \ html-am info info-am install install-am \ install-binding_includeHEADERS install-binding_privateHEADERS \ diff -Nru atkmm1.6-2.24.2/atk/atkmm/noopobject.cc atkmm1.6-2.28.0/atk/atkmm/noopobject.cc --- atkmm1.6-2.24.2/atk/atkmm/noopobject.cc 2015-11-29 20:04:56.466784284 +0000 +++ atkmm1.6-2.28.0/atk/atkmm/noopobject.cc 2018-05-06 10:59:35.217481382 +0000 @@ -1,4 +1,4 @@ -// Generated by gmmproc 2.47.3.1 -- DO NOT MODIFY! +// Generated by gmmproc 2.56.0 -- DO NOT MODIFY! #include @@ -148,6 +148,7 @@ return *this; } + NoOpObject::~NoOpObject() noexcept {} diff -Nru atkmm1.6-2.24.2/atk/atkmm/noopobject.h atkmm1.6-2.28.0/atk/atkmm/noopobject.h --- atkmm1.6-2.24.2/atk/atkmm/noopobject.h 2015-11-29 20:04:56.462784786 +0000 +++ atkmm1.6-2.28.0/atk/atkmm/noopobject.h 2018-05-06 10:59:35.097475621 +0000 @@ -1,5 +1,4 @@ -// -*- c++ -*- -// Generated by gmmproc 2.47.3.1 -- DO NOT MODIFY! +// Generated by gmmproc 2.56.0 -- DO NOT MODIFY! #ifndef _ATKMM_NOOPOBJECT_H #define _ATKMM_NOOPOBJECT_H @@ -38,8 +37,8 @@ #ifndef DOXYGEN_SHOULD_SKIP_THIS -typedef struct _AtkNoOpObject AtkNoOpObject; -typedef struct _AtkNoOpObjectClass AtkNoOpObjectClass; +using AtkNoOpObject = struct _AtkNoOpObject; +using AtkNoOpObjectClass = struct _AtkNoOpObjectClass; #endif /* DOXYGEN_SHOULD_SKIP_THIS */ @@ -73,10 +72,10 @@ #ifndef DOXYGEN_SHOULD_SKIP_THIS public: - typedef NoOpObject CppObjectType; - typedef NoOpObject_Class CppClassType; - typedef AtkNoOpObject BaseObjectType; - typedef AtkNoOpObjectClass BaseClassType; + using CppObjectType = NoOpObject; + using CppClassType = NoOpObject_Class; + using BaseObjectType = AtkNoOpObject; + using BaseClassType = AtkNoOpObjectClass; // noncopyable NoOpObject(const NoOpObject&) = delete; @@ -96,7 +95,7 @@ NoOpObject(NoOpObject&& src) noexcept; NoOpObject& operator=(NoOpObject&& src) noexcept; - virtual ~NoOpObject() noexcept; + ~NoOpObject() noexcept override; /** Get the GType for this class, for use with the underlying GObject type system. */ @@ -144,7 +143,7 @@ namespace Glib { /** A Glib::wrap() method for this object. - * + * * @param object The C instance. * @param take_copy False if the result should take ownership of the C instance. True if it should take a new copy or ref. * @result A C++ instance that wraps this C instance. diff -Nru atkmm1.6-2.24.2/atk/atkmm/objectaccessible.cc atkmm1.6-2.28.0/atk/atkmm/objectaccessible.cc --- atkmm1.6-2.24.2/atk/atkmm/objectaccessible.cc 2015-11-29 20:04:56.782744660 +0000 +++ atkmm1.6-2.28.0/atk/atkmm/objectaccessible.cc 2018-05-06 10:59:35.625500969 +0000 @@ -1,4 +1,4 @@ -// Generated by gmmproc 2.47.3.1 -- DO NOT MODIFY! +// Generated by gmmproc 2.56.0 -- DO NOT MODIFY! #include @@ -121,6 +121,7 @@ return *this; } + ObjectAccessible::~ObjectAccessible() noexcept {} diff -Nru atkmm1.6-2.24.2/atk/atkmm/objectaccessible.h atkmm1.6-2.28.0/atk/atkmm/objectaccessible.h --- atkmm1.6-2.24.2/atk/atkmm/objectaccessible.h 2015-11-29 20:04:56.774745663 +0000 +++ atkmm1.6-2.28.0/atk/atkmm/objectaccessible.h 2018-05-06 10:59:35.541496935 +0000 @@ -1,5 +1,4 @@ -// -*- c++ -*- -// Generated by gmmproc 2.47.3.1 -- DO NOT MODIFY! +// Generated by gmmproc 2.56.0 -- DO NOT MODIFY! #ifndef _ATKMM_OBJECTACCESSIBLE_H #define _ATKMM_OBJECTACCESSIBLE_H @@ -30,8 +29,8 @@ #ifndef DOXYGEN_SHOULD_SKIP_THIS -typedef struct _AtkGObjectAccessible AtkGObjectAccessible; -typedef struct _AtkGObjectAccessibleClass AtkGObjectAccessibleClass; +using AtkGObjectAccessible = struct _AtkGObjectAccessible; +using AtkGObjectAccessibleClass = struct _AtkGObjectAccessibleClass; #endif /* DOXYGEN_SHOULD_SKIP_THIS */ @@ -54,10 +53,10 @@ #ifndef DOXYGEN_SHOULD_SKIP_THIS public: - typedef ObjectAccessible CppObjectType; - typedef ObjectAccessible_Class CppClassType; - typedef AtkGObjectAccessible BaseObjectType; - typedef AtkGObjectAccessibleClass BaseClassType; + using CppObjectType = ObjectAccessible; + using CppClassType = ObjectAccessible_Class; + using BaseObjectType = AtkGObjectAccessible; + using BaseClassType = AtkGObjectAccessibleClass; // noncopyable ObjectAccessible(const ObjectAccessible&) = delete; @@ -77,7 +76,7 @@ ObjectAccessible(ObjectAccessible&& src) noexcept; ObjectAccessible& operator=(ObjectAccessible&& src) noexcept; - virtual ~ObjectAccessible() noexcept; + ~ObjectAccessible() noexcept override; /** Get the GType for this class, for use with the underlying GObject type system. */ @@ -154,7 +153,7 @@ namespace Glib { /** A Glib::wrap() method for this object. - * + * * @param object The C instance. * @param take_copy False if the result should take ownership of the C instance. True if it should take a new copy or ref. * @result A C++ instance that wraps this C instance. diff -Nru atkmm1.6-2.24.2/atk/atkmm/object.cc atkmm1.6-2.28.0/atk/atkmm/object.cc --- atkmm1.6-2.24.2/atk/atkmm/object.cc 2015-11-29 20:04:56.630763719 +0000 +++ atkmm1.6-2.28.0/atk/atkmm/object.cc 2018-05-06 10:59:35.589499240 +0000 @@ -1,4 +1,4 @@ -// Generated by gmmproc 2.47.3.1 -- DO NOT MODIFY! +// Generated by gmmproc 2.56.0 -- DO NOT MODIFY! #include @@ -77,7 +77,7 @@ static void Object_signal_children_changed_callback(AtkObject* self, guint p0,gpointer p1,void* data) { using namespace Atk; - typedef sigc::slot< void,guint,gpointer > SlotType; + using SlotType = sigc::slot< void,guint,gpointer >; auto obj = dynamic_cast(Glib::ObjectBase::_get_current_wrapper((GObject*) self)); // Do not try to call a signal on a disassociated wrapper. @@ -106,7 +106,7 @@ static void Object_signal_focus_event_callback(AtkObject* self, gboolean p0,void* data) { using namespace Atk; - typedef sigc::slot< void,bool > SlotType; + using SlotType = sigc::slot< void,bool >; auto obj = dynamic_cast(Glib::ObjectBase::_get_current_wrapper((GObject*) self)); // Do not try to call a signal on a disassociated wrapper. @@ -136,7 +136,7 @@ static void Object_signal_property_change_callback(AtkObject* self, AtkPropertyValues* p0,void* data) { using namespace Atk; - typedef sigc::slot< void,AtkPropertyValues* > SlotType; + using SlotType = sigc::slot< void,AtkPropertyValues* >; auto obj = dynamic_cast(Glib::ObjectBase::_get_current_wrapper((GObject*) self)); // Do not try to call a signal on a disassociated wrapper. @@ -165,7 +165,7 @@ static void Object_signal_state_change_callback(AtkObject* self, const gchar* p0,gboolean p1,void* data) { using namespace Atk; - typedef sigc::slot< void,const Glib::ustring&,bool > SlotType; + using SlotType = sigc::slot< void,const Glib::ustring&,bool >; auto obj = dynamic_cast(Glib::ObjectBase::_get_current_wrapper((GObject*) self)); // Do not try to call a signal on a disassociated wrapper. @@ -204,7 +204,7 @@ static void Object_signal_active_descendant_changed_callback(AtkObject* self, gpointer* p0,void* data) { using namespace Atk; - typedef sigc::slot< void,void** > SlotType; + using SlotType = sigc::slot< void,void** >; auto obj = dynamic_cast(Glib::ObjectBase::_get_current_wrapper((GObject*) self)); // Do not try to call a signal on a disassociated wrapper. @@ -548,6 +548,7 @@ return *this; } + Object::~Object() noexcept {} @@ -653,39 +654,39 @@ } -Glib::SignalProxy2< void,guint,gpointer > Object::signal_children_changed() +Glib::SignalProxy< void,guint,gpointer > Object::signal_children_changed() { - return Glib::SignalProxy2< void,guint,gpointer >(this, &Object_signal_children_changed_info); + return Glib::SignalProxy< void,guint,gpointer >(this, &Object_signal_children_changed_info); } -Glib::SignalProxy1< void,bool > Object::signal_focus_event() +Glib::SignalProxy< void,bool > Object::signal_focus_event() { - return Glib::SignalProxy1< void,bool >(this, &Object_signal_focus_event_info); + return Glib::SignalProxy< void,bool >(this, &Object_signal_focus_event_info); } -Glib::SignalProxy1< void,AtkPropertyValues* > Object::signal_property_change() +Glib::SignalProxy< void,AtkPropertyValues* > Object::signal_property_change() { - return Glib::SignalProxy1< void,AtkPropertyValues* >(this, &Object_signal_property_change_info); + return Glib::SignalProxy< void,AtkPropertyValues* >(this, &Object_signal_property_change_info); } -Glib::SignalProxy2< void,const Glib::ustring&,bool > Object::signal_state_change() +Glib::SignalProxy< void,const Glib::ustring&,bool > Object::signal_state_change() { - return Glib::SignalProxy2< void,const Glib::ustring&,bool >(this, &Object_signal_state_change_info); + return Glib::SignalProxy< void,const Glib::ustring&,bool >(this, &Object_signal_state_change_info); } -Glib::SignalProxy0< void > Object::signal_visible_data_changed() +Glib::SignalProxy< void > Object::signal_visible_data_changed() { - return Glib::SignalProxy0< void >(this, &Object_signal_visible_data_changed_info); + return Glib::SignalProxy< void >(this, &Object_signal_visible_data_changed_info); } -Glib::SignalProxy1< void,void** > Object::signal_active_descendant_changed() +Glib::SignalProxy< void,void** > Object::signal_active_descendant_changed() { - return Glib::SignalProxy1< void,void** >(this, &Object_signal_active_descendant_changed_info); + return Glib::SignalProxy< void,void** >(this, &Object_signal_active_descendant_changed_info); } diff -Nru atkmm1.6-2.24.2/atk/atkmm/object.h atkmm1.6-2.28.0/atk/atkmm/object.h --- atkmm1.6-2.24.2/atk/atkmm/object.h 2015-11-29 20:04:56.626764221 +0000 +++ atkmm1.6-2.28.0/atk/atkmm/object.h 2018-05-06 10:59:35.461493096 +0000 @@ -1,5 +1,4 @@ -// -*- c++ -*- -// Generated by gmmproc 2.47.3.1 -- DO NOT MODIFY! +// Generated by gmmproc 2.56.0 -- DO NOT MODIFY! #ifndef _ATKMM_OBJECT_H #define _ATKMM_OBJECT_H @@ -37,8 +36,8 @@ #ifndef DOXYGEN_SHOULD_SKIP_THIS -typedef struct _AtkObject AtkObject; -typedef struct _AtkObjectClass AtkObjectClass; +using AtkObject = struct _AtkObject; +using AtkObjectClass = struct _AtkObjectClass; #endif /* DOXYGEN_SHOULD_SKIP_THIS */ @@ -186,7 +185,6 @@ } // namespace Atk - #ifndef DOXYGEN_SHOULD_SKIP_THIS namespace Glib { @@ -201,7 +199,6 @@ } // namespace Glib #endif /* DOXYGEN_SHOULD_SKIP_THIS */ - namespace Atk { @@ -231,10 +228,10 @@ #ifndef DOXYGEN_SHOULD_SKIP_THIS public: - typedef Object CppObjectType; - typedef Object_Class CppClassType; - typedef AtkObject BaseObjectType; - typedef AtkObjectClass BaseClassType; + using CppObjectType = Object; + using CppClassType = Object_Class; + using BaseObjectType = AtkObject; + using BaseClassType = AtkObjectClass; // noncopyable Object(const Object&) = delete; @@ -254,7 +251,7 @@ Object(Object&& src) noexcept; Object& operator=(Object&& src) noexcept; - virtual ~Object() noexcept; + ~Object() noexcept override; /** Get the GType for this class, for use with the underlying GObject type system. */ @@ -418,6 +415,8 @@ * @par Slot Prototype: * void on_my_%children_changed(guint change_index, gpointer changed_child) * + * Flags: Run Last + * * The signal "children-changed" is emitted when a child is added or * removed form an object. It supports two details: "add" and * "remove" @@ -431,13 +430,15 @@ * nullptr. */ - Glib::SignalProxy2< void,guint,gpointer > signal_children_changed(); + Glib::SignalProxy< void,guint,gpointer > signal_children_changed(); /** * @par Slot Prototype: * void on_my_%focus_event(bool focus_in) * + * Flags: Run Last + * * The signal "focus-event" is emitted when an object gained or lost * focus. * @@ -447,13 +448,15 @@ * or lost focus. */ - Glib::SignalProxy1< void,bool > signal_focus_event(); + Glib::SignalProxy< void,bool > signal_focus_event(); /** * @par Slot Prototype: * void on_my_%property_change(AtkPropertyValues* values) * + * Flags: Run Last + * * The signal "property-change" is emitted when an object's property * value changes. @a values contains an Atk::PropertyValues with the name * and the new value of the property whose value has changed. Note @@ -472,13 +475,15 @@ * property which changed. */ - Glib::SignalProxy1< void,AtkPropertyValues* > signal_property_change(); + Glib::SignalProxy< void,AtkPropertyValues* > signal_property_change(); /** * @par Slot Prototype: * void on_my_%state_change(const Glib::ustring& name, bool state_set) * + * Flags: Run Last + * * The "state-change" signal is emitted when an object's state * changes. The detail value identifies the state type which has * changed. @@ -487,24 +492,28 @@ * @param state_set A boolean which indicates whether the state has been set or unset. */ - Glib::SignalProxy2< void,const Glib::ustring&,bool > signal_state_change(); + Glib::SignalProxy< void,const Glib::ustring&,bool > signal_state_change(); /** * @par Slot Prototype: * void on_my_%visible_data_changed() * + * Flags: Run Last + * * The "visible-data-changed" signal is emitted when the visual * appearance of the object changed. */ - Glib::SignalProxy0< void > signal_visible_data_changed(); + Glib::SignalProxy< void > signal_visible_data_changed(); /** * @par Slot Prototype: * void on_my_%active_descendant_changed(void** child) * + * Flags: Run Last + * * The "active-descendant-changed" signal is emitted by an object * which has the state ATK_STATE_MANAGES_DESCENDANTS when the focus * object in the object changes. For instance, a table will emit the @@ -513,7 +522,7 @@ * @param child The newly focused object. */ - Glib::SignalProxy1< void,void** > signal_active_descendant_changed(); + Glib::SignalProxy< void,void** > signal_active_descendant_changed(); /** Object instance's name formatted for assistive technology access. @@ -544,14 +553,14 @@ */ Glib::PropertyProxy_ReadOnly< Glib::ustring > property_accessible_description() const; - /** Parent of the current accessible as returned by atk_object_get_parent(). + /** Parent of the current accessible as returned by Atk::Object::get_parent(). * * @return A PropertyProxy that allows you to get or set the value of the property, * or receive notification when the value of the property changes. */ Glib::PropertyProxy< Glib::RefPtr > property_accessible_parent() ; -/** Parent of the current accessible as returned by atk_object_get_parent(). +/** Parent of the current accessible as returned by Atk::Object::get_parent(). * * @return A PropertyProxy_ReadOnly that allows you to get the value of the property, * or receive notification when the value of the property changes. @@ -718,7 +727,7 @@ namespace Glib { /** A Glib::wrap() method for this object. - * + * * @param object The C instance. * @param take_copy False if the result should take ownership of the C instance. True if it should take a new copy or ref. * @result A C++ instance that wraps this C instance. diff -Nru atkmm1.6-2.24.2/atk/atkmm/private/action_p.h atkmm1.6-2.28.0/atk/atkmm/private/action_p.h --- atkmm1.6-2.24.2/atk/atkmm/private/action_p.h 2015-11-29 20:04:55.162947913 +0000 +++ atkmm1.6-2.28.0/atk/atkmm/private/action_p.h 2018-05-06 10:59:33.637405529 +0000 @@ -1,5 +1,4 @@ -// -*- c++ -*- -// Generated by gmmproc 2.47.3.1 -- DO NOT MODIFY! +// Generated by gmmproc 2.56.0 -- DO NOT MODIFY! #ifndef _ATKMM_ACTION_P_H #define _ATKMM_ACTION_P_H @@ -14,10 +13,10 @@ class Action_Class : public Glib::Interface_Class { public: - typedef Action CppObjectType; - typedef AtkAction BaseObjectType; - typedef AtkActionIface BaseClassType; - typedef Glib::Interface_Class CppClassParent; + using CppObjectType = Action; + using BaseObjectType = AtkAction; + using BaseClassType = AtkActionIface; + using CppClassParent = Glib::Interface_Class; friend class Action; diff -Nru atkmm1.6-2.24.2/atk/atkmm/private/component_p.h atkmm1.6-2.28.0/atk/atkmm/private/component_p.h --- atkmm1.6-2.24.2/atk/atkmm/private/component_p.h 2015-11-29 20:04:55.326927326 +0000 +++ atkmm1.6-2.28.0/atk/atkmm/private/component_p.h 2018-05-06 10:59:33.669407065 +0000 @@ -1,5 +1,4 @@ -// -*- c++ -*- -// Generated by gmmproc 2.47.3.1 -- DO NOT MODIFY! +// Generated by gmmproc 2.56.0 -- DO NOT MODIFY! #ifndef _ATKMM_COMPONENT_P_H #define _ATKMM_COMPONENT_P_H @@ -14,10 +13,10 @@ class Component_Class : public Glib::Interface_Class { public: - typedef Component CppObjectType; - typedef AtkComponent BaseObjectType; - typedef AtkComponentIface BaseClassType; - typedef Glib::Interface_Class CppClassParent; + using CppObjectType = Component; + using BaseObjectType = AtkComponent; + using BaseClassType = AtkComponentIface; + using CppClassParent = Glib::Interface_Class; friend class Component; diff -Nru atkmm1.6-2.24.2/atk/atkmm/private/document_p.h atkmm1.6-2.28.0/atk/atkmm/private/document_p.h --- atkmm1.6-2.24.2/atk/atkmm/private/document_p.h 2015-11-29 20:04:55.506904731 +0000 +++ atkmm1.6-2.28.0/atk/atkmm/private/document_p.h 2018-05-06 10:59:33.637405529 +0000 @@ -1,5 +1,4 @@ -// -*- c++ -*- -// Generated by gmmproc 2.47.3.1 -- DO NOT MODIFY! +// Generated by gmmproc 2.56.0 -- DO NOT MODIFY! #ifndef _ATKMM_DOCUMENT_P_H #define _ATKMM_DOCUMENT_P_H @@ -14,10 +13,10 @@ class Document_Class : public Glib::Interface_Class { public: - typedef Document CppObjectType; - typedef AtkDocument BaseObjectType; - typedef AtkDocumentIface BaseClassType; - typedef Glib::Interface_Class CppClassParent; + using CppObjectType = Document; + using BaseObjectType = AtkDocument; + using BaseClassType = AtkDocumentIface; + using CppClassParent = Glib::Interface_Class; friend class Document; diff -Nru atkmm1.6-2.24.2/atk/atkmm/private/editabletext_p.h atkmm1.6-2.28.0/atk/atkmm/private/editabletext_p.h --- atkmm1.6-2.24.2/atk/atkmm/private/editabletext_p.h 2015-11-29 20:04:55.678883140 +0000 +++ atkmm1.6-2.28.0/atk/atkmm/private/editabletext_p.h 2018-05-06 10:59:34.241434526 +0000 @@ -1,5 +1,4 @@ -// -*- c++ -*- -// Generated by gmmproc 2.47.3.1 -- DO NOT MODIFY! +// Generated by gmmproc 2.56.0 -- DO NOT MODIFY! #ifndef _ATKMM_EDITABLETEXT_P_H #define _ATKMM_EDITABLETEXT_P_H @@ -12,10 +11,10 @@ class EditableText_Class : public Glib::Interface_Class { public: - typedef EditableText CppObjectType; - typedef AtkEditableText BaseObjectType; - typedef AtkEditableTextIface BaseClassType; - typedef Glib::Interface_Class CppClassParent; + using CppObjectType = EditableText; + using BaseObjectType = AtkEditableText; + using BaseClassType = AtkEditableTextIface; + using CppClassParent = Glib::Interface_Class; friend class EditableText; diff -Nru atkmm1.6-2.24.2/atk/atkmm/private/hyperlink_p.h atkmm1.6-2.28.0/atk/atkmm/private/hyperlink_p.h --- atkmm1.6-2.24.2/atk/atkmm/private/hyperlink_p.h 2015-11-29 20:04:55.858860544 +0000 +++ atkmm1.6-2.28.0/atk/atkmm/private/hyperlink_p.h 2018-05-06 10:59:34.373440863 +0000 @@ -1,5 +1,4 @@ -// -*- c++ -*- -// Generated by gmmproc 2.47.3.1 -- DO NOT MODIFY! +// Generated by gmmproc 2.56.0 -- DO NOT MODIFY! #ifndef _ATKMM_HYPERLINK_P_H #define _ATKMM_HYPERLINK_P_H @@ -16,11 +15,11 @@ { public: #ifndef DOXYGEN_SHOULD_SKIP_THIS - typedef Hyperlink CppObjectType; - typedef AtkHyperlink BaseObjectType; - typedef AtkHyperlinkClass BaseClassType; - typedef Glib::Object_Class CppClassParent; - typedef GObjectClass BaseClassParent; + using CppObjectType = Hyperlink; + using BaseObjectType = AtkHyperlink; + using BaseClassType = AtkHyperlinkClass; + using CppClassParent = Glib::Object_Class; + using BaseClassParent = GObjectClass; friend class Hyperlink; #endif /* DOXYGEN_SHOULD_SKIP_THIS */ diff -Nru atkmm1.6-2.24.2/atk/atkmm/private/hypertext_p.h atkmm1.6-2.28.0/atk/atkmm/private/hypertext_p.h --- atkmm1.6-2.24.2/atk/atkmm/private/hypertext_p.h 2015-11-29 20:04:56.006841967 +0000 +++ atkmm1.6-2.28.0/atk/atkmm/private/hypertext_p.h 2018-05-06 10:59:34.377441055 +0000 @@ -1,5 +1,4 @@ -// -*- c++ -*- -// Generated by gmmproc 2.47.3.1 -- DO NOT MODIFY! +// Generated by gmmproc 2.56.0 -- DO NOT MODIFY! #ifndef _ATKMM_HYPERTEXT_P_H #define _ATKMM_HYPERTEXT_P_H @@ -14,10 +13,10 @@ class Hypertext_Class : public Glib::Interface_Class { public: - typedef Hypertext CppObjectType; - typedef AtkHypertext BaseObjectType; - typedef AtkHypertextIface BaseClassType; - typedef Glib::Interface_Class CppClassParent; + using CppObjectType = Hypertext; + using BaseObjectType = AtkHypertext; + using BaseClassType = AtkHypertextIface; + using CppClassParent = Glib::Interface_Class; friend class Hypertext; diff -Nru atkmm1.6-2.24.2/atk/atkmm/private/image_p.h atkmm1.6-2.28.0/atk/atkmm/private/image_p.h --- atkmm1.6-2.24.2/atk/atkmm/private/image_p.h 2015-11-29 20:04:56.158822906 +0000 +++ atkmm1.6-2.28.0/atk/atkmm/private/image_p.h 2018-05-06 10:59:34.869464675 +0000 @@ -1,5 +1,4 @@ -// -*- c++ -*- -// Generated by gmmproc 2.47.3.1 -- DO NOT MODIFY! +// Generated by gmmproc 2.56.0 -- DO NOT MODIFY! #ifndef _ATKMM_IMAGE_P_H #define _ATKMM_IMAGE_P_H @@ -14,10 +13,10 @@ class Image_Class : public Glib::Interface_Class { public: - typedef Image CppObjectType; - typedef AtkImage BaseObjectType; - typedef AtkImageIface BaseClassType; - typedef Glib::Interface_Class CppClassParent; + using CppObjectType = Image; + using BaseObjectType = AtkImage; + using BaseClassType = AtkImageIface; + using CppClassParent = Glib::Interface_Class; friend class Image; diff -Nru atkmm1.6-2.24.2/atk/atkmm/private/implementor_p.h atkmm1.6-2.28.0/atk/atkmm/private/implementor_p.h --- atkmm1.6-2.24.2/atk/atkmm/private/implementor_p.h 2015-11-29 20:04:56.322802341 +0000 +++ atkmm1.6-2.28.0/atk/atkmm/private/implementor_p.h 2018-05-06 10:59:34.877465059 +0000 @@ -1,5 +1,4 @@ -// -*- c++ -*- -// Generated by gmmproc 2.47.3.1 -- DO NOT MODIFY! +// Generated by gmmproc 2.56.0 -- DO NOT MODIFY! #ifndef _ATKMM_IMPLEMENTOR_P_H #define _ATKMM_IMPLEMENTOR_P_H @@ -12,10 +11,10 @@ class Implementor_Class : public Glib::Interface_Class { public: - typedef Implementor CppObjectType; - typedef AtkImplementor BaseObjectType; - typedef AtkImplementorIface BaseClassType; - typedef Glib::Interface_Class CppClassParent; + using CppObjectType = Implementor; + using BaseObjectType = AtkImplementor; + using BaseClassType = AtkImplementorIface; + using CppClassParent = Glib::Interface_Class; friend class Implementor; diff -Nru atkmm1.6-2.24.2/atk/atkmm/private/noopobject_p.h atkmm1.6-2.28.0/atk/atkmm/private/noopobject_p.h --- atkmm1.6-2.24.2/atk/atkmm/private/noopobject_p.h 2015-11-29 20:04:56.462784786 +0000 +++ atkmm1.6-2.28.0/atk/atkmm/private/noopobject_p.h 2018-05-06 10:59:35.161478693 +0000 @@ -1,5 +1,4 @@ -// -*- c++ -*- -// Generated by gmmproc 2.47.3.1 -- DO NOT MODIFY! +// Generated by gmmproc 2.56.0 -- DO NOT MODIFY! #ifndef _ATKMM_NOOPOBJECT_P_H #define _ATKMM_NOOPOBJECT_P_H @@ -15,11 +14,11 @@ { public: #ifndef DOXYGEN_SHOULD_SKIP_THIS - typedef NoOpObject CppObjectType; - typedef AtkNoOpObject BaseObjectType; - typedef AtkNoOpObjectClass BaseClassType; - typedef Atk::Object_Class CppClassParent; - typedef AtkObjectClass BaseClassParent; + using CppObjectType = NoOpObject; + using BaseObjectType = AtkNoOpObject; + using BaseClassType = AtkNoOpObjectClass; + using CppClassParent = Atk::Object_Class; + using BaseClassParent = AtkObjectClass; friend class NoOpObject; #endif /* DOXYGEN_SHOULD_SKIP_THIS */ diff -Nru atkmm1.6-2.24.2/atk/atkmm/private/objectaccessible_p.h atkmm1.6-2.28.0/atk/atkmm/private/objectaccessible_p.h --- atkmm1.6-2.24.2/atk/atkmm/private/objectaccessible_p.h 2015-11-29 20:04:56.778745161 +0000 +++ atkmm1.6-2.28.0/atk/atkmm/private/objectaccessible_p.h 2018-05-06 10:59:35.581498856 +0000 @@ -1,5 +1,4 @@ -// -*- c++ -*- -// Generated by gmmproc 2.47.3.1 -- DO NOT MODIFY! +// Generated by gmmproc 2.56.0 -- DO NOT MODIFY! #ifndef _ATKMM_OBJECTACCESSIBLE_P_H #define _ATKMM_OBJECTACCESSIBLE_P_H @@ -15,11 +14,11 @@ { public: #ifndef DOXYGEN_SHOULD_SKIP_THIS - typedef ObjectAccessible CppObjectType; - typedef AtkGObjectAccessible BaseObjectType; - typedef AtkGObjectAccessibleClass BaseClassType; - typedef Atk::Object_Class CppClassParent; - typedef AtkObjectClass BaseClassParent; + using CppObjectType = ObjectAccessible; + using BaseObjectType = AtkGObjectAccessible; + using BaseClassType = AtkGObjectAccessibleClass; + using CppClassParent = Atk::Object_Class; + using BaseClassParent = AtkObjectClass; friend class ObjectAccessible; #endif /* DOXYGEN_SHOULD_SKIP_THIS */ diff -Nru atkmm1.6-2.24.2/atk/atkmm/private/object_p.h atkmm1.6-2.28.0/atk/atkmm/private/object_p.h --- atkmm1.6-2.24.2/atk/atkmm/private/object_p.h 2015-11-29 20:04:56.630763719 +0000 +++ atkmm1.6-2.28.0/atk/atkmm/private/object_p.h 2018-05-06 10:59:35.537496744 +0000 @@ -1,5 +1,4 @@ -// -*- c++ -*- -// Generated by gmmproc 2.47.3.1 -- DO NOT MODIFY! +// Generated by gmmproc 2.56.0 -- DO NOT MODIFY! #ifndef _ATKMM_OBJECT_P_H #define _ATKMM_OBJECT_P_H @@ -15,11 +14,11 @@ { public: #ifndef DOXYGEN_SHOULD_SKIP_THIS - typedef Object CppObjectType; - typedef AtkObject BaseObjectType; - typedef AtkObjectClass BaseClassType; - typedef Glib::Object_Class CppClassParent; - typedef GObjectClass BaseClassParent; + using CppObjectType = Object; + using BaseObjectType = AtkObject; + using BaseClassType = AtkObjectClass; + using CppClassParent = Glib::Object_Class; + using BaseClassParent = GObjectClass; friend class Object; #endif /* DOXYGEN_SHOULD_SKIP_THIS */ diff -Nru atkmm1.6-2.24.2/atk/atkmm/private/range_p.h atkmm1.6-2.28.0/atk/atkmm/private/range_p.h --- atkmm1.6-2.24.2/atk/atkmm/private/range_p.h 2015-11-29 20:04:56.942724597 +0000 +++ atkmm1.6-2.28.0/atk/atkmm/private/range_p.h 2018-05-06 10:59:35.997518827 +0000 @@ -1,5 +1,4 @@ -// -*- c++ -*- -// Generated by gmmproc 2.47.3.1 -- DO NOT MODIFY! +// Generated by gmmproc 2.56.0 -- DO NOT MODIFY! #ifndef _ATKMM_RANGE_P_H #define _ATKMM_RANGE_P_H diff -Nru atkmm1.6-2.24.2/atk/atkmm/private/relation_p.h atkmm1.6-2.28.0/atk/atkmm/private/relation_p.h --- atkmm1.6-2.24.2/atk/atkmm/private/relation_p.h 2015-11-29 20:04:57.090706050 +0000 +++ atkmm1.6-2.28.0/atk/atkmm/private/relation_p.h 2018-05-06 10:59:36.261531501 +0000 @@ -1,5 +1,4 @@ -// -*- c++ -*- -// Generated by gmmproc 2.47.3.1 -- DO NOT MODIFY! +// Generated by gmmproc 2.56.0 -- DO NOT MODIFY! #ifndef _ATKMM_RELATION_P_H #define _ATKMM_RELATION_P_H @@ -15,11 +14,11 @@ { public: #ifndef DOXYGEN_SHOULD_SKIP_THIS - typedef Relation CppObjectType; - typedef AtkRelation BaseObjectType; - typedef AtkRelationClass BaseClassType; - typedef Glib::Object_Class CppClassParent; - typedef GObjectClass BaseClassParent; + using CppObjectType = Relation; + using BaseObjectType = AtkRelation; + using BaseClassType = AtkRelationClass; + using CppClassParent = Glib::Object_Class; + using BaseClassParent = GObjectClass; friend class Relation; #endif /* DOXYGEN_SHOULD_SKIP_THIS */ diff -Nru atkmm1.6-2.24.2/atk/atkmm/private/relationset_p.h atkmm1.6-2.28.0/atk/atkmm/private/relationset_p.h --- atkmm1.6-2.24.2/atk/atkmm/private/relationset_p.h 2015-11-29 20:04:57.258685005 +0000 +++ atkmm1.6-2.28.0/atk/atkmm/private/relationset_p.h 2018-05-06 10:59:36.165526892 +0000 @@ -1,5 +1,4 @@ -// -*- c++ -*- -// Generated by gmmproc 2.47.3.1 -- DO NOT MODIFY! +// Generated by gmmproc 2.56.0 -- DO NOT MODIFY! #ifndef _ATKMM_RELATIONSET_P_H #define _ATKMM_RELATIONSET_P_H @@ -15,11 +14,11 @@ { public: #ifndef DOXYGEN_SHOULD_SKIP_THIS - typedef RelationSet CppObjectType; - typedef AtkRelationSet BaseObjectType; - typedef AtkRelationSetClass BaseClassType; - typedef Glib::Object_Class CppClassParent; - typedef GObjectClass BaseClassParent; + using CppObjectType = RelationSet; + using BaseObjectType = AtkRelationSet; + using BaseClassType = AtkRelationSetClass; + using CppClassParent = Glib::Object_Class; + using BaseClassParent = GObjectClass; friend class RelationSet; #endif /* DOXYGEN_SHOULD_SKIP_THIS */ diff -Nru atkmm1.6-2.24.2/atk/atkmm/private/selection_p.h atkmm1.6-2.28.0/atk/atkmm/private/selection_p.h --- atkmm1.6-2.24.2/atk/atkmm/private/selection_p.h 2015-11-29 20:04:57.430663461 +0000 +++ atkmm1.6-2.28.0/atk/atkmm/private/selection_p.h 2018-05-06 10:59:36.553545519 +0000 @@ -1,5 +1,4 @@ -// -*- c++ -*- -// Generated by gmmproc 2.47.3.1 -- DO NOT MODIFY! +// Generated by gmmproc 2.56.0 -- DO NOT MODIFY! #ifndef _ATKMM_SELECTION_P_H #define _ATKMM_SELECTION_P_H @@ -14,10 +13,10 @@ class Selection_Class : public Glib::Interface_Class { public: - typedef Selection CppObjectType; - typedef AtkSelection BaseObjectType; - typedef AtkSelectionIface BaseClassType; - typedef Glib::Interface_Class CppClassParent; + using CppObjectType = Selection; + using BaseObjectType = AtkSelection; + using BaseClassType = AtkSelectionIface; + using CppClassParent = Glib::Interface_Class; friend class Selection; diff -Nru atkmm1.6-2.24.2/atk/atkmm/private/stateset_p.h atkmm1.6-2.28.0/atk/atkmm/private/stateset_p.h --- atkmm1.6-2.24.2/atk/atkmm/private/stateset_p.h 2015-11-29 20:04:57.582644421 +0000 +++ atkmm1.6-2.28.0/atk/atkmm/private/stateset_p.h 2018-05-06 10:59:36.697552431 +0000 @@ -1,5 +1,4 @@ -// -*- c++ -*- -// Generated by gmmproc 2.47.3.1 -- DO NOT MODIFY! +// Generated by gmmproc 2.56.0 -- DO NOT MODIFY! #ifndef _ATKMM_STATESET_P_H #define _ATKMM_STATESET_P_H @@ -15,11 +14,11 @@ { public: #ifndef DOXYGEN_SHOULD_SKIP_THIS - typedef StateSet CppObjectType; - typedef AtkStateSet BaseObjectType; - typedef AtkStateSetClass BaseClassType; - typedef Glib::Object_Class CppClassParent; - typedef GObjectClass BaseClassParent; + using CppObjectType = StateSet; + using BaseObjectType = AtkStateSet; + using BaseClassType = AtkStateSetClass; + using CppClassParent = Glib::Object_Class; + using BaseClassParent = GObjectClass; friend class StateSet; #endif /* DOXYGEN_SHOULD_SKIP_THIS */ diff -Nru atkmm1.6-2.24.2/atk/atkmm/private/streamablecontent_p.h atkmm1.6-2.28.0/atk/atkmm/private/streamablecontent_p.h --- atkmm1.6-2.24.2/atk/atkmm/private/streamablecontent_p.h 2015-11-29 20:04:57.750623377 +0000 +++ atkmm1.6-2.28.0/atk/atkmm/private/streamablecontent_p.h 2018-05-06 10:59:37.041568945 +0000 @@ -1,5 +1,4 @@ -// -*- c++ -*- -// Generated by gmmproc 2.47.3.1 -- DO NOT MODIFY! +// Generated by gmmproc 2.56.0 -- DO NOT MODIFY! #ifndef _ATKMM_STREAMABLECONTENT_P_H #define _ATKMM_STREAMABLECONTENT_P_H @@ -14,10 +13,10 @@ class StreamableContent_Class : public Glib::Interface_Class { public: - typedef StreamableContent CppObjectType; - typedef AtkStreamableContent BaseObjectType; - typedef AtkStreamableContentIface BaseClassType; - typedef Glib::Interface_Class CppClassParent; + using CppObjectType = StreamableContent; + using BaseObjectType = AtkStreamableContent; + using BaseClassType = AtkStreamableContentIface; + using CppClassParent = Glib::Interface_Class; friend class StreamableContent; diff -Nru atkmm1.6-2.24.2/atk/atkmm/private/table_p.h atkmm1.6-2.28.0/atk/atkmm/private/table_p.h --- atkmm1.6-2.24.2/atk/atkmm/private/table_p.h 2015-11-29 20:04:57.958597323 +0000 +++ atkmm1.6-2.28.0/atk/atkmm/private/table_p.h 2018-05-06 10:59:37.409586612 +0000 @@ -1,5 +1,4 @@ -// -*- c++ -*- -// Generated by gmmproc 2.47.3.1 -- DO NOT MODIFY! +// Generated by gmmproc 2.56.0 -- DO NOT MODIFY! #ifndef _ATKMM_TABLE_P_H #define _ATKMM_TABLE_P_H @@ -14,10 +13,10 @@ class Table_Class : public Glib::Interface_Class { public: - typedef Table CppObjectType; - typedef AtkTable BaseObjectType; - typedef AtkTableIface BaseClassType; - typedef Glib::Interface_Class CppClassParent; + using CppObjectType = Table; + using BaseObjectType = AtkTable; + using BaseClassType = AtkTableIface; + using CppClassParent = Glib::Interface_Class; friend class Table; diff -Nru atkmm1.6-2.24.2/atk/atkmm/private/text_p.h atkmm1.6-2.28.0/atk/atkmm/private/text_p.h --- atkmm1.6-2.24.2/atk/atkmm/private/text_p.h 2015-11-29 20:04:58.150573291 +0000 +++ atkmm1.6-2.28.0/atk/atkmm/private/text_p.h 2018-05-06 10:59:37.497590836 +0000 @@ -1,5 +1,4 @@ -// -*- c++ -*- -// Generated by gmmproc 2.47.3.1 -- DO NOT MODIFY! +// Generated by gmmproc 2.56.0 -- DO NOT MODIFY! #ifndef _ATKMM_TEXT_P_H #define _ATKMM_TEXT_P_H @@ -12,10 +11,10 @@ class Text_Class : public Glib::Interface_Class { public: - typedef Text CppObjectType; - typedef AtkText BaseObjectType; - typedef AtkTextIface BaseClassType; - typedef Glib::Interface_Class CppClassParent; + using CppObjectType = Text; + using BaseObjectType = AtkText; + using BaseClassType = AtkTextIface; + using CppClassParent = Glib::Interface_Class; friend class Text; diff -Nru atkmm1.6-2.24.2/atk/atkmm/private/value_p.h atkmm1.6-2.28.0/atk/atkmm/private/value_p.h --- atkmm1.6-2.24.2/atk/atkmm/private/value_p.h 2015-11-29 20:04:58.302554272 +0000 +++ atkmm1.6-2.28.0/atk/atkmm/private/value_p.h 2018-05-06 10:59:37.549593332 +0000 @@ -1,5 +1,4 @@ -// -*- c++ -*- -// Generated by gmmproc 2.47.3.1 -- DO NOT MODIFY! +// Generated by gmmproc 2.56.0 -- DO NOT MODIFY! #ifndef _ATKMM_VALUE_P_H #define _ATKMM_VALUE_P_H @@ -12,10 +11,10 @@ class Value_Class : public Glib::Interface_Class { public: - typedef Value CppObjectType; - typedef AtkValue BaseObjectType; - typedef AtkValueIface BaseClassType; - typedef Glib::Interface_Class CppClassParent; + using CppObjectType = Value; + using BaseObjectType = AtkValue; + using BaseClassType = AtkValueIface; + using CppClassParent = Glib::Interface_Class; friend class Value; diff -Nru atkmm1.6-2.24.2/atk/atkmm/range.cc atkmm1.6-2.28.0/atk/atkmm/range.cc --- atkmm1.6-2.24.2/atk/atkmm/range.cc 2015-11-29 20:04:56.946724095 +0000 +++ atkmm1.6-2.28.0/atk/atkmm/range.cc 2018-05-06 10:59:36.005519211 +0000 @@ -1,4 +1,4 @@ -// Generated by gmmproc 2.47.3.1 -- DO NOT MODIFY! +// Generated by gmmproc 2.56.0 -- DO NOT MODIFY! #include @@ -111,9 +111,7 @@ void Range::swap(Range& other) noexcept { - AtkRange *const temp = gobject_; - gobject_ = other.gobject_; - other.gobject_ = temp; + std::swap(gobject_, other.gobject_); } AtkRange* Range::gobj_copy() const diff -Nru atkmm1.6-2.24.2/atk/atkmm/range.h atkmm1.6-2.28.0/atk/atkmm/range.h --- atkmm1.6-2.24.2/atk/atkmm/range.h 2015-11-29 20:04:56.938725098 +0000 +++ atkmm1.6-2.28.0/atk/atkmm/range.h 2018-05-06 10:59:35.989518443 +0000 @@ -1,5 +1,4 @@ -// -*- c++ -*- -// Generated by gmmproc 2.47.3.1 -- DO NOT MODIFY! +// Generated by gmmproc 2.56.0 -- DO NOT MODIFY! #ifndef _ATKMM_RANGE_H #define _ATKMM_RANGE_H @@ -46,8 +45,8 @@ { public: #ifndef DOXYGEN_SHOULD_SKIP_THIS - typedef Range CppObjectType; - typedef AtkRange BaseObjectType; + using CppObjectType = Range; + using BaseObjectType = AtkRange; #endif /* DOXYGEN_SHOULD_SKIP_THIS */ /** Get the GType for this class, for use with the underlying GObject type system. @@ -134,7 +133,7 @@ { /** A Glib::wrap() method for this object. - * + * * @param object The C instance. * @param take_copy False if the result should take ownership of the C instance. True if it should take a new copy or ref. * @result A C++ instance that wraps this C instance. diff -Nru atkmm1.6-2.24.2/atk/atkmm/relation.cc atkmm1.6-2.28.0/atk/atkmm/relation.cc --- atkmm1.6-2.24.2/atk/atkmm/relation.cc 2015-11-29 20:04:57.094705549 +0000 +++ atkmm1.6-2.28.0/atk/atkmm/relation.cc 2018-05-06 10:59:36.309533805 +0000 @@ -1,4 +1,4 @@ -// Generated by gmmproc 2.47.3.1 -- DO NOT MODIFY! +// Generated by gmmproc 2.56.0 -- DO NOT MODIFY! #include @@ -160,6 +160,7 @@ return *this; } + Relation::~Relation() noexcept {} diff -Nru atkmm1.6-2.24.2/atk/atkmm/relation.h atkmm1.6-2.28.0/atk/atkmm/relation.h --- atkmm1.6-2.24.2/atk/atkmm/relation.h 2015-11-29 20:04:57.086706551 +0000 +++ atkmm1.6-2.28.0/atk/atkmm/relation.h 2018-05-06 10:59:36.253531116 +0000 @@ -1,5 +1,4 @@ -// -*- c++ -*- -// Generated by gmmproc 2.47.3.1 -- DO NOT MODIFY! +// Generated by gmmproc 2.56.0 -- DO NOT MODIFY! #ifndef _ATKMM_RELATION_H #define _ATKMM_RELATION_H @@ -31,8 +30,8 @@ #include #ifndef DOXYGEN_SHOULD_SKIP_THIS -typedef struct _AtkRelation AtkRelation; -typedef struct _AtkRelationClass AtkRelationClass; +using AtkRelation = struct _AtkRelation; +using AtkRelationClass = struct _AtkRelationClass; #endif /* DOXYGEN_SHOULD_SKIP_THIS */ @@ -137,7 +136,6 @@ } // namespace Atk - #ifndef DOXYGEN_SHOULD_SKIP_THIS namespace Glib { @@ -152,7 +150,6 @@ } // namespace Glib #endif /* DOXYGEN_SHOULD_SKIP_THIS */ - namespace Atk { @@ -170,10 +167,10 @@ #ifndef DOXYGEN_SHOULD_SKIP_THIS public: - typedef Relation CppObjectType; - typedef Relation_Class CppClassType; - typedef AtkRelation BaseObjectType; - typedef AtkRelationClass BaseClassType; + using CppObjectType = Relation; + using CppClassType = Relation_Class; + using BaseObjectType = AtkRelation; + using BaseClassType = AtkRelationClass; // noncopyable Relation(const Relation&) = delete; @@ -193,7 +190,7 @@ Relation(Relation&& src) noexcept; Relation& operator=(Relation&& src) noexcept; - virtual ~Relation() noexcept; + ~Relation() noexcept override; /** Get the GType for this class, for use with the underlying GObject type system. */ @@ -266,7 +263,7 @@ namespace Glib { /** A Glib::wrap() method for this object. - * + * * @param object The C instance. * @param take_copy False if the result should take ownership of the C instance. True if it should take a new copy or ref. * @result A C++ instance that wraps this C instance. diff -Nru atkmm1.6-2.24.2/atk/atkmm/relationset.cc atkmm1.6-2.28.0/atk/atkmm/relationset.cc --- atkmm1.6-2.24.2/atk/atkmm/relationset.cc 2015-11-29 20:04:57.262684504 +0000 +++ atkmm1.6-2.28.0/atk/atkmm/relationset.cc 2018-05-06 10:59:36.173527276 +0000 @@ -1,4 +1,4 @@ -// Generated by gmmproc 2.47.3.1 -- DO NOT MODIFY! +// Generated by gmmproc 2.56.0 -- DO NOT MODIFY! #include @@ -122,6 +122,7 @@ return *this; } + RelationSet::~RelationSet() noexcept {} diff -Nru atkmm1.6-2.24.2/atk/atkmm/relationset.h atkmm1.6-2.28.0/atk/atkmm/relationset.h --- atkmm1.6-2.24.2/atk/atkmm/relationset.h 2015-11-29 20:04:57.254685506 +0000 +++ atkmm1.6-2.28.0/atk/atkmm/relationset.h 2018-05-06 10:59:36.157526508 +0000 @@ -1,5 +1,4 @@ -// -*- c++ -*- -// Generated by gmmproc 2.47.3.1 -- DO NOT MODIFY! +// Generated by gmmproc 2.56.0 -- DO NOT MODIFY! #ifndef _ATKMM_RELATIONSET_H #define _ATKMM_RELATIONSET_H @@ -32,8 +31,8 @@ #ifndef DOXYGEN_SHOULD_SKIP_THIS -typedef struct _AtkRelationSet AtkRelationSet; -typedef struct _AtkRelationSetClass AtkRelationSetClass; +using AtkRelationSet = struct _AtkRelationSet; +using AtkRelationSetClass = struct _AtkRelationSetClass; #endif /* DOXYGEN_SHOULD_SKIP_THIS */ @@ -54,10 +53,10 @@ #ifndef DOXYGEN_SHOULD_SKIP_THIS public: - typedef RelationSet CppObjectType; - typedef RelationSet_Class CppClassType; - typedef AtkRelationSet BaseObjectType; - typedef AtkRelationSetClass BaseClassType; + using CppObjectType = RelationSet; + using CppClassType = RelationSet_Class; + using BaseObjectType = AtkRelationSet; + using BaseClassType = AtkRelationSetClass; // noncopyable RelationSet(const RelationSet&) = delete; @@ -77,7 +76,7 @@ RelationSet(RelationSet&& src) noexcept; RelationSet& operator=(RelationSet&& src) noexcept; - virtual ~RelationSet() noexcept; + ~RelationSet() noexcept override; /** Get the GType for this class, for use with the underlying GObject type system. */ @@ -190,7 +189,7 @@ namespace Glib { /** A Glib::wrap() method for this object. - * + * * @param object The C instance. * @param take_copy False if the result should take ownership of the C instance. True if it should take a new copy or ref. * @result A C++ instance that wraps this C instance. diff -Nru atkmm1.6-2.24.2/atk/atkmm/selection.cc atkmm1.6-2.28.0/atk/atkmm/selection.cc --- atkmm1.6-2.24.2/atk/atkmm/selection.cc 2015-11-29 20:04:57.434662960 +0000 +++ atkmm1.6-2.28.0/atk/atkmm/selection.cc 2018-05-06 10:59:36.561545903 +0000 @@ -1,4 +1,4 @@ -// Generated by gmmproc 2.47.3.1 -- DO NOT MODIFY! +// Generated by gmmproc 2.56.0 -- DO NOT MODIFY! #include @@ -85,7 +85,7 @@ //This is just to avoid an "unused variable" warning when there are no vfuncs or signal handlers to connect. //This is a temporary fix until I find out why I can not seem to derive a GtkFileChooser interface. murrayc - g_assert(klass != nullptr); + g_assert(klass != nullptr); klass->add_selection = &add_selection_vfunc_callback; klass->clear_selection = &clear_selection_vfunc_callback; @@ -133,12 +133,9 @@ // Call the original underlying C function: if(base && base->add_selection) - { - gboolean retval = (*base->add_selection)(self, i); - return retval; - } + return (*base->add_selection)(self, i); - typedef gboolean RType; + using RType = gboolean; return RType(); } gboolean Selection_Class::clear_selection_vfunc_callback(AtkSelection* self) @@ -175,12 +172,9 @@ // Call the original underlying C function: if(base && base->clear_selection) - { - gboolean retval = (*base->clear_selection)(self); - return retval; - } + return (*base->clear_selection)(self); - typedef gboolean RType; + using RType = gboolean; return RType(); } AtkObject* Selection_Class::ref_selection_vfunc_callback(AtkSelection* self, gint i) @@ -218,12 +212,9 @@ // Call the original underlying C function: if(base && base->ref_selection) - { - AtkObject* retval = (*base->ref_selection)(self, i); - return retval; - } + return (*base->ref_selection)(self, i); - typedef AtkObject* RType; + using RType = AtkObject*; return RType(); } gint Selection_Class::get_selection_count_vfunc_callback(AtkSelection* self) @@ -260,12 +251,9 @@ // Call the original underlying C function: if(base && base->get_selection_count) - { - gint retval = (*base->get_selection_count)(self); - return retval; - } + return (*base->get_selection_count)(self); - typedef gint RType; + using RType = gint; return RType(); } gboolean Selection_Class::is_child_selected_vfunc_callback(AtkSelection* self, gint i) @@ -303,12 +291,9 @@ // Call the original underlying C function: if(base && base->is_child_selected) - { - gboolean retval = (*base->is_child_selected)(self, i); - return retval; - } + return (*base->is_child_selected)(self, i); - typedef gboolean RType; + using RType = gboolean; return RType(); } gboolean Selection_Class::remove_selection_vfunc_callback(AtkSelection* self, gint i) @@ -346,12 +331,9 @@ // Call the original underlying C function: if(base && base->remove_selection) - { - gboolean retval = (*base->remove_selection)(self, i); - return retval; - } + return (*base->remove_selection)(self, i); - typedef gboolean RType; + using RType = gboolean; return RType(); } gboolean Selection_Class::select_all_selection_vfunc_callback(AtkSelection* self) @@ -388,12 +370,9 @@ // Call the original underlying C function: if(base && base->select_all_selection) - { - gboolean retval = (*base->select_all_selection)(self); - return retval; - } + return (*base->select_all_selection)(self); - typedef gboolean RType; + using RType = gboolean; return RType(); } @@ -528,9 +507,9 @@ } -Glib::SignalProxy0< void > Selection::signal_selection_changed() +Glib::SignalProxy< void > Selection::signal_selection_changed() { - return Glib::SignalProxy0< void >(this, &Selection_signal_selection_changed_info); + return Glib::SignalProxy< void >(this, &Selection_signal_selection_changed_info); } @@ -558,7 +537,7 @@ return retval; } - typedef bool RType; + using RType = bool; return RType(); } bool Atk::Selection::clear_selection_vfunc() @@ -574,7 +553,7 @@ return retval; } - typedef bool RType; + using RType = bool; return RType(); } Glib::RefPtr Atk::Selection::get_selection_vfunc(int i) @@ -590,7 +569,7 @@ return retval; } - typedef Glib::RefPtr RType; + using RType = Glib::RefPtr; return RType(); } int Atk::Selection::get_selection_count_vfunc() const @@ -606,7 +585,7 @@ return retval; } - typedef int RType; + using RType = int; return RType(); } bool Atk::Selection::is_child_selected_vfunc(int i) const @@ -622,7 +601,7 @@ return retval; } - typedef bool RType; + using RType = bool; return RType(); } bool Atk::Selection::remove_selection_vfunc(int i) @@ -638,7 +617,7 @@ return retval; } - typedef bool RType; + using RType = bool; return RType(); } bool Atk::Selection::select_all_selection_vfunc() @@ -654,7 +633,7 @@ return retval; } - typedef bool RType; + using RType = bool; return RType(); } diff -Nru atkmm1.6-2.24.2/atk/atkmm/selection.h atkmm1.6-2.28.0/atk/atkmm/selection.h --- atkmm1.6-2.24.2/atk/atkmm/selection.h 2015-11-29 20:04:57.426663962 +0000 +++ atkmm1.6-2.28.0/atk/atkmm/selection.h 2018-05-06 10:59:36.541544942 +0000 @@ -1,5 +1,4 @@ -// -*- c++ -*- -// Generated by gmmproc 2.47.3.1 -- DO NOT MODIFY! +// Generated by gmmproc 2.56.0 -- DO NOT MODIFY! #ifndef _ATKMM_SELECTION_H #define _ATKMM_SELECTION_H @@ -39,8 +38,8 @@ #ifndef DOXYGEN_SHOULD_SKIP_THIS -typedef struct _AtkSelection AtkSelection; -typedef struct _AtkSelectionClass AtkSelectionClass; +using AtkSelection = struct _AtkSelection; +using AtkSelectionClass = struct _AtkSelectionClass; #endif /* DOXYGEN_SHOULD_SKIP_THIS */ @@ -69,10 +68,10 @@ #ifndef DOXYGEN_SHOULD_SKIP_THIS public: - typedef Selection CppObjectType; - typedef Selection_Class CppClassType; - typedef AtkSelection BaseObjectType; - typedef AtkSelectionIface BaseClassType; + using CppObjectType = Selection; + using CppClassType = Selection_Class; + using BaseObjectType = AtkSelection; + using BaseClassType = AtkSelectionIface; // noncopyable Selection(const Selection&) = delete; @@ -90,10 +89,10 @@ Selection(); #ifndef DOXYGEN_SHOULD_SKIP_THIS - /** Called by constructors of derived classes. Provide the result of - * the Class init() function to ensure that it is properly + /** Called by constructors of derived classes. Provide the result of + * the Class init() function to ensure that it is properly * initialized. - * + * * @param interface_class The Class object for the derived type. */ explicit Selection(const Glib::Interface_Class& interface_class); @@ -101,7 +100,7 @@ public: // This is public so that C++ wrapper instances can be // created for C instances of unwrapped types. - // For instance, if an unexpected C type implements the C interface. + // For instance, if an unexpected C type implements the C interface. explicit Selection(AtkSelection* castitem); protected: @@ -112,7 +111,7 @@ Selection(Selection&& src) noexcept; Selection& operator=(Selection&& src) noexcept; - virtual ~Selection() noexcept; + ~Selection() noexcept override; static void add_interface(GType gtype_implementer); @@ -208,11 +207,13 @@ * @par Slot Prototype: * void on_my_%selection_changed() * + * Flags: Run Last + * * The "selection-changed" signal is emitted by an object which * implements AtkSelection interface when the selection changes. */ - Glib::SignalProxy0< void > signal_selection_changed(); + Glib::SignalProxy< void > signal_selection_changed(); protected: @@ -252,7 +253,7 @@ namespace Glib { /** A Glib::wrap() method for this object. - * + * * @param object The C instance. * @param take_copy False if the result should take ownership of the C instance. True if it should take a new copy or ref. * @result A C++ instance that wraps this C instance. diff -Nru atkmm1.6-2.24.2/atk/atkmm/stateset.cc atkmm1.6-2.28.0/atk/atkmm/stateset.cc --- atkmm1.6-2.24.2/atk/atkmm/stateset.cc 2015-11-29 20:04:57.586643920 +0000 +++ atkmm1.6-2.28.0/atk/atkmm/stateset.cc 2018-05-06 10:59:36.709553007 +0000 @@ -1,4 +1,4 @@ -// Generated by gmmproc 2.47.3.1 -- DO NOT MODIFY! +// Generated by gmmproc 2.56.0 -- DO NOT MODIFY! #include @@ -146,6 +146,7 @@ return *this; } + StateSet::~StateSet() noexcept {} diff -Nru atkmm1.6-2.24.2/atk/atkmm/stateset.h atkmm1.6-2.28.0/atk/atkmm/stateset.h --- atkmm1.6-2.24.2/atk/atkmm/stateset.h 2015-11-29 20:04:57.578644922 +0000 +++ atkmm1.6-2.28.0/atk/atkmm/stateset.h 2018-05-06 10:59:36.689552047 +0000 @@ -1,5 +1,4 @@ -// -*- c++ -*- -// Generated by gmmproc 2.47.3.1 -- DO NOT MODIFY! +// Generated by gmmproc 2.56.0 -- DO NOT MODIFY! #ifndef _ATKMM_STATESET_H #define _ATKMM_STATESET_H @@ -32,8 +31,8 @@ #include #ifndef DOXYGEN_SHOULD_SKIP_THIS -typedef struct _AtkStateSet AtkStateSet; -typedef struct _AtkStateSetClass AtkStateSetClass; +using AtkStateSet = struct _AtkStateSet; +using AtkStateSetClass = struct _AtkStateSetClass; #endif /* DOXYGEN_SHOULD_SKIP_THIS */ @@ -102,7 +101,6 @@ } // namespace Atk - #ifndef DOXYGEN_SHOULD_SKIP_THIS namespace Glib { @@ -117,7 +115,6 @@ } // namespace Glib #endif /* DOXYGEN_SHOULD_SKIP_THIS */ - namespace Atk { @@ -132,10 +129,10 @@ #ifndef DOXYGEN_SHOULD_SKIP_THIS public: - typedef StateSet CppObjectType; - typedef StateSet_Class CppClassType; - typedef AtkStateSet BaseObjectType; - typedef AtkStateSetClass BaseClassType; + using CppObjectType = StateSet; + using CppClassType = StateSet_Class; + using BaseObjectType = AtkStateSet; + using BaseClassType = AtkStateSetClass; // noncopyable StateSet(const StateSet&) = delete; @@ -155,7 +152,7 @@ StateSet(StateSet&& src) noexcept; StateSet& operator=(StateSet&& src) noexcept; - virtual ~StateSet() noexcept; + ~StateSet() noexcept override; /** Get the GType for this class, for use with the underlying GObject type system. */ @@ -282,7 +279,7 @@ namespace Glib { /** A Glib::wrap() method for this object. - * + * * @param object The C instance. * @param take_copy False if the result should take ownership of the C instance. True if it should take a new copy or ref. * @result A C++ instance that wraps this C instance. diff -Nru atkmm1.6-2.24.2/atk/atkmm/streamablecontent.cc atkmm1.6-2.28.0/atk/atkmm/streamablecontent.cc --- atkmm1.6-2.24.2/atk/atkmm/streamablecontent.cc 2015-11-29 20:04:57.754622876 +0000 +++ atkmm1.6-2.28.0/atk/atkmm/streamablecontent.cc 2018-05-06 10:59:37.049569330 +0000 @@ -1,4 +1,4 @@ -// Generated by gmmproc 2.47.3.1 -- DO NOT MODIFY! +// Generated by gmmproc 2.56.0 -- DO NOT MODIFY! #include @@ -82,7 +82,7 @@ //This is just to avoid an "unused variable" warning when there are no vfuncs or signal handlers to connect. //This is a temporary fix until I find out why I can not seem to derive a GtkFileChooser interface. murrayc - g_assert(klass != nullptr); + g_assert(klass != nullptr); klass->get_n_mime_types = &get_n_mime_types_vfunc_callback; klass->get_mime_type = &get_mime_type_vfunc_callback; @@ -124,12 +124,9 @@ // Call the original underlying C function: if(base && base->get_n_mime_types) - { - int retval = (*base->get_n_mime_types)(self); - return retval; - } + return (*base->get_n_mime_types)(self); - typedef int RType; + using RType = int; return RType(); } const gchar* StreamableContent_Class::get_mime_type_vfunc_callback(AtkStreamableContent* self, gint i) @@ -167,12 +164,9 @@ // Call the original underlying C function: if(base && base->get_mime_type) - { - const gchar* retval = (*base->get_mime_type)(self, i); - return retval; - } + return (*base->get_mime_type)(self, i); - typedef const gchar* RType; + using RType = const gchar*; return RType(); } GIOChannel* StreamableContent_Class::get_stream_vfunc_callback(AtkStreamableContent* self, const gchar* mime_type) @@ -210,12 +204,9 @@ // Call the original underlying C function: if(base && base->get_stream) - { - GIOChannel* retval = (*base->get_stream)(self, mime_type); - return retval; - } + return (*base->get_stream)(self, mime_type); - typedef GIOChannel* RType; + using RType = GIOChannel*; return RType(); } @@ -305,7 +296,7 @@ return retval; } - typedef int RType; + using RType = int; return RType(); } const gchar* Atk::StreamableContent::get_mime_type_vfunc(int i) const @@ -321,7 +312,7 @@ return retval; } - typedef const gchar* RType; + using RType = const gchar*; return RType(); } GIOChannel* Atk::StreamableContent::get_stream_vfunc(const Glib::ustring& mime_type) @@ -337,7 +328,7 @@ return retval; } - typedef GIOChannel* RType; + using RType = GIOChannel*; return RType(); } diff -Nru atkmm1.6-2.24.2/atk/atkmm/streamablecontent.h atkmm1.6-2.28.0/atk/atkmm/streamablecontent.h --- atkmm1.6-2.24.2/atk/atkmm/streamablecontent.h 2015-11-29 20:04:57.746623878 +0000 +++ atkmm1.6-2.28.0/atk/atkmm/streamablecontent.h 2018-05-06 10:59:37.033568561 +0000 @@ -1,5 +1,4 @@ -// -*- c++ -*- -// Generated by gmmproc 2.47.3.1 -- DO NOT MODIFY! +// Generated by gmmproc 2.56.0 -- DO NOT MODIFY! #ifndef _ATKMM_STREAMABLECONTENT_H #define _ATKMM_STREAMABLECONTENT_H @@ -40,8 +39,8 @@ #ifndef DOXYGEN_SHOULD_SKIP_THIS -typedef struct _AtkStreamableContent AtkStreamableContent; -typedef struct _AtkStreamableContentClass AtkStreamableContentClass; +using AtkStreamableContent = struct _AtkStreamableContent; +using AtkStreamableContentClass = struct _AtkStreamableContentClass; #endif /* DOXYGEN_SHOULD_SKIP_THIS */ @@ -64,10 +63,10 @@ #ifndef DOXYGEN_SHOULD_SKIP_THIS public: - typedef StreamableContent CppObjectType; - typedef StreamableContent_Class CppClassType; - typedef AtkStreamableContent BaseObjectType; - typedef AtkStreamableContentIface BaseClassType; + using CppObjectType = StreamableContent; + using CppClassType = StreamableContent_Class; + using BaseObjectType = AtkStreamableContent; + using BaseClassType = AtkStreamableContentIface; // noncopyable StreamableContent(const StreamableContent&) = delete; @@ -85,10 +84,10 @@ StreamableContent(); #ifndef DOXYGEN_SHOULD_SKIP_THIS - /** Called by constructors of derived classes. Provide the result of - * the Class init() function to ensure that it is properly + /** Called by constructors of derived classes. Provide the result of + * the Class init() function to ensure that it is properly * initialized. - * + * * @param interface_class The Class object for the derived type. */ explicit StreamableContent(const Glib::Interface_Class& interface_class); @@ -96,7 +95,7 @@ public: // This is public so that C++ wrapper instances can be // created for C instances of unwrapped types. - // For instance, if an unexpected C type implements the C interface. + // For instance, if an unexpected C type implements the C interface. explicit StreamableContent(AtkStreamableContent* castitem); protected: @@ -107,7 +106,7 @@ StreamableContent(StreamableContent&& src) noexcept; StreamableContent& operator=(StreamableContent&& src) noexcept; - virtual ~StreamableContent() noexcept; + ~StreamableContent() noexcept override; static void add_interface(GType gtype_implementer); @@ -181,7 +180,7 @@ namespace Glib { /** A Glib::wrap() method for this object. - * + * * @param object The C instance. * @param take_copy False if the result should take ownership of the C instance. True if it should take a new copy or ref. * @result A C++ instance that wraps this C instance. diff -Nru atkmm1.6-2.24.2/atk/atkmm/table.cc atkmm1.6-2.28.0/atk/atkmm/table.cc --- atkmm1.6-2.24.2/atk/atkmm/table.cc 2015-11-29 20:04:57.962596822 +0000 +++ atkmm1.6-2.28.0/atk/atkmm/table.cc 2018-05-06 10:59:37.433587764 +0000 @@ -1,4 +1,4 @@ -// Generated by gmmproc 2.47.3.1 -- DO NOT MODIFY! +// Generated by gmmproc 2.56.0 -- DO NOT MODIFY! #include @@ -60,7 +60,7 @@ static void Table_signal_row_inserted_callback(AtkTable* self, gint p0,gint p1,void* data) { using namespace Atk; - typedef sigc::slot< void,int,int > SlotType; + using SlotType = sigc::slot< void,int,int >; auto obj = dynamic_cast(Glib::ObjectBase::_get_current_wrapper((GObject*) self)); // Do not try to call a signal on a disassociated wrapper. @@ -91,7 +91,7 @@ static void Table_signal_column_inserted_callback(AtkTable* self, gint p0,gint p1,void* data) { using namespace Atk; - typedef sigc::slot< void,int,int > SlotType; + using SlotType = sigc::slot< void,int,int >; auto obj = dynamic_cast(Glib::ObjectBase::_get_current_wrapper((GObject*) self)); // Do not try to call a signal on a disassociated wrapper. @@ -122,7 +122,7 @@ static void Table_signal_row_deleted_callback(AtkTable* self, gint p0,gint p1,void* data) { using namespace Atk; - typedef sigc::slot< void,int,int > SlotType; + using SlotType = sigc::slot< void,int,int >; auto obj = dynamic_cast(Glib::ObjectBase::_get_current_wrapper((GObject*) self)); // Do not try to call a signal on a disassociated wrapper. @@ -153,7 +153,7 @@ static void Table_signal_column_deleted_callback(AtkTable* self, gint p0,gint p1,void* data) { using namespace Atk; - typedef sigc::slot< void,int,int > SlotType; + using SlotType = sigc::slot< void,int,int >; auto obj = dynamic_cast(Glib::ObjectBase::_get_current_wrapper((GObject*) self)); // Do not try to call a signal on a disassociated wrapper. @@ -247,7 +247,7 @@ //This is just to avoid an "unused variable" warning when there are no vfuncs or signal handlers to connect. //This is a temporary fix until I find out why I can not seem to derive a GtkFileChooser interface. murrayc - g_assert(klass != nullptr); + g_assert(klass != nullptr); klass->ref_at = &ref_at_vfunc_callback; klass->get_index_at = &get_index_at_vfunc_callback; @@ -324,12 +324,9 @@ // Call the original underlying C function: if(base && base->ref_at) - { - AtkObject* retval = (*base->ref_at)(self, row, column); - return retval; - } + return (*base->ref_at)(self, row, column); - typedef AtkObject* RType; + using RType = AtkObject*; return RType(); } gint Table_Class::get_index_at_vfunc_callback(AtkTable* self, gint row, gint column) @@ -368,12 +365,9 @@ // Call the original underlying C function: if(base && base->get_index_at) - { - gint retval = (*base->get_index_at)(self, row, column); - return retval; - } + return (*base->get_index_at)(self, row, column); - typedef gint RType; + using RType = gint; return RType(); } gint Table_Class::get_column_at_index_vfunc_callback(AtkTable* self, gint index_) @@ -411,12 +405,9 @@ // Call the original underlying C function: if(base && base->get_column_at_index) - { - gint retval = (*base->get_column_at_index)(self, index_); - return retval; - } + return (*base->get_column_at_index)(self, index_); - typedef gint RType; + using RType = gint; return RType(); } gint Table_Class::get_row_at_index_vfunc_callback(AtkTable* self, gint index_) @@ -454,12 +445,9 @@ // Call the original underlying C function: if(base && base->get_row_at_index) - { - gint retval = (*base->get_row_at_index)(self, index_); - return retval; - } + return (*base->get_row_at_index)(self, index_); - typedef gint RType; + using RType = gint; return RType(); } gint Table_Class::get_n_columns_vfunc_callback(AtkTable* self) @@ -496,12 +484,9 @@ // Call the original underlying C function: if(base && base->get_n_columns) - { - gint retval = (*base->get_n_columns)(self); - return retval; - } + return (*base->get_n_columns)(self); - typedef gint RType; + using RType = gint; return RType(); } gint Table_Class::get_n_rows_vfunc_callback(AtkTable* self) @@ -538,12 +523,9 @@ // Call the original underlying C function: if(base && base->get_n_rows) - { - gint retval = (*base->get_n_rows)(self); - return retval; - } + return (*base->get_n_rows)(self); - typedef gint RType; + using RType = gint; return RType(); } gint Table_Class::get_column_extent_at_vfunc_callback(AtkTable* self, gint row, gint column) @@ -582,12 +564,9 @@ // Call the original underlying C function: if(base && base->get_column_extent_at) - { - gint retval = (*base->get_column_extent_at)(self, row, column); - return retval; - } + return (*base->get_column_extent_at)(self, row, column); - typedef gint RType; + using RType = gint; return RType(); } gint Table_Class::get_row_extent_at_vfunc_callback(AtkTable* self, gint row, gint column) @@ -626,12 +605,9 @@ // Call the original underlying C function: if(base && base->get_row_extent_at) - { - gint retval = (*base->get_row_extent_at)(self, row, column); - return retval; - } + return (*base->get_row_extent_at)(self, row, column); - typedef gint RType; + using RType = gint; return RType(); } AtkObject* Table_Class::get_caption_vfunc_callback(AtkTable* self) @@ -668,12 +644,9 @@ // Call the original underlying C function: if(base && base->get_caption) - { - AtkObject* retval = (*base->get_caption)(self); - return retval; - } + return (*base->get_caption)(self); - typedef AtkObject* RType; + using RType = AtkObject*; return RType(); } const gchar* Table_Class::get_column_description_vfunc_callback(AtkTable* self, gint column) @@ -711,12 +684,9 @@ // Call the original underlying C function: if(base && base->get_column_description) - { - const gchar* retval = (*base->get_column_description)(self, column); - return retval; - } + return (*base->get_column_description)(self, column); - typedef const gchar* RType; + using RType = const gchar*; return RType(); } AtkObject* Table_Class::get_column_header_vfunc_callback(AtkTable* self, gint column) @@ -754,12 +724,9 @@ // Call the original underlying C function: if(base && base->get_column_header) - { - AtkObject* retval = (*base->get_column_header)(self, column); - return retval; - } + return (*base->get_column_header)(self, column); - typedef AtkObject* RType; + using RType = AtkObject*; return RType(); } const gchar* Table_Class::get_row_description_vfunc_callback(AtkTable* self, gint row) @@ -797,12 +764,9 @@ // Call the original underlying C function: if(base && base->get_row_description) - { - const gchar* retval = (*base->get_row_description)(self, row); - return retval; - } + return (*base->get_row_description)(self, row); - typedef const gchar* RType; + using RType = const gchar*; return RType(); } AtkObject* Table_Class::get_row_header_vfunc_callback(AtkTable* self, gint row) @@ -840,12 +804,9 @@ // Call the original underlying C function: if(base && base->get_row_header) - { - AtkObject* retval = (*base->get_row_header)(self, row); - return retval; - } + return (*base->get_row_header)(self, row); - typedef AtkObject* RType; + using RType = AtkObject*; return RType(); } AtkObject* Table_Class::get_summary_vfunc_callback(AtkTable* self) @@ -882,12 +843,9 @@ // Call the original underlying C function: if(base && base->get_summary) - { - AtkObject* retval = (*base->get_summary)(self); - return retval; - } + return (*base->get_summary)(self); - typedef AtkObject* RType; + using RType = AtkObject*; return RType(); } void Table_Class::set_caption_vfunc_callback(AtkTable* self, AtkObject* caption) @@ -926,10 +884,7 @@ // Call the original underlying C function: if(base && base->set_caption) - { (*base->set_caption)(self, caption); - } - } void Table_Class::set_column_description_vfunc_callback(AtkTable* self, gint column, const gchar* description) { @@ -968,10 +923,7 @@ // Call the original underlying C function: if(base && base->set_column_description) - { (*base->set_column_description)(self, column, description); - } - } void Table_Class::set_column_header_vfunc_callback(AtkTable* self, gint column, AtkObject* header) { @@ -1010,10 +962,7 @@ // Call the original underlying C function: if(base && base->set_column_header) - { (*base->set_column_header)(self, column, header); - } - } void Table_Class::set_row_description_vfunc_callback(AtkTable* self, gint row, const gchar* description) { @@ -1052,10 +1001,7 @@ // Call the original underlying C function: if(base && base->set_row_description) - { (*base->set_row_description)(self, row, description); - } - } void Table_Class::set_row_header_vfunc_callback(AtkTable* self, gint row, AtkObject* header) { @@ -1094,10 +1040,7 @@ // Call the original underlying C function: if(base && base->set_row_header) - { (*base->set_row_header)(self, row, header); - } - } void Table_Class::set_summary_vfunc_callback(AtkTable* self, AtkObject* accessible) { @@ -1135,10 +1078,7 @@ // Call the original underlying C function: if(base && base->set_summary) - { (*base->set_summary)(self, accessible); - } - } gboolean Table_Class::is_column_selected_vfunc_callback(AtkTable* self, gint column) { @@ -1175,12 +1115,9 @@ // Call the original underlying C function: if(base && base->is_column_selected) - { - gboolean retval = (*base->is_column_selected)(self, column); - return retval; - } + return (*base->is_column_selected)(self, column); - typedef gboolean RType; + using RType = gboolean; return RType(); } gboolean Table_Class::is_row_selected_vfunc_callback(AtkTable* self, gint row) @@ -1218,12 +1155,9 @@ // Call the original underlying C function: if(base && base->is_row_selected) - { - gboolean retval = (*base->is_row_selected)(self, row); - return retval; - } + return (*base->is_row_selected)(self, row); - typedef gboolean RType; + using RType = gboolean; return RType(); } gboolean Table_Class::is_selected_vfunc_callback(AtkTable* self, gint row, gint column) @@ -1262,12 +1196,9 @@ // Call the original underlying C function: if(base && base->is_selected) - { - gboolean retval = (*base->is_selected)(self, row, column); - return retval; - } + return (*base->is_selected)(self, row, column); - typedef gboolean RType; + using RType = gboolean; return RType(); } gboolean Table_Class::add_row_selection_vfunc_callback(AtkTable* self, gint row) @@ -1305,12 +1236,9 @@ // Call the original underlying C function: if(base && base->add_row_selection) - { - gboolean retval = (*base->add_row_selection)(self, row); - return retval; - } + return (*base->add_row_selection)(self, row); - typedef gboolean RType; + using RType = gboolean; return RType(); } gboolean Table_Class::remove_row_selection_vfunc_callback(AtkTable* self, gint row) @@ -1348,12 +1276,9 @@ // Call the original underlying C function: if(base && base->remove_row_selection) - { - gboolean retval = (*base->remove_row_selection)(self, row); - return retval; - } + return (*base->remove_row_selection)(self, row); - typedef gboolean RType; + using RType = gboolean; return RType(); } gboolean Table_Class::add_column_selection_vfunc_callback(AtkTable* self, gint column) @@ -1391,12 +1316,9 @@ // Call the original underlying C function: if(base && base->add_column_selection) - { - gboolean retval = (*base->add_column_selection)(self, column); - return retval; - } + return (*base->add_column_selection)(self, column); - typedef gboolean RType; + using RType = gboolean; return RType(); } gboolean Table_Class::remove_column_selection_vfunc_callback(AtkTable* self, gint column) @@ -1434,12 +1356,9 @@ // Call the original underlying C function: if(base && base->remove_column_selection) - { - gboolean retval = (*base->remove_column_selection)(self, column); - return retval; - } + return (*base->remove_column_selection)(self, column); - typedef gboolean RType; + using RType = gboolean; return RType(); } gint Table_Class::get_selected_columns_vfunc_callback(AtkTable* self, gint** selected) @@ -1477,12 +1396,9 @@ // Call the original underlying C function: if(base && base->get_selected_columns) - { - gint retval = (*base->get_selected_columns)(self, selected); - return retval; - } + return (*base->get_selected_columns)(self, selected); - typedef gint RType; + using RType = gint; return RType(); } gint Table_Class::get_selected_rows_vfunc_callback(AtkTable* self, gint** selected) @@ -1520,12 +1436,9 @@ // Call the original underlying C function: if(base && base->get_selected_rows) - { - gint retval = (*base->get_selected_rows)(self, selected); - return retval; - } + return (*base->get_selected_rows)(self, selected); - typedef gint RType; + using RType = gint; return RType(); } @@ -2039,45 +1952,45 @@ } -Glib::SignalProxy2< void,int,int > Table::signal_row_inserted() +Glib::SignalProxy< void,int,int > Table::signal_row_inserted() { - return Glib::SignalProxy2< void,int,int >(this, &Table_signal_row_inserted_info); + return Glib::SignalProxy< void,int,int >(this, &Table_signal_row_inserted_info); } -Glib::SignalProxy2< void,int,int > Table::signal_column_inserted() +Glib::SignalProxy< void,int,int > Table::signal_column_inserted() { - return Glib::SignalProxy2< void,int,int >(this, &Table_signal_column_inserted_info); + return Glib::SignalProxy< void,int,int >(this, &Table_signal_column_inserted_info); } -Glib::SignalProxy2< void,int,int > Table::signal_row_deleted() +Glib::SignalProxy< void,int,int > Table::signal_row_deleted() { - return Glib::SignalProxy2< void,int,int >(this, &Table_signal_row_deleted_info); + return Glib::SignalProxy< void,int,int >(this, &Table_signal_row_deleted_info); } -Glib::SignalProxy2< void,int,int > Table::signal_column_deleted() +Glib::SignalProxy< void,int,int > Table::signal_column_deleted() { - return Glib::SignalProxy2< void,int,int >(this, &Table_signal_column_deleted_info); + return Glib::SignalProxy< void,int,int >(this, &Table_signal_column_deleted_info); } -Glib::SignalProxy0< void > Table::signal_row_reordered() +Glib::SignalProxy< void > Table::signal_row_reordered() { - return Glib::SignalProxy0< void >(this, &Table_signal_row_reordered_info); + return Glib::SignalProxy< void >(this, &Table_signal_row_reordered_info); } -Glib::SignalProxy0< void > Table::signal_column_reordered() +Glib::SignalProxy< void > Table::signal_column_reordered() { - return Glib::SignalProxy0< void >(this, &Table_signal_column_reordered_info); + return Glib::SignalProxy< void >(this, &Table_signal_column_reordered_info); } -Glib::SignalProxy0< void > Table::signal_model_changed() +Glib::SignalProxy< void > Table::signal_model_changed() { - return Glib::SignalProxy0< void >(this, &Table_signal_model_changed_info); + return Glib::SignalProxy< void >(this, &Table_signal_model_changed_info); } @@ -2165,7 +2078,7 @@ return retval; } - typedef Glib::RefPtr RType; + using RType = Glib::RefPtr; return RType(); } int Atk::Table::get_index_at_vfunc(int row, int column) const @@ -2181,7 +2094,7 @@ return retval; } - typedef int RType; + using RType = int; return RType(); } int Atk::Table::get_column_at_index_vfunc(int index) const @@ -2197,7 +2110,7 @@ return retval; } - typedef int RType; + using RType = int; return RType(); } int Atk::Table::get_row_at_index_vfunc(int index) const @@ -2213,7 +2126,7 @@ return retval; } - typedef int RType; + using RType = int; return RType(); } int Atk::Table::get_n_columns_vfunc() const @@ -2229,7 +2142,7 @@ return retval; } - typedef int RType; + using RType = int; return RType(); } int Atk::Table::get_n_rows_vfunc() const @@ -2245,7 +2158,7 @@ return retval; } - typedef int RType; + using RType = int; return RType(); } int Atk::Table::get_column_extent_at_vfunc(int row, int column) const @@ -2261,7 +2174,7 @@ return retval; } - typedef int RType; + using RType = int; return RType(); } int Atk::Table::get_row_extent_at_vfunc(int row, int column) const @@ -2277,7 +2190,7 @@ return retval; } - typedef int RType; + using RType = int; return RType(); } Glib::RefPtr Atk::Table::get_caption_vfunc() @@ -2293,7 +2206,7 @@ return retval; } - typedef Glib::RefPtr RType; + using RType = Glib::RefPtr; return RType(); } const char* Atk::Table::get_column_description_vfunc(int column) const @@ -2309,7 +2222,7 @@ return retval; } - typedef const char* RType; + using RType = const char*; return RType(); } Glib::RefPtr Atk::Table::get_column_header_vfunc(int column) @@ -2325,7 +2238,7 @@ return retval; } - typedef Glib::RefPtr RType; + using RType = Glib::RefPtr; return RType(); } const char* Atk::Table::get_row_description_vfunc(int row) const @@ -2341,7 +2254,7 @@ return retval; } - typedef const char* RType; + using RType = const char*; return RType(); } Glib::RefPtr Atk::Table::get_row_header_vfunc(int row) @@ -2357,7 +2270,7 @@ return retval; } - typedef Glib::RefPtr RType; + using RType = Glib::RefPtr; return RType(); } Glib::RefPtr Atk::Table::get_summary_vfunc() @@ -2373,7 +2286,7 @@ return retval; } - typedef Glib::RefPtr RType; + using RType = Glib::RefPtr; return RType(); } void Atk::Table::set_caption_vfunc(const Glib::RefPtr& caption) @@ -2461,7 +2374,7 @@ return retval; } - typedef bool RType; + using RType = bool; return RType(); } bool Atk::Table::is_row_selected_vfunc(int row) const @@ -2477,7 +2390,7 @@ return retval; } - typedef bool RType; + using RType = bool; return RType(); } bool Atk::Table::is_selected_vfunc(int row, int column) const @@ -2493,7 +2406,7 @@ return retval; } - typedef bool RType; + using RType = bool; return RType(); } bool Atk::Table::add_row_selection_vfunc(int row) @@ -2509,7 +2422,7 @@ return retval; } - typedef bool RType; + using RType = bool; return RType(); } bool Atk::Table::remove_row_selection_vfunc(int row) @@ -2525,7 +2438,7 @@ return retval; } - typedef bool RType; + using RType = bool; return RType(); } bool Atk::Table::add_column_selection_vfunc(int column) @@ -2541,7 +2454,7 @@ return retval; } - typedef bool RType; + using RType = bool; return RType(); } bool Atk::Table::remove_column_selection_vfunc(int column) @@ -2557,7 +2470,7 @@ return retval; } - typedef bool RType; + using RType = bool; return RType(); } int Atk::Table::get_selected_columns_vfunc(int** selected) const @@ -2573,7 +2486,7 @@ return retval; } - typedef int RType; + using RType = int; return RType(); } int Atk::Table::get_selected_rows_vfunc(int** selected) const @@ -2589,7 +2502,7 @@ return retval; } - typedef int RType; + using RType = int; return RType(); } diff -Nru atkmm1.6-2.24.2/atk/atkmm/table.h atkmm1.6-2.28.0/atk/atkmm/table.h --- atkmm1.6-2.24.2/atk/atkmm/table.h 2015-11-29 20:04:57.954597824 +0000 +++ atkmm1.6-2.28.0/atk/atkmm/table.h 2018-05-06 10:59:37.401586227 +0000 @@ -1,5 +1,4 @@ -// -*- c++ -*- -// Generated by gmmproc 2.47.3.1 -- DO NOT MODIFY! +// Generated by gmmproc 2.56.0 -- DO NOT MODIFY! #ifndef _ATKMM_TABLE_H #define _ATKMM_TABLE_H @@ -40,8 +39,8 @@ #ifndef DOXYGEN_SHOULD_SKIP_THIS -typedef struct _AtkTable AtkTable; -typedef struct _AtkTableClass AtkTableClass; +using AtkTable = struct _AtkTable; +using AtkTableClass = struct _AtkTableClass; #endif /* DOXYGEN_SHOULD_SKIP_THIS */ @@ -75,10 +74,10 @@ #ifndef DOXYGEN_SHOULD_SKIP_THIS public: - typedef Table CppObjectType; - typedef Table_Class CppClassType; - typedef AtkTable BaseObjectType; - typedef AtkTableIface BaseClassType; + using CppObjectType = Table; + using CppClassType = Table_Class; + using BaseObjectType = AtkTable; + using BaseClassType = AtkTableIface; // noncopyable Table(const Table&) = delete; @@ -96,10 +95,10 @@ Table(); #ifndef DOXYGEN_SHOULD_SKIP_THIS - /** Called by constructors of derived classes. Provide the result of - * the Class init() function to ensure that it is properly + /** Called by constructors of derived classes. Provide the result of + * the Class init() function to ensure that it is properly * initialized. - * + * * @param interface_class The Class object for the derived type. */ explicit Table(const Glib::Interface_Class& interface_class); @@ -107,7 +106,7 @@ public: // This is public so that C++ wrapper instances can be // created for C instances of unwrapped types. - // For instance, if an unexpected C type implements the C interface. + // For instance, if an unexpected C type implements the C interface. explicit Table(AtkTable* castitem); protected: @@ -118,7 +117,7 @@ Table(Table&& src) noexcept; Table& operator=(Table&& src) noexcept; - virtual ~Table() noexcept; + ~Table() noexcept override; static void add_interface(GType gtype_implementer); @@ -448,6 +447,8 @@ * @par Slot Prototype: * void on_my_%row_inserted(int row, int num_inserted) * + * Flags: Run Last + * * The "row-inserted" signal is emitted by an object which * implements the AtkTable interface when a row is inserted. * @@ -455,13 +456,15 @@ * @param num_inserted The number of rows inserted. */ - Glib::SignalProxy2< void,int,int > signal_row_inserted(); + Glib::SignalProxy< void,int,int > signal_row_inserted(); /** * @par Slot Prototype: * void on_my_%column_inserted(int column, int num_inserted) * + * Flags: Run Last + * * The "column-inserted" signal is emitted by an object which * implements the AtkTable interface when a column is inserted. * @@ -469,13 +472,15 @@ * @param num_inserted The number of colums inserted. */ - Glib::SignalProxy2< void,int,int > signal_column_inserted(); + Glib::SignalProxy< void,int,int > signal_column_inserted(); /** * @par Slot Prototype: * void on_my_%row_deleted(int row, int num_deleted) * + * Flags: Run Last + * * The "row-deleted" signal is emitted by an object which * implements the AtkTable interface when a row is deleted. * @@ -483,13 +488,15 @@ * @param num_deleted The number of rows deleted. */ - Glib::SignalProxy2< void,int,int > signal_row_deleted(); + Glib::SignalProxy< void,int,int > signal_row_deleted(); /** * @par Slot Prototype: * void on_my_%column_deleted(int column, int num_deleted) * + * Flags: Run Last + * * The "column-deleted" signal is emitted by an object which * implements the AtkTable interface when a column is deleted. * @@ -497,43 +504,49 @@ * @param num_deleted The number of columns deleted. */ - Glib::SignalProxy2< void,int,int > signal_column_deleted(); + Glib::SignalProxy< void,int,int > signal_column_deleted(); /** * @par Slot Prototype: * void on_my_%row_reordered() * + * Flags: Run Last + * * The "row-reordered" signal is emitted by an object which * implements the AtkTable interface when the rows are * reordered. */ - Glib::SignalProxy0< void > signal_row_reordered(); + Glib::SignalProxy< void > signal_row_reordered(); /** * @par Slot Prototype: * void on_my_%column_reordered() * + * Flags: Run Last + * * The "column-reordered" signal is emitted by an object which * implements the AtkTable interface when the columns are * reordered. */ - Glib::SignalProxy0< void > signal_column_reordered(); + Glib::SignalProxy< void > signal_column_reordered(); /** * @par Slot Prototype: * void on_my_%model_changed() * + * Flags: Run Last + * * The "model-changed" signal is emitted by an object which * implements the AtkTable interface when the model displayed by * the table changes. */ - Glib::SignalProxy0< void > signal_model_changed(); + Glib::SignalProxy< void > signal_model_changed(); protected: @@ -631,7 +644,7 @@ namespace Glib { /** A Glib::wrap() method for this object. - * + * * @param object The C instance. * @param take_copy False if the result should take ownership of the C instance. True if it should take a new copy or ref. * @result A C++ instance that wraps this C instance. diff -Nru atkmm1.6-2.24.2/atk/atkmm/text.cc atkmm1.6-2.28.0/atk/atkmm/text.cc --- atkmm1.6-2.24.2/atk/atkmm/text.cc 2015-11-29 20:04:58.154572791 +0000 +++ atkmm1.6-2.28.0/atk/atkmm/text.cc 2018-05-06 10:59:37.505591220 +0000 @@ -1,4 +1,4 @@ -// Generated by gmmproc 2.47.3.1 -- DO NOT MODIFY! +// Generated by gmmproc 2.56.0 -- DO NOT MODIFY! #include @@ -127,7 +127,7 @@ static void Text_signal_text_changed_callback(AtkText* self, gint p0,gint p1,void* data) { using namespace Atk; - typedef sigc::slot< void,int,int > SlotType; + using SlotType = sigc::slot< void,int,int >; auto obj = dynamic_cast(Glib::ObjectBase::_get_current_wrapper((GObject*) self)); // Do not try to call a signal on a disassociated wrapper. @@ -158,7 +158,7 @@ static void Text_signal_text_caret_moved_callback(AtkText* self, gint p0,void* data) { using namespace Atk; - typedef sigc::slot< void,int > SlotType; + using SlotType = sigc::slot< void,int >; auto obj = dynamic_cast(Glib::ObjectBase::_get_current_wrapper((GObject*) self)); // Do not try to call a signal on a disassociated wrapper. @@ -208,16 +208,16 @@ { - Glib::ustring Attribute::get_name() const +Glib::ustring Attribute::get_name() const { return Glib::convert_const_gchar_ptr_to_ustring(gobj()->name); } - - Glib::ustring Attribute::get_value() const + +Glib::ustring Attribute::get_value() const { return Glib::convert_const_gchar_ptr_to_ustring(gobj()->value); } - + } // namespace Atk @@ -285,7 +285,7 @@ //This is just to avoid an "unused variable" warning when there are no vfuncs or signal handlers to connect. //This is a temporary fix until I find out why I can not seem to derive a GtkFileChooser interface. murrayc - g_assert(klass != nullptr); + g_assert(klass != nullptr); klass->get_text = &get_text_vfunc_callback; klass->get_character_at_offset = &get_character_at_offset_vfunc_callback; @@ -347,12 +347,9 @@ // Call the original underlying C function: if(base && base->get_text) - { - gchar* retval = (*base->get_text)(self, start_offset, end_offset); - return retval; - } + return (*base->get_text)(self, start_offset, end_offset); - typedef gchar* RType; + using RType = gchar*; return RType(); } gunichar Text_Class::get_character_at_offset_vfunc_callback(AtkText* self, gint offset) @@ -390,12 +387,9 @@ // Call the original underlying C function: if(base && base->get_character_at_offset) - { - gunichar retval = (*base->get_character_at_offset)(self, offset); - return retval; - } + return (*base->get_character_at_offset)(self, offset); - typedef gunichar RType; + using RType = gunichar; return RType(); } gchar* Text_Class::get_text_after_offset_vfunc_callback(AtkText* self, gint offset, AtkTextBoundary boundary_type, gint* start_offset, gint* end_offset) @@ -436,12 +430,9 @@ // Call the original underlying C function: if(base && base->get_text_after_offset) - { - gchar* retval = (*base->get_text_after_offset)(self, offset, boundary_type, start_offset, end_offset); - return retval; - } + return (*base->get_text_after_offset)(self, offset, boundary_type, start_offset, end_offset); - typedef gchar* RType; + using RType = gchar*; return RType(); } gchar* Text_Class::get_text_at_offset_vfunc_callback(AtkText* self, gint offset, AtkTextBoundary boundary_type, gint* start_offset, gint* end_offset) @@ -482,12 +473,9 @@ // Call the original underlying C function: if(base && base->get_text_at_offset) - { - gchar* retval = (*base->get_text_at_offset)(self, offset, boundary_type, start_offset, end_offset); - return retval; - } + return (*base->get_text_at_offset)(self, offset, boundary_type, start_offset, end_offset); - typedef gchar* RType; + using RType = gchar*; return RType(); } gchar* Text_Class::get_text_before_offset_vfunc_callback(AtkText* self, gint offset, AtkTextBoundary boundary_type, gint* start_offset, gint* end_offset) @@ -528,12 +516,9 @@ // Call the original underlying C function: if(base && base->get_text_before_offset) - { - gchar* retval = (*base->get_text_before_offset)(self, offset, boundary_type, start_offset, end_offset); - return retval; - } + return (*base->get_text_before_offset)(self, offset, boundary_type, start_offset, end_offset); - typedef gchar* RType; + using RType = gchar*; return RType(); } gint Text_Class::get_caret_offset_vfunc_callback(AtkText* self) @@ -570,12 +555,9 @@ // Call the original underlying C function: if(base && base->get_caret_offset) - { - gint retval = (*base->get_caret_offset)(self); - return retval; - } + return (*base->get_caret_offset)(self); - typedef gint RType; + using RType = gint; return RType(); } void Text_Class::get_character_extents_vfunc_callback(AtkText* self, gint offset, gint* x, gint* y, gint* width, gint* height, AtkCoordType coords) @@ -619,10 +601,7 @@ // Call the original underlying C function: if(base && base->get_character_extents) - { (*base->get_character_extents)(self, offset, x, y, width, height, coords); - } - } AtkAttributeSet* Text_Class::get_run_attributes_vfunc_callback(AtkText* self, gint offset, gint* start_offset, gint* end_offset) { @@ -661,12 +640,9 @@ // Call the original underlying C function: if(base && base->get_run_attributes) - { - AtkAttributeSet* retval = (*base->get_run_attributes)(self, offset, start_offset, end_offset); - return retval; - } + return (*base->get_run_attributes)(self, offset, start_offset, end_offset); - typedef AtkAttributeSet* RType; + using RType = AtkAttributeSet*; return RType(); } AtkAttributeSet* Text_Class::get_default_attributes_vfunc_callback(AtkText* self) @@ -703,12 +679,9 @@ // Call the original underlying C function: if(base && base->get_default_attributes) - { - AtkAttributeSet* retval = (*base->get_default_attributes)(self); - return retval; - } + return (*base->get_default_attributes)(self); - typedef AtkAttributeSet* RType; + using RType = AtkAttributeSet*; return RType(); } gint Text_Class::get_character_count_vfunc_callback(AtkText* self) @@ -745,12 +718,9 @@ // Call the original underlying C function: if(base && base->get_character_count) - { - gint retval = (*base->get_character_count)(self); - return retval; - } + return (*base->get_character_count)(self); - typedef gint RType; + using RType = gint; return RType(); } gint Text_Class::get_offset_at_point_vfunc_callback(AtkText* self, gint x, gint y, AtkCoordType coords) @@ -790,12 +760,9 @@ // Call the original underlying C function: if(base && base->get_offset_at_point) - { - gint retval = (*base->get_offset_at_point)(self, x, y, coords); - return retval; - } + return (*base->get_offset_at_point)(self, x, y, coords); - typedef gint RType; + using RType = gint; return RType(); } gint Text_Class::get_n_selections_vfunc_callback(AtkText* self) @@ -832,12 +799,9 @@ // Call the original underlying C function: if(base && base->get_n_selections) - { - gint retval = (*base->get_n_selections)(self); - return retval; - } + return (*base->get_n_selections)(self); - typedef gint RType; + using RType = gint; return RType(); } gchar* Text_Class::get_selection_vfunc_callback(AtkText* self, gint selection_num, gint* start_offset, gint* end_offset) @@ -877,12 +841,9 @@ // Call the original underlying C function: if(base && base->get_selection) - { - gchar* retval = (*base->get_selection)(self, selection_num, start_offset, end_offset); - return retval; - } + return (*base->get_selection)(self, selection_num, start_offset, end_offset); - typedef gchar* RType; + using RType = gchar*; return RType(); } gboolean Text_Class::add_selection_vfunc_callback(AtkText* self, gint start_offset, gint end_offset) @@ -921,12 +882,9 @@ // Call the original underlying C function: if(base && base->add_selection) - { - gboolean retval = (*base->add_selection)(self, start_offset, end_offset); - return retval; - } + return (*base->add_selection)(self, start_offset, end_offset); - typedef gboolean RType; + using RType = gboolean; return RType(); } gboolean Text_Class::remove_selection_vfunc_callback(AtkText* self, gint selection_num) @@ -964,12 +922,9 @@ // Call the original underlying C function: if(base && base->remove_selection) - { - gboolean retval = (*base->remove_selection)(self, selection_num); - return retval; - } + return (*base->remove_selection)(self, selection_num); - typedef gboolean RType; + using RType = gboolean; return RType(); } gboolean Text_Class::set_selection_vfunc_callback(AtkText* self, gint selection_num, gint start_offset, gint end_offset) @@ -1009,12 +964,9 @@ // Call the original underlying C function: if(base && base->set_selection) - { - gboolean retval = (*base->set_selection)(self, selection_num, start_offset, end_offset); - return retval; - } + return (*base->set_selection)(self, selection_num, start_offset, end_offset); - typedef gboolean RType; + using RType = gboolean; return RType(); } gboolean Text_Class::set_caret_offset_vfunc_callback(AtkText* self, gint offset) @@ -1052,12 +1004,9 @@ // Call the original underlying C function: if(base && base->set_caret_offset) - { - gboolean retval = (*base->set_caret_offset)(self, offset); - return retval; - } + return (*base->set_caret_offset)(self, offset); - typedef gboolean RType; + using RType = gboolean; return RType(); } @@ -1382,27 +1331,27 @@ } -Glib::SignalProxy2< void,int,int > Text::signal_text_changed() +Glib::SignalProxy< void,int,int > Text::signal_text_changed() { - return Glib::SignalProxy2< void,int,int >(this, &Text_signal_text_changed_info); + return Glib::SignalProxy< void,int,int >(this, &Text_signal_text_changed_info); } -Glib::SignalProxy1< void,int > Text::signal_text_caret_moved() +Glib::SignalProxy< void,int > Text::signal_text_caret_moved() { - return Glib::SignalProxy1< void,int >(this, &Text_signal_text_caret_moved_info); + return Glib::SignalProxy< void,int >(this, &Text_signal_text_caret_moved_info); } -Glib::SignalProxy0< void > Text::signal_text_selection_changed() +Glib::SignalProxy< void > Text::signal_text_selection_changed() { - return Glib::SignalProxy0< void >(this, &Text_signal_text_selection_changed_info); + return Glib::SignalProxy< void >(this, &Text_signal_text_selection_changed_info); } -Glib::SignalProxy0< void > Text::signal_text_attributes_changed() +Glib::SignalProxy< void > Text::signal_text_attributes_changed() { - return Glib::SignalProxy0< void >(this, &Text_signal_text_attributes_changed_info); + return Glib::SignalProxy< void >(this, &Text_signal_text_attributes_changed_info); } @@ -1456,11 +1405,11 @@ if(base && base->get_text) { - Glib::ustring retval(Glib::convert_const_gchar_ptr_to_ustring((*base->get_text)(const_cast(gobj()),start_offset,end_offset))); + Glib::ustring retval(Glib::convert_return_gchar_ptr_to_ustring((*base->get_text)(const_cast(gobj()),start_offset,end_offset))); return retval; } - typedef Glib::ustring RType; + using RType = Glib::ustring; return RType(); } gunichar Atk::Text::get_character_at_offset_vfunc(int offset) const @@ -1476,7 +1425,7 @@ return retval; } - typedef gunichar RType; + using RType = gunichar; return RType(); } Glib::ustring Atk::Text::get_text_after_offset_vfunc(int offset, TextBoundary boundary_type, int& start_offset, int& end_offset) const @@ -1488,11 +1437,11 @@ if(base && base->get_text_after_offset) { - Glib::ustring retval(Glib::convert_const_gchar_ptr_to_ustring((*base->get_text_after_offset)(const_cast(gobj()),offset,((AtkTextBoundary)(boundary_type)),&(start_offset),&(end_offset)))); + Glib::ustring retval(Glib::convert_return_gchar_ptr_to_ustring((*base->get_text_after_offset)(const_cast(gobj()),offset,((AtkTextBoundary)(boundary_type)),&(start_offset),&(end_offset)))); return retval; } - typedef Glib::ustring RType; + using RType = Glib::ustring; return RType(); } Glib::ustring Atk::Text::get_text_at_offset_vfunc(int offset, TextBoundary boundary_type, int& start_offset, int& end_offset) const @@ -1504,11 +1453,11 @@ if(base && base->get_text_at_offset) { - Glib::ustring retval(Glib::convert_const_gchar_ptr_to_ustring((*base->get_text_at_offset)(const_cast(gobj()),offset,((AtkTextBoundary)(boundary_type)),&(start_offset),&(end_offset)))); + Glib::ustring retval(Glib::convert_return_gchar_ptr_to_ustring((*base->get_text_at_offset)(const_cast(gobj()),offset,((AtkTextBoundary)(boundary_type)),&(start_offset),&(end_offset)))); return retval; } - typedef Glib::ustring RType; + using RType = Glib::ustring; return RType(); } Glib::ustring Atk::Text::get_text_before_offset_vfunc(int offset, TextBoundary boundary_type, int& start_offset, int& end_offset) const @@ -1520,11 +1469,11 @@ if(base && base->get_text_before_offset) { - Glib::ustring retval(Glib::convert_const_gchar_ptr_to_ustring((*base->get_text_before_offset)(const_cast(gobj()),offset,((AtkTextBoundary)(boundary_type)),&(start_offset),&(end_offset)))); + Glib::ustring retval(Glib::convert_return_gchar_ptr_to_ustring((*base->get_text_before_offset)(const_cast(gobj()),offset,((AtkTextBoundary)(boundary_type)),&(start_offset),&(end_offset)))); return retval; } - typedef Glib::ustring RType; + using RType = Glib::ustring; return RType(); } int Atk::Text::get_caret_offset_vfunc() const @@ -1540,7 +1489,7 @@ return retval; } - typedef int RType; + using RType = int; return RType(); } void Atk::Text::get_character_extents_vfunc(int offset, int& x, int& y, int& width, int& height, CoordType coords) const @@ -1568,7 +1517,7 @@ return retval; } - typedef AtkAttributeSet* RType; + using RType = AtkAttributeSet*; return RType(); } AtkAttributeSet* Atk::Text::get_default_attributes_vfunc() const @@ -1584,7 +1533,7 @@ return retval; } - typedef AtkAttributeSet* RType; + using RType = AtkAttributeSet*; return RType(); } int Atk::Text::get_character_count_vfunc() const @@ -1600,7 +1549,7 @@ return retval; } - typedef int RType; + using RType = int; return RType(); } int Atk::Text::get_offset_at_point_vfunc(int x, int y, CoordType coords) const @@ -1616,7 +1565,7 @@ return retval; } - typedef int RType; + using RType = int; return RType(); } int Atk::Text::get_n_selections_vfunc() const @@ -1632,7 +1581,7 @@ return retval; } - typedef int RType; + using RType = int; return RType(); } Glib::ustring Atk::Text::get_selection_vfunc(int selection_num, int& start_offset, int& end_offset) const @@ -1644,11 +1593,11 @@ if(base && base->get_selection) { - Glib::ustring retval(Glib::convert_const_gchar_ptr_to_ustring((*base->get_selection)(const_cast(gobj()),selection_num,&(start_offset),&(end_offset)))); + Glib::ustring retval(Glib::convert_return_gchar_ptr_to_ustring((*base->get_selection)(const_cast(gobj()),selection_num,&(start_offset),&(end_offset)))); return retval; } - typedef Glib::ustring RType; + using RType = Glib::ustring; return RType(); } bool Atk::Text::add_selection_vfunc(int start_offset, int end_offset) @@ -1664,7 +1613,7 @@ return retval; } - typedef bool RType; + using RType = bool; return RType(); } bool Atk::Text::remove_selection_vfunc(int selection_num) @@ -1680,7 +1629,7 @@ return retval; } - typedef bool RType; + using RType = bool; return RType(); } bool Atk::Text::set_selection_vfunc(int selection_num, int start_offset, int end_offset) @@ -1696,7 +1645,7 @@ return retval; } - typedef bool RType; + using RType = bool; return RType(); } bool Atk::Text::set_caret_offset_vfunc(int offset) @@ -1712,7 +1661,7 @@ return retval; } - typedef bool RType; + using RType = bool; return RType(); } diff -Nru atkmm1.6-2.24.2/atk/atkmm/text.h atkmm1.6-2.28.0/atk/atkmm/text.h --- atkmm1.6-2.24.2/atk/atkmm/text.h 2015-11-29 20:04:58.146573792 +0000 +++ atkmm1.6-2.28.0/atk/atkmm/text.h 2018-05-06 10:59:37.477589876 +0000 @@ -1,5 +1,4 @@ -// -*- c++ -*- -// Generated by gmmproc 2.47.3.1 -- DO NOT MODIFY! +// Generated by gmmproc 2.56.0 -- DO NOT MODIFY! #ifndef _ATKMM_TEXT_H #define _ATKMM_TEXT_H @@ -33,8 +32,8 @@ #ifndef DOXYGEN_SHOULD_SKIP_THIS -typedef struct _AtkText AtkText; -typedef struct _AtkTextClass AtkTextClass; +using AtkText = struct _AtkText; +using AtkTextClass = struct _AtkTextClass; #endif /* DOXYGEN_SHOULD_SKIP_THIS */ @@ -50,8 +49,8 @@ { public: #ifndef DOXYGEN_SHOULD_SKIP_THIS - typedef Attribute CppObjectType; - typedef AtkAttribute BaseObjectType; + using CppObjectType = Attribute; + using BaseObjectType = AtkAttribute; #endif /* DOXYGEN_SHOULD_SKIP_THIS */ private: @@ -68,9 +67,9 @@ void swap(Attribute& other); - Glib::ustring get_name() const; - Glib::ustring get_value() const; - + Glib::ustring get_name() const; + Glib::ustring get_value() const; + /// Provides access to the underlying C GObject. AtkAttribute* gobj() { return &gobject_; } @@ -233,7 +232,6 @@ } // namespace Atk - #ifndef DOXYGEN_SHOULD_SKIP_THIS namespace Glib { @@ -248,7 +246,6 @@ } // namespace Glib #endif /* DOXYGEN_SHOULD_SKIP_THIS */ - namespace Atk { @@ -340,7 +337,6 @@ } // namespace Atk - #ifndef DOXYGEN_SHOULD_SKIP_THIS namespace Glib { @@ -355,7 +351,6 @@ } // namespace Glib #endif /* DOXYGEN_SHOULD_SKIP_THIS */ - namespace Atk { @@ -388,7 +383,6 @@ } // namespace Atk - #ifndef DOXYGEN_SHOULD_SKIP_THIS namespace Glib { @@ -403,7 +397,6 @@ } // namespace Glib #endif /* DOXYGEN_SHOULD_SKIP_THIS */ - namespace Atk { @@ -450,7 +443,6 @@ } // namespace Atk - #ifndef DOXYGEN_SHOULD_SKIP_THIS namespace Glib { @@ -465,7 +457,6 @@ } // namespace Glib #endif /* DOXYGEN_SHOULD_SKIP_THIS */ - namespace Atk { @@ -490,10 +481,10 @@ #ifndef DOXYGEN_SHOULD_SKIP_THIS public: - typedef Text CppObjectType; - typedef Text_Class CppClassType; - typedef AtkText BaseObjectType; - typedef AtkTextIface BaseClassType; + using CppObjectType = Text; + using CppClassType = Text_Class; + using BaseObjectType = AtkText; + using BaseClassType = AtkTextIface; // noncopyable Text(const Text&) = delete; @@ -511,10 +502,10 @@ Text(); #ifndef DOXYGEN_SHOULD_SKIP_THIS - /** Called by constructors of derived classes. Provide the result of - * the Class init() function to ensure that it is properly + /** Called by constructors of derived classes. Provide the result of + * the Class init() function to ensure that it is properly * initialized. - * + * * @param interface_class The Class object for the derived type. */ explicit Text(const Glib::Interface_Class& interface_class); @@ -522,7 +513,7 @@ public: // This is public so that C++ wrapper instances can be // created for C instances of unwrapped types. - // For instance, if an unexpected C type implements the C interface. + // For instance, if an unexpected C type implements the C interface. explicit Text(AtkText* castitem); protected: @@ -533,7 +524,7 @@ Text(Text&& src) noexcept; Text& operator=(Text&& src) noexcept; - virtual ~Text() noexcept; + ~Text() noexcept override; static void add_interface(GType gtype_implementer); @@ -561,7 +552,7 @@ * @param start_offset Start position. * @param end_offset End position, or -1 for the end of the string. * @return A newly allocated string containing the text from @a start_offset up - * to, but not including @a end_offset. Use Glib::free() to free the returned string. + * to, but not including @a end_offset. */ Glib::ustring get_text(int start_offset, int end_offset) const; @@ -586,7 +577,7 @@ * @param end_offset The offset of the first character after the * returned substring. * @return A newly allocated string containing the text after @a offset bounded - * by the specified @a boundary_type. Use Glib::free() to free the returned string. + * by the specified @a boundary_type. */ Glib::ustring get_text_after_offset(int offset, TextBoundary boundary_type, int& start_offset, int& end_offset) const; #endif // ATKMM_DISABLE_DEPRECATED @@ -630,7 +621,7 @@ * @param end_offset The offset of the first character after the * returned substring. * @return A newly allocated string containing the text at @a offset bounded by - * the specified @a boundary_type. Use Glib::free() to free the returned string. + * the specified @a boundary_type. */ Glib::ustring get_text_at_offset(int offset, TextBoundary boundary_type, int& start_offset, int& end_offset) const; #endif // ATKMM_DISABLE_DEPRECATED @@ -650,7 +641,7 @@ * @param end_offset The offset of the first character after the * returned substring. * @return A newly allocated string containing the text before @a offset bounded - * by the specified @a boundary_type. Use Glib::free() to free the returned string. + * by the specified @a boundary_type. */ Glib::ustring get_text_before_offset(int offset, TextBoundary boundary_type, int& start_offset, int& end_offset) const; #endif // ATKMM_DISABLE_DEPRECATED @@ -696,8 +687,7 @@ * @param end_offset The offset of the first character after the returned string, * or -1 if an error has occurred (e.g. invalid offset, not implemented). * @return A newly allocated string containing the text - * at the @a offset bounded by the specified @a granularity. Use - * Glib::free() to free the returned string. Returns nullptr if the + * at the @a offset bounded by the specified @a granularity. Returns nullptr if the * offset is invalid or no implementation is available. */ Glib::ustring get_string_at_offset(int offset, TextGranularity granularity, int& start_offset, int& end_offset); @@ -781,8 +771,7 @@ * @param start_offset Passes back the start position of the selected region. * @param end_offset Passes back the end position of (e.g. offset immediately past) * the selected region. - * @return A newly allocated string containing the selected text. Use Glib::free() - * to free the returned string. + * @return A newly allocated string containing the selected text. */ Glib::ustring get_selection(int selection_num, int& start_offset, int& end_offset) const; @@ -860,6 +849,8 @@ * @par Slot Prototype: * void on_my_%text_changed(int position, int length) * + * Flags: Run Last + * * The "text-changed" signal is emitted when the text of the * object which implements the AtkText interface changes, This * signal will have a detail which is either "insert" or @@ -873,13 +864,15 @@ * @param length The length (in characters) of text inserted or deleted. */ - Glib::SignalProxy2< void,int,int > signal_text_changed(); + Glib::SignalProxy< void,int,int > signal_text_changed(); /** * @par Slot Prototype: * void on_my_%text_caret_moved(int location) * + * Flags: Run Last + * * The "text-caret-moved" signal is emitted when the caret * position of the text of an object which implements AtkText * changes. @@ -887,30 +880,34 @@ * @param location The new position of the text caret. */ - Glib::SignalProxy1< void,int > signal_text_caret_moved(); + Glib::SignalProxy< void,int > signal_text_caret_moved(); /** * @par Slot Prototype: * void on_my_%text_selection_changed() * + * Flags: Run Last + * * The "text-selection-changed" signal is emitted when the * selected text of an object which implements AtkText changes. */ - Glib::SignalProxy0< void > signal_text_selection_changed(); + Glib::SignalProxy< void > signal_text_selection_changed(); /** * @par Slot Prototype: * void on_my_%text_attributes_changed() * + * Flags: Run Last + * * The "text-attributes-changed" signal is emitted when the text * attributes of the text of an object which implements AtkText * changes. */ - Glib::SignalProxy0< void > signal_text_attributes_changed(); + Glib::SignalProxy< void > signal_text_attributes_changed(); protected: @@ -989,7 +986,7 @@ namespace Glib { /** A Glib::wrap() method for this object. - * + * * @param object The C instance. * @param take_copy False if the result should take ownership of the C instance. True if it should take a new copy or ref. * @result A C++ instance that wraps this C instance. diff -Nru atkmm1.6-2.24.2/atk/atkmm/value.cc atkmm1.6-2.28.0/atk/atkmm/value.cc --- atkmm1.6-2.24.2/atk/atkmm/value.cc 2015-11-29 20:04:58.306553772 +0000 +++ atkmm1.6-2.28.0/atk/atkmm/value.cc 2018-05-06 10:59:37.557593716 +0000 @@ -1,4 +1,4 @@ -// Generated by gmmproc 2.47.3.1 -- DO NOT MODIFY! +// Generated by gmmproc 2.56.0 -- DO NOT MODIFY! #include @@ -89,7 +89,7 @@ //This is just to avoid an "unused variable" warning when there are no vfuncs or signal handlers to connect. //This is a temporary fix until I find out why I can not seem to derive a GtkFileChooser interface. murrayc - g_assert(klass != nullptr); + g_assert(klass != nullptr); klass->get_current_value = &get_current_value_vfunc_callback; klass->get_maximum_value = &get_maximum_value_vfunc_callback; @@ -134,10 +134,7 @@ // Call the original underlying C function: if(base && base->get_current_value) - { (*base->get_current_value)(self, value); - } - } void Value_Class::get_maximum_value_vfunc_callback(AtkValue* self, GValue* value) { @@ -175,10 +172,7 @@ // Call the original underlying C function: if(base && base->get_maximum_value) - { (*base->get_maximum_value)(self, value); - } - } void Value_Class::get_minimum_value_vfunc_callback(AtkValue* self, GValue* value) { @@ -216,10 +210,7 @@ // Call the original underlying C function: if(base && base->get_minimum_value) - { (*base->get_minimum_value)(self, value); - } - } gboolean Value_Class::set_current_value_vfunc_callback(AtkValue* self, const GValue* value) { @@ -256,12 +247,9 @@ // Call the original underlying C function: if(base && base->set_current_value) - { - gboolean retval = (*base->set_current_value)(self, value); - return retval; - } + return (*base->set_current_value)(self, value); - typedef gboolean RType; + using RType = gboolean; return RType(); } @@ -423,7 +411,7 @@ return retval; } - typedef bool RType; + using RType = bool; return RType(); } diff -Nru atkmm1.6-2.24.2/atk/atkmm/value.h atkmm1.6-2.28.0/atk/atkmm/value.h --- atkmm1.6-2.24.2/atk/atkmm/value.h 2015-11-29 20:04:58.298554772 +0000 +++ atkmm1.6-2.28.0/atk/atkmm/value.h 2018-05-06 10:59:37.537592756 +0000 @@ -1,5 +1,4 @@ -// -*- c++ -*- -// Generated by gmmproc 2.47.3.1 -- DO NOT MODIFY! +// Generated by gmmproc 2.56.0 -- DO NOT MODIFY! #ifndef _ATKMM_VALUE_H #define _ATKMM_VALUE_H @@ -40,8 +39,8 @@ #ifndef DOXYGEN_SHOULD_SKIP_THIS -typedef struct _AtkValue AtkValue; -typedef struct _AtkValueClass AtkValueClass; +using AtkValue = struct _AtkValue; +using AtkValueClass = struct _AtkValueClass; #endif /* DOXYGEN_SHOULD_SKIP_THIS */ @@ -66,10 +65,10 @@ #ifndef DOXYGEN_SHOULD_SKIP_THIS public: - typedef Value CppObjectType; - typedef Value_Class CppClassType; - typedef AtkValue BaseObjectType; - typedef AtkValueIface BaseClassType; + using CppObjectType = Value; + using CppClassType = Value_Class; + using BaseObjectType = AtkValue; + using BaseClassType = AtkValueIface; // noncopyable Value(const Value&) = delete; @@ -87,10 +86,10 @@ Value(); #ifndef DOXYGEN_SHOULD_SKIP_THIS - /** Called by constructors of derived classes. Provide the result of - * the Class init() function to ensure that it is properly + /** Called by constructors of derived classes. Provide the result of + * the Class init() function to ensure that it is properly * initialized. - * + * * @param interface_class The Class object for the derived type. */ explicit Value(const Glib::Interface_Class& interface_class); @@ -98,7 +97,7 @@ public: // This is public so that C++ wrapper instances can be // created for C instances of unwrapped types. - // For instance, if an unexpected C type implements the C interface. + // For instance, if an unexpected C type implements the C interface. explicit Value(AtkValue* castitem); protected: @@ -109,7 +108,7 @@ Value(Value&& src) noexcept; Value& operator=(Value&& src) noexcept; - virtual ~Value() noexcept; + ~Value() noexcept override; static void add_interface(GType gtype_implementer); @@ -275,7 +274,7 @@ namespace Glib { /** A Glib::wrap() method for this object. - * + * * @param object The C instance. * @param take_copy False if the result should take ownership of the C instance. True if it should take a new copy or ref. * @result A C++ instance that wraps this C instance. diff -Nru atkmm1.6-2.24.2/atk/src/Makefile.in atkmm1.6-2.28.0/atk/src/Makefile.in --- atkmm1.6-2.24.2/atk/src/Makefile.in 2015-11-29 20:04:51.331430114 +0000 +++ atkmm1.6-2.28.0/atk/src/Makefile.in 2018-11-04 11:44:50.759546627 +0000 @@ -1,7 +1,7 @@ -# Makefile.in generated by automake 1.15 from Makefile.am. +# Makefile.in generated by automake 1.16.1 from Makefile.am. # @configure_input@ -# Copyright (C) 1994-2014 Free Software Foundation, Inc. +# Copyright (C) 1994-2018 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -192,6 +192,7 @@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ +LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ MAINT = @MAINT@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ @@ -267,6 +268,7 @@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ +runstatedir = @runstatedir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ @@ -362,8 +364,8 @@ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ - echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \ esac; $(srcdir)/filelist.am $(top_srcdir)/codegen/m4/filelist.am $(top_srcdir)/build/generate-binding.am $(am__empty): @@ -388,7 +390,10 @@ cscope cscopelist: -distdir: $(DISTFILES) +distdir: $(BUILT_SOURCES) + $(MAKE) $(AM_MAKEFLAGS) distdir-am + +distdir-am: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ diff -Nru atkmm1.6-2.24.2/atk/src/text.hg atkmm1.6-2.28.0/atk/src/text.hg --- atkmm1.6-2.24.2/atk/src/text.hg 2015-06-29 08:11:37.862717698 +0000 +++ atkmm1.6-2.28.0/atk/src/text.hg 2018-05-06 10:59:07.564153544 +0000 @@ -173,7 +173,7 @@ protected: #m4 _CONVERSION(`Glib::ustring', `gchar*', `g_strdup(($3).c_str())') - +#m4 _CONVERSION(`gchar*', `Glib::ustring', `Glib::convert_return_gchar_ptr_to_ustring($3)') _WRAP_VFUNC(Glib::ustring get_text(int start_offset, int end_offset) const, get_text) _WRAP_VFUNC(gunichar get_character_at_offset(int offset) const, get_character_at_offset) diff -Nru atkmm1.6-2.24.2/build/compile atkmm1.6-2.28.0/build/compile --- atkmm1.6-2.24.2/build/compile 2015-11-29 20:04:51.151452806 +0000 +++ atkmm1.6-2.28.0/build/compile 2018-11-04 11:44:50.447543683 +0000 @@ -1,9 +1,9 @@ #! /bin/sh # Wrapper for compilers which do not understand '-c -o'. -scriptversion=2012-10-14.11; # UTC +scriptversion=2018-03-07.03; # UTC -# Copyright (C) 1999-2014 Free Software Foundation, Inc. +# Copyright (C) 1999-2018 Free Software Foundation, Inc. # Written by Tom Tromey . # # This program is free software; you can redistribute it and/or modify @@ -17,7 +17,7 @@ # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License -# along with this program. If not, see . +# along with this program. If not, see . # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a @@ -255,7 +255,8 @@ echo "compile $scriptversion" exit $? ;; - cl | *[/\\]cl | cl.exe | *[/\\]cl.exe ) + cl | *[/\\]cl | cl.exe | *[/\\]cl.exe | \ + icl | *[/\\]icl | icl.exe | *[/\\]icl.exe ) func_cl_wrapper "$@" # Doesn't return... ;; esac @@ -339,9 +340,9 @@ # Local Variables: # mode: shell-script # sh-indentation: 2 -# eval: (add-hook 'write-file-hooks 'time-stamp) +# eval: (add-hook 'before-save-hook 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" -# time-stamp-time-zone: "UTC" +# time-stamp-time-zone: "UTC0" # time-stamp-end: "; # UTC" # End: diff -Nru atkmm1.6-2.24.2/build/config.guess atkmm1.6-2.28.0/build/config.guess --- atkmm1.6-2.24.2/build/config.guess 2015-11-29 20:04:51.151452806 +0000 +++ atkmm1.6-2.28.0/build/config.guess 2018-11-04 11:44:50.451543721 +0000 @@ -1,8 +1,8 @@ #! /bin/sh # Attempt to guess a canonical system name. -# Copyright 1992-2014 Free Software Foundation, Inc. +# Copyright 1992-2018 Free Software Foundation, Inc. -timestamp='2014-03-23' +timestamp='2018-02-24' # This file is free software; you can redistribute it and/or modify it # under the terms of the GNU General Public License as published by @@ -15,7 +15,7 @@ # General Public License for more details. # # You should have received a copy of the GNU General Public License -# along with this program; if not, see . +# along with this program; if not, see . # # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a @@ -24,12 +24,12 @@ # program. This Exception is an additional permission under section 7 # of the GNU General Public License, version 3 ("GPLv3"). # -# Originally written by Per Bothner. +# Originally written by Per Bothner; maintained since 2000 by Ben Elliston. # # You can get the latest version of this script from: -# http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.guess;hb=HEAD +# https://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.guess # -# Please send patches with a ChangeLog entry to config-patches@gnu.org. +# Please send patches to . me=`echo "$0" | sed -e 's,.*/,,'` @@ -39,7 +39,7 @@ Output the configuration name of the system \`$me' is run on. -Operation modes: +Options: -h, --help print this help, then exit -t, --time-stamp print date of last modification, then exit -v, --version print version number, then exit @@ -50,7 +50,7 @@ GNU config.guess ($timestamp) Originally written by Per Bothner. -Copyright 1992-2014 Free Software Foundation, Inc. +Copyright 1992-2018 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." @@ -107,9 +107,9 @@ dummy=$tmp/dummy ; tmpfiles="$dummy.c $dummy.o $dummy.rel $dummy" ; case $CC_FOR_BUILD,$HOST_CC,$CC in - ,,) echo "int x;" > $dummy.c ; + ,,) echo "int x;" > "$dummy.c" ; for c in cc gcc c89 c99 ; do - if ($c -c -o $dummy.o $dummy.c) >/dev/null 2>&1 ; then + if ($c -c -o "$dummy.o" "$dummy.c") >/dev/null 2>&1 ; then CC_FOR_BUILD="$c"; break ; fi ; done ; @@ -132,14 +132,14 @@ UNAME_SYSTEM=`(uname -s) 2>/dev/null` || UNAME_SYSTEM=unknown UNAME_VERSION=`(uname -v) 2>/dev/null` || UNAME_VERSION=unknown -case "${UNAME_SYSTEM}" in +case "$UNAME_SYSTEM" in Linux|GNU|GNU/*) # If the system lacks a compiler, then just pick glibc. # We could probably try harder. LIBC=gnu - eval $set_cc_for_build - cat <<-EOF > $dummy.c + eval "$set_cc_for_build" + cat <<-EOF > "$dummy.c" #include #if defined(__UCLIBC__) LIBC=uclibc @@ -149,13 +149,20 @@ LIBC=gnu #endif EOF - eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep '^LIBC' | sed 's, ,,g'` + eval "`$CC_FOR_BUILD -E "$dummy.c" 2>/dev/null | grep '^LIBC' | sed 's, ,,g'`" + + # If ldd exists, use it to detect musl libc. + if command -v ldd >/dev/null && \ + ldd --version 2>&1 | grep -q ^musl + then + LIBC=musl + fi ;; esac # Note: order is significant - the case branches are not exclusive. -case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in +case "$UNAME_MACHINE:$UNAME_SYSTEM:$UNAME_RELEASE:$UNAME_VERSION" in *:NetBSD:*:*) # NetBSD (nbsd) targets should (where applicable) match one or # more of the tuples: *-*-netbsdelf*, *-*-netbsdaout*, @@ -168,21 +175,31 @@ # Note: NetBSD doesn't particularly care about the vendor # portion of the name. We always set it to "unknown". sysctl="sysctl -n hw.machine_arch" - UNAME_MACHINE_ARCH=`(/sbin/$sysctl 2>/dev/null || \ - /usr/sbin/$sysctl 2>/dev/null || echo unknown)` - case "${UNAME_MACHINE_ARCH}" in + UNAME_MACHINE_ARCH=`(uname -p 2>/dev/null || \ + "/sbin/$sysctl" 2>/dev/null || \ + "/usr/sbin/$sysctl" 2>/dev/null || \ + echo unknown)` + case "$UNAME_MACHINE_ARCH" in armeb) machine=armeb-unknown ;; arm*) machine=arm-unknown ;; sh3el) machine=shl-unknown ;; sh3eb) machine=sh-unknown ;; sh5el) machine=sh5le-unknown ;; - *) machine=${UNAME_MACHINE_ARCH}-unknown ;; + earmv*) + arch=`echo "$UNAME_MACHINE_ARCH" | sed -e 's,^e\(armv[0-9]\).*$,\1,'` + endian=`echo "$UNAME_MACHINE_ARCH" | sed -ne 's,^.*\(eb\)$,\1,p'` + machine="${arch}${endian}"-unknown + ;; + *) machine="$UNAME_MACHINE_ARCH"-unknown ;; esac # The Operating System including object format, if it has switched - # to ELF recently, or will in the future. - case "${UNAME_MACHINE_ARCH}" in + # to ELF recently (or will in the future) and ABI. + case "$UNAME_MACHINE_ARCH" in + earm*) + os=netbsdelf + ;; arm*|i386|m68k|ns32k|sh3*|sparc|vax) - eval $set_cc_for_build + eval "$set_cc_for_build" if echo __ELF__ | $CC_FOR_BUILD -E - 2>/dev/null \ | grep -q __ELF__ then @@ -197,44 +214,67 @@ os=netbsd ;; esac + # Determine ABI tags. + case "$UNAME_MACHINE_ARCH" in + earm*) + expr='s/^earmv[0-9]/-eabi/;s/eb$//' + abi=`echo "$UNAME_MACHINE_ARCH" | sed -e "$expr"` + ;; + esac # The OS release # Debian GNU/NetBSD machines have a different userland, and # thus, need a distinct triplet. However, they do not need # kernel version information, so it can be replaced with a # suitable tag, in the style of linux-gnu. - case "${UNAME_VERSION}" in + case "$UNAME_VERSION" in Debian*) release='-gnu' ;; *) - release=`echo ${UNAME_RELEASE}|sed -e 's/[-_].*/\./'` + release=`echo "$UNAME_RELEASE" | sed -e 's/[-_].*//' | cut -d. -f1,2` ;; esac # Since CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM: # contains redundant information, the shorter form: # CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM is used. - echo "${machine}-${os}${release}" + echo "$machine-${os}${release}${abi}" exit ;; *:Bitrig:*:*) UNAME_MACHINE_ARCH=`arch | sed 's/Bitrig.//'` - echo ${UNAME_MACHINE_ARCH}-unknown-bitrig${UNAME_RELEASE} + echo "$UNAME_MACHINE_ARCH"-unknown-bitrig"$UNAME_RELEASE" exit ;; *:OpenBSD:*:*) UNAME_MACHINE_ARCH=`arch | sed 's/OpenBSD.//'` - echo ${UNAME_MACHINE_ARCH}-unknown-openbsd${UNAME_RELEASE} + echo "$UNAME_MACHINE_ARCH"-unknown-openbsd"$UNAME_RELEASE" + exit ;; + *:LibertyBSD:*:*) + UNAME_MACHINE_ARCH=`arch | sed 's/^.*BSD\.//'` + echo "$UNAME_MACHINE_ARCH"-unknown-libertybsd"$UNAME_RELEASE" + exit ;; + *:MidnightBSD:*:*) + echo "$UNAME_MACHINE"-unknown-midnightbsd"$UNAME_RELEASE" exit ;; *:ekkoBSD:*:*) - echo ${UNAME_MACHINE}-unknown-ekkobsd${UNAME_RELEASE} + echo "$UNAME_MACHINE"-unknown-ekkobsd"$UNAME_RELEASE" exit ;; *:SolidBSD:*:*) - echo ${UNAME_MACHINE}-unknown-solidbsd${UNAME_RELEASE} + echo "$UNAME_MACHINE"-unknown-solidbsd"$UNAME_RELEASE" exit ;; macppc:MirBSD:*:*) - echo powerpc-unknown-mirbsd${UNAME_RELEASE} + echo powerpc-unknown-mirbsd"$UNAME_RELEASE" exit ;; *:MirBSD:*:*) - echo ${UNAME_MACHINE}-unknown-mirbsd${UNAME_RELEASE} + echo "$UNAME_MACHINE"-unknown-mirbsd"$UNAME_RELEASE" + exit ;; + *:Sortix:*:*) + echo "$UNAME_MACHINE"-unknown-sortix exit ;; + *:Redox:*:*) + echo "$UNAME_MACHINE"-unknown-redox + exit ;; + mips:OSF1:*.*) + echo mips-dec-osf1 + exit ;; alpha:OSF1:*:*) case $UNAME_RELEASE in *4.0) @@ -251,63 +291,54 @@ ALPHA_CPU_TYPE=`/usr/sbin/psrinfo -v | sed -n -e 's/^ The alpha \(.*\) processor.*$/\1/p' | head -n 1` case "$ALPHA_CPU_TYPE" in "EV4 (21064)") - UNAME_MACHINE="alpha" ;; + UNAME_MACHINE=alpha ;; "EV4.5 (21064)") - UNAME_MACHINE="alpha" ;; + UNAME_MACHINE=alpha ;; "LCA4 (21066/21068)") - UNAME_MACHINE="alpha" ;; + UNAME_MACHINE=alpha ;; "EV5 (21164)") - UNAME_MACHINE="alphaev5" ;; + UNAME_MACHINE=alphaev5 ;; "EV5.6 (21164A)") - UNAME_MACHINE="alphaev56" ;; + UNAME_MACHINE=alphaev56 ;; "EV5.6 (21164PC)") - UNAME_MACHINE="alphapca56" ;; + UNAME_MACHINE=alphapca56 ;; "EV5.7 (21164PC)") - UNAME_MACHINE="alphapca57" ;; + UNAME_MACHINE=alphapca57 ;; "EV6 (21264)") - UNAME_MACHINE="alphaev6" ;; + UNAME_MACHINE=alphaev6 ;; "EV6.7 (21264A)") - UNAME_MACHINE="alphaev67" ;; + UNAME_MACHINE=alphaev67 ;; "EV6.8CB (21264C)") - UNAME_MACHINE="alphaev68" ;; + UNAME_MACHINE=alphaev68 ;; "EV6.8AL (21264B)") - UNAME_MACHINE="alphaev68" ;; + UNAME_MACHINE=alphaev68 ;; "EV6.8CX (21264D)") - UNAME_MACHINE="alphaev68" ;; + UNAME_MACHINE=alphaev68 ;; "EV6.9A (21264/EV69A)") - UNAME_MACHINE="alphaev69" ;; + UNAME_MACHINE=alphaev69 ;; "EV7 (21364)") - UNAME_MACHINE="alphaev7" ;; + UNAME_MACHINE=alphaev7 ;; "EV7.9 (21364A)") - UNAME_MACHINE="alphaev79" ;; + UNAME_MACHINE=alphaev79 ;; esac # A Pn.n version is a patched version. # A Vn.n version is a released version. # A Tn.n version is a released field test version. # A Xn.n version is an unreleased experimental baselevel. # 1.2 uses "1.2" for uname -r. - echo ${UNAME_MACHINE}-dec-osf`echo ${UNAME_RELEASE} | sed -e 's/^[PVTX]//' | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz'` + echo "$UNAME_MACHINE"-dec-osf"`echo "$UNAME_RELEASE" | sed -e 's/^[PVTX]//' | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz`" # Reset EXIT trap before exiting to avoid spurious non-zero exit code. exitcode=$? trap '' 0 exit $exitcode ;; - Alpha\ *:Windows_NT*:*) - # How do we know it's Interix rather than the generic POSIX subsystem? - # Should we change UNAME_MACHINE based on the output of uname instead - # of the specific Alpha model? - echo alpha-pc-interix - exit ;; - 21064:Windows_NT:50:3) - echo alpha-dec-winnt3.5 - exit ;; Amiga*:UNIX_System_V:4.0:*) echo m68k-unknown-sysv4 exit ;; *:[Aa]miga[Oo][Ss]:*:*) - echo ${UNAME_MACHINE}-unknown-amigaos + echo "$UNAME_MACHINE"-unknown-amigaos exit ;; *:[Mm]orph[Oo][Ss]:*:*) - echo ${UNAME_MACHINE}-unknown-morphos + echo "$UNAME_MACHINE"-unknown-morphos exit ;; *:OS/390:*:*) echo i370-ibm-openedition @@ -319,7 +350,7 @@ echo powerpc-ibm-os400 exit ;; arm:RISC*:1.[012]*:*|arm:riscix:1.[012]*:*) - echo arm-acorn-riscix${UNAME_RELEASE} + echo arm-acorn-riscix"$UNAME_RELEASE" exit ;; arm*:riscos:*:*|arm*:RISCOS:*:*) echo arm-unknown-riscos @@ -346,38 +377,38 @@ sparc) echo sparc-icl-nx7; exit ;; esac ;; s390x:SunOS:*:*) - echo ${UNAME_MACHINE}-ibm-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` + echo "$UNAME_MACHINE"-ibm-solaris2"`echo "$UNAME_RELEASE" | sed -e 's/[^.]*//'`" exit ;; sun4H:SunOS:5.*:*) - echo sparc-hal-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` + echo sparc-hal-solaris2"`echo "$UNAME_RELEASE"|sed -e 's/[^.]*//'`" exit ;; sun4*:SunOS:5.*:* | tadpole*:SunOS:5.*:*) - echo sparc-sun-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` + echo sparc-sun-solaris2"`echo "$UNAME_RELEASE" | sed -e 's/[^.]*//'`" exit ;; i86pc:AuroraUX:5.*:* | i86xen:AuroraUX:5.*:*) - echo i386-pc-auroraux${UNAME_RELEASE} + echo i386-pc-auroraux"$UNAME_RELEASE" exit ;; i86pc:SunOS:5.*:* | i86xen:SunOS:5.*:*) - eval $set_cc_for_build - SUN_ARCH="i386" + eval "$set_cc_for_build" + SUN_ARCH=i386 # If there is a compiler, see if it is configured for 64-bit objects. # Note that the Sun cc does not turn __LP64__ into 1 like gcc does. # This test works for both compilers. - if [ "$CC_FOR_BUILD" != 'no_compiler_found' ]; then + if [ "$CC_FOR_BUILD" != no_compiler_found ]; then if (echo '#ifdef __amd64'; echo IS_64BIT_ARCH; echo '#endif') | \ - (CCOPTS= $CC_FOR_BUILD -E - 2>/dev/null) | \ + (CCOPTS="" $CC_FOR_BUILD -E - 2>/dev/null) | \ grep IS_64BIT_ARCH >/dev/null then - SUN_ARCH="x86_64" + SUN_ARCH=x86_64 fi fi - echo ${SUN_ARCH}-pc-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` + echo "$SUN_ARCH"-pc-solaris2"`echo "$UNAME_RELEASE"|sed -e 's/[^.]*//'`" exit ;; sun4*:SunOS:6*:*) # According to config.sub, this is the proper way to canonicalize # SunOS6. Hard to guess exactly what SunOS6 will be like, but # it's likely to be more like Solaris than SunOS4. - echo sparc-sun-solaris3`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` + echo sparc-sun-solaris3"`echo "$UNAME_RELEASE"|sed -e 's/[^.]*//'`" exit ;; sun4*:SunOS:*:*) case "`/usr/bin/arch -k`" in @@ -386,25 +417,25 @@ ;; esac # Japanese Language versions have a version number like `4.1.3-JL'. - echo sparc-sun-sunos`echo ${UNAME_RELEASE}|sed -e 's/-/_/'` + echo sparc-sun-sunos"`echo "$UNAME_RELEASE"|sed -e 's/-/_/'`" exit ;; sun3*:SunOS:*:*) - echo m68k-sun-sunos${UNAME_RELEASE} + echo m68k-sun-sunos"$UNAME_RELEASE" exit ;; sun*:*:4.2BSD:*) UNAME_RELEASE=`(sed 1q /etc/motd | awk '{print substr($5,1,3)}') 2>/dev/null` - test "x${UNAME_RELEASE}" = "x" && UNAME_RELEASE=3 + test "x$UNAME_RELEASE" = x && UNAME_RELEASE=3 case "`/bin/arch`" in sun3) - echo m68k-sun-sunos${UNAME_RELEASE} + echo m68k-sun-sunos"$UNAME_RELEASE" ;; sun4) - echo sparc-sun-sunos${UNAME_RELEASE} + echo sparc-sun-sunos"$UNAME_RELEASE" ;; esac exit ;; aushp:SunOS:*:*) - echo sparc-auspex-sunos${UNAME_RELEASE} + echo sparc-auspex-sunos"$UNAME_RELEASE" exit ;; # The situation for MiNT is a little confusing. The machine name # can be virtually everything (everything which is not @@ -415,44 +446,44 @@ # MiNT. But MiNT is downward compatible to TOS, so this should # be no problem. atarist[e]:*MiNT:*:* | atarist[e]:*mint:*:* | atarist[e]:*TOS:*:*) - echo m68k-atari-mint${UNAME_RELEASE} + echo m68k-atari-mint"$UNAME_RELEASE" exit ;; atari*:*MiNT:*:* | atari*:*mint:*:* | atarist[e]:*TOS:*:*) - echo m68k-atari-mint${UNAME_RELEASE} + echo m68k-atari-mint"$UNAME_RELEASE" exit ;; *falcon*:*MiNT:*:* | *falcon*:*mint:*:* | *falcon*:*TOS:*:*) - echo m68k-atari-mint${UNAME_RELEASE} + echo m68k-atari-mint"$UNAME_RELEASE" exit ;; milan*:*MiNT:*:* | milan*:*mint:*:* | *milan*:*TOS:*:*) - echo m68k-milan-mint${UNAME_RELEASE} + echo m68k-milan-mint"$UNAME_RELEASE" exit ;; hades*:*MiNT:*:* | hades*:*mint:*:* | *hades*:*TOS:*:*) - echo m68k-hades-mint${UNAME_RELEASE} + echo m68k-hades-mint"$UNAME_RELEASE" exit ;; *:*MiNT:*:* | *:*mint:*:* | *:*TOS:*:*) - echo m68k-unknown-mint${UNAME_RELEASE} + echo m68k-unknown-mint"$UNAME_RELEASE" exit ;; m68k:machten:*:*) - echo m68k-apple-machten${UNAME_RELEASE} + echo m68k-apple-machten"$UNAME_RELEASE" exit ;; powerpc:machten:*:*) - echo powerpc-apple-machten${UNAME_RELEASE} + echo powerpc-apple-machten"$UNAME_RELEASE" exit ;; RISC*:Mach:*:*) echo mips-dec-mach_bsd4.3 exit ;; RISC*:ULTRIX:*:*) - echo mips-dec-ultrix${UNAME_RELEASE} + echo mips-dec-ultrix"$UNAME_RELEASE" exit ;; VAX*:ULTRIX*:*:*) - echo vax-dec-ultrix${UNAME_RELEASE} + echo vax-dec-ultrix"$UNAME_RELEASE" exit ;; 2020:CLIX:*:* | 2430:CLIX:*:*) - echo clipper-intergraph-clix${UNAME_RELEASE} + echo clipper-intergraph-clix"$UNAME_RELEASE" exit ;; mips:*:*:UMIPS | mips:*:*:RISCos) - eval $set_cc_for_build - sed 's/^ //' << EOF >$dummy.c + eval "$set_cc_for_build" + sed 's/^ //' << EOF > "$dummy.c" #ifdef __cplusplus #include /* for printf() prototype */ int main (int argc, char *argv[]) { @@ -461,23 +492,23 @@ #endif #if defined (host_mips) && defined (MIPSEB) #if defined (SYSTYPE_SYSV) - printf ("mips-mips-riscos%ssysv\n", argv[1]); exit (0); + printf ("mips-mips-riscos%ssysv\\n", argv[1]); exit (0); #endif #if defined (SYSTYPE_SVR4) - printf ("mips-mips-riscos%ssvr4\n", argv[1]); exit (0); + printf ("mips-mips-riscos%ssvr4\\n", argv[1]); exit (0); #endif #if defined (SYSTYPE_BSD43) || defined(SYSTYPE_BSD) - printf ("mips-mips-riscos%sbsd\n", argv[1]); exit (0); + printf ("mips-mips-riscos%sbsd\\n", argv[1]); exit (0); #endif #endif exit (-1); } EOF - $CC_FOR_BUILD -o $dummy $dummy.c && - dummyarg=`echo "${UNAME_RELEASE}" | sed -n 's/\([0-9]*\).*/\1/p'` && - SYSTEM_NAME=`$dummy $dummyarg` && + $CC_FOR_BUILD -o "$dummy" "$dummy.c" && + dummyarg=`echo "$UNAME_RELEASE" | sed -n 's/\([0-9]*\).*/\1/p'` && + SYSTEM_NAME=`"$dummy" "$dummyarg"` && { echo "$SYSTEM_NAME"; exit; } - echo mips-mips-riscos${UNAME_RELEASE} + echo mips-mips-riscos"$UNAME_RELEASE" exit ;; Motorola:PowerMAX_OS:*:*) echo powerpc-motorola-powermax @@ -503,17 +534,17 @@ AViiON:dgux:*:*) # DG/UX returns AViiON for all architectures UNAME_PROCESSOR=`/usr/bin/uname -p` - if [ $UNAME_PROCESSOR = mc88100 ] || [ $UNAME_PROCESSOR = mc88110 ] + if [ "$UNAME_PROCESSOR" = mc88100 ] || [ "$UNAME_PROCESSOR" = mc88110 ] then - if [ ${TARGET_BINARY_INTERFACE}x = m88kdguxelfx ] || \ - [ ${TARGET_BINARY_INTERFACE}x = x ] + if [ "$TARGET_BINARY_INTERFACE"x = m88kdguxelfx ] || \ + [ "$TARGET_BINARY_INTERFACE"x = x ] then - echo m88k-dg-dgux${UNAME_RELEASE} + echo m88k-dg-dgux"$UNAME_RELEASE" else - echo m88k-dg-dguxbcs${UNAME_RELEASE} + echo m88k-dg-dguxbcs"$UNAME_RELEASE" fi else - echo i586-dg-dgux${UNAME_RELEASE} + echo i586-dg-dgux"$UNAME_RELEASE" fi exit ;; M88*:DolphinOS:*:*) # DolphinOS (SVR3) @@ -530,7 +561,7 @@ echo m68k-tektronix-bsd exit ;; *:IRIX*:*:*) - echo mips-sgi-irix`echo ${UNAME_RELEASE}|sed -e 's/-/_/g'` + echo mips-sgi-irix"`echo "$UNAME_RELEASE"|sed -e 's/-/_/g'`" exit ;; ????????:AIX?:[12].1:2) # AIX 2.2.1 or AIX 2.1.1 is RT/PC AIX. echo romp-ibm-aix # uname -m gives an 8 hex-code CPU id @@ -542,14 +573,14 @@ if [ -x /usr/bin/oslevel ] ; then IBM_REV=`/usr/bin/oslevel` else - IBM_REV=${UNAME_VERSION}.${UNAME_RELEASE} + IBM_REV="$UNAME_VERSION.$UNAME_RELEASE" fi - echo ${UNAME_MACHINE}-ibm-aix${IBM_REV} + echo "$UNAME_MACHINE"-ibm-aix"$IBM_REV" exit ;; *:AIX:2:3) if grep bos325 /usr/include/stdio.h >/dev/null 2>&1; then - eval $set_cc_for_build - sed 's/^ //' << EOF >$dummy.c + eval "$set_cc_for_build" + sed 's/^ //' << EOF > "$dummy.c" #include main() @@ -560,7 +591,7 @@ exit(0); } EOF - if $CC_FOR_BUILD -o $dummy $dummy.c && SYSTEM_NAME=`$dummy` + if $CC_FOR_BUILD -o "$dummy" "$dummy.c" && SYSTEM_NAME=`"$dummy"` then echo "$SYSTEM_NAME" else @@ -574,26 +605,27 @@ exit ;; *:AIX:*:[4567]) IBM_CPU_ID=`/usr/sbin/lsdev -C -c processor -S available | sed 1q | awk '{ print $1 }'` - if /usr/sbin/lsattr -El ${IBM_CPU_ID} | grep ' POWER' >/dev/null 2>&1; then + if /usr/sbin/lsattr -El "$IBM_CPU_ID" | grep ' POWER' >/dev/null 2>&1; then IBM_ARCH=rs6000 else IBM_ARCH=powerpc fi - if [ -x /usr/bin/oslevel ] ; then - IBM_REV=`/usr/bin/oslevel` + if [ -x /usr/bin/lslpp ] ; then + IBM_REV=`/usr/bin/lslpp -Lqc bos.rte.libc | + awk -F: '{ print $3 }' | sed s/[0-9]*$/0/` else - IBM_REV=${UNAME_VERSION}.${UNAME_RELEASE} + IBM_REV="$UNAME_VERSION.$UNAME_RELEASE" fi - echo ${IBM_ARCH}-ibm-aix${IBM_REV} + echo "$IBM_ARCH"-ibm-aix"$IBM_REV" exit ;; *:AIX:*:*) echo rs6000-ibm-aix exit ;; - ibmrt:4.4BSD:*|romp-ibm:BSD:*) + ibmrt:4.4BSD:*|romp-ibm:4.4BSD:*) echo romp-ibm-bsd4.4 exit ;; ibmrt:*BSD:*|romp-ibm:BSD:*) # covers RT/PC BSD and - echo romp-ibm-bsd${UNAME_RELEASE} # 4.3 with uname added to + echo romp-ibm-bsd"$UNAME_RELEASE" # 4.3 with uname added to exit ;; # report: romp-ibm BSD 4.3 *:BOSX:*:*) echo rs6000-bull-bosx @@ -608,28 +640,28 @@ echo m68k-hp-bsd4.4 exit ;; 9000/[34678]??:HP-UX:*:*) - HPUX_REV=`echo ${UNAME_RELEASE}|sed -e 's/[^.]*.[0B]*//'` - case "${UNAME_MACHINE}" in - 9000/31? ) HP_ARCH=m68000 ;; - 9000/[34]?? ) HP_ARCH=m68k ;; + HPUX_REV=`echo "$UNAME_RELEASE"|sed -e 's/[^.]*.[0B]*//'` + case "$UNAME_MACHINE" in + 9000/31?) HP_ARCH=m68000 ;; + 9000/[34]??) HP_ARCH=m68k ;; 9000/[678][0-9][0-9]) if [ -x /usr/bin/getconf ]; then sc_cpu_version=`/usr/bin/getconf SC_CPU_VERSION 2>/dev/null` sc_kernel_bits=`/usr/bin/getconf SC_KERNEL_BITS 2>/dev/null` - case "${sc_cpu_version}" in - 523) HP_ARCH="hppa1.0" ;; # CPU_PA_RISC1_0 - 528) HP_ARCH="hppa1.1" ;; # CPU_PA_RISC1_1 + case "$sc_cpu_version" in + 523) HP_ARCH=hppa1.0 ;; # CPU_PA_RISC1_0 + 528) HP_ARCH=hppa1.1 ;; # CPU_PA_RISC1_1 532) # CPU_PA_RISC2_0 - case "${sc_kernel_bits}" in - 32) HP_ARCH="hppa2.0n" ;; - 64) HP_ARCH="hppa2.0w" ;; - '') HP_ARCH="hppa2.0" ;; # HP-UX 10.20 + case "$sc_kernel_bits" in + 32) HP_ARCH=hppa2.0n ;; + 64) HP_ARCH=hppa2.0w ;; + '') HP_ARCH=hppa2.0 ;; # HP-UX 10.20 esac ;; esac fi - if [ "${HP_ARCH}" = "" ]; then - eval $set_cc_for_build - sed 's/^ //' << EOF >$dummy.c + if [ "$HP_ARCH" = "" ]; then + eval "$set_cc_for_build" + sed 's/^ //' << EOF > "$dummy.c" #define _HPUX_SOURCE #include @@ -662,13 +694,13 @@ exit (0); } EOF - (CCOPTS= $CC_FOR_BUILD -o $dummy $dummy.c 2>/dev/null) && HP_ARCH=`$dummy` + (CCOPTS="" $CC_FOR_BUILD -o "$dummy" "$dummy.c" 2>/dev/null) && HP_ARCH=`"$dummy"` test -z "$HP_ARCH" && HP_ARCH=hppa fi ;; esac - if [ ${HP_ARCH} = "hppa2.0w" ] + if [ "$HP_ARCH" = hppa2.0w ] then - eval $set_cc_for_build + eval "$set_cc_for_build" # hppa2.0w-hp-hpux* has a 64-bit kernel and a compiler generating # 32-bit code. hppa64-hp-hpux* has the same kernel and a compiler @@ -679,23 +711,23 @@ # $ CC_FOR_BUILD="cc +DA2.0w" ./config.guess # => hppa64-hp-hpux11.23 - if echo __LP64__ | (CCOPTS= $CC_FOR_BUILD -E - 2>/dev/null) | + if echo __LP64__ | (CCOPTS="" $CC_FOR_BUILD -E - 2>/dev/null) | grep -q __LP64__ then - HP_ARCH="hppa2.0w" + HP_ARCH=hppa2.0w else - HP_ARCH="hppa64" + HP_ARCH=hppa64 fi fi - echo ${HP_ARCH}-hp-hpux${HPUX_REV} + echo "$HP_ARCH"-hp-hpux"$HPUX_REV" exit ;; ia64:HP-UX:*:*) - HPUX_REV=`echo ${UNAME_RELEASE}|sed -e 's/[^.]*.[0B]*//'` - echo ia64-hp-hpux${HPUX_REV} + HPUX_REV=`echo "$UNAME_RELEASE"|sed -e 's/[^.]*.[0B]*//'` + echo ia64-hp-hpux"$HPUX_REV" exit ;; 3050*:HI-UX:*:*) - eval $set_cc_for_build - sed 's/^ //' << EOF >$dummy.c + eval "$set_cc_for_build" + sed 's/^ //' << EOF > "$dummy.c" #include int main () @@ -720,11 +752,11 @@ exit (0); } EOF - $CC_FOR_BUILD -o $dummy $dummy.c && SYSTEM_NAME=`$dummy` && + $CC_FOR_BUILD -o "$dummy" "$dummy.c" && SYSTEM_NAME=`"$dummy"` && { echo "$SYSTEM_NAME"; exit; } echo unknown-hitachi-hiuxwe2 exit ;; - 9000/7??:4.3bsd:*:* | 9000/8?[79]:4.3bsd:*:* ) + 9000/7??:4.3bsd:*:* | 9000/8?[79]:4.3bsd:*:*) echo hppa1.1-hp-bsd exit ;; 9000/8??:4.3bsd:*:*) @@ -733,7 +765,7 @@ *9??*:MPE/iX:*:* | *3000*:MPE/iX:*:*) echo hppa1.0-hp-mpeix exit ;; - hp7??:OSF1:*:* | hp8?[79]:OSF1:*:* ) + hp7??:OSF1:*:* | hp8?[79]:OSF1:*:*) echo hppa1.1-hp-osf exit ;; hp8??:OSF1:*:*) @@ -741,9 +773,9 @@ exit ;; i*86:OSF1:*:*) if [ -x /usr/sbin/sysversion ] ; then - echo ${UNAME_MACHINE}-unknown-osf1mk + echo "$UNAME_MACHINE"-unknown-osf1mk else - echo ${UNAME_MACHINE}-unknown-osf1 + echo "$UNAME_MACHINE"-unknown-osf1 fi exit ;; parisc*:Lites*:*:*) @@ -768,127 +800,109 @@ echo c4-convex-bsd exit ;; CRAY*Y-MP:*:*:*) - echo ymp-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' + echo ymp-cray-unicos"$UNAME_RELEASE" | sed -e 's/\.[^.]*$/.X/' exit ;; CRAY*[A-Z]90:*:*:*) - echo ${UNAME_MACHINE}-cray-unicos${UNAME_RELEASE} \ + echo "$UNAME_MACHINE"-cray-unicos"$UNAME_RELEASE" \ | sed -e 's/CRAY.*\([A-Z]90\)/\1/' \ -e y/ABCDEFGHIJKLMNOPQRSTUVWXYZ/abcdefghijklmnopqrstuvwxyz/ \ -e 's/\.[^.]*$/.X/' exit ;; CRAY*TS:*:*:*) - echo t90-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' + echo t90-cray-unicos"$UNAME_RELEASE" | sed -e 's/\.[^.]*$/.X/' exit ;; CRAY*T3E:*:*:*) - echo alphaev5-cray-unicosmk${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' + echo alphaev5-cray-unicosmk"$UNAME_RELEASE" | sed -e 's/\.[^.]*$/.X/' exit ;; CRAY*SV1:*:*:*) - echo sv1-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' + echo sv1-cray-unicos"$UNAME_RELEASE" | sed -e 's/\.[^.]*$/.X/' exit ;; *:UNICOS/mp:*:*) - echo craynv-cray-unicosmp${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' + echo craynv-cray-unicosmp"$UNAME_RELEASE" | sed -e 's/\.[^.]*$/.X/' exit ;; F30[01]:UNIX_System_V:*:* | F700:UNIX_System_V:*:*) - FUJITSU_PROC=`uname -m | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz'` - FUJITSU_SYS=`uname -p | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/\///'` - FUJITSU_REL=`echo ${UNAME_RELEASE} | sed -e 's/ /_/'` + FUJITSU_PROC=`uname -m | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz` + FUJITSU_SYS=`uname -p | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz | sed -e 's/\///'` + FUJITSU_REL=`echo "$UNAME_RELEASE" | sed -e 's/ /_/'` echo "${FUJITSU_PROC}-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}" exit ;; 5000:UNIX_System_V:4.*:*) - FUJITSU_SYS=`uname -p | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/\///'` - FUJITSU_REL=`echo ${UNAME_RELEASE} | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/ /_/'` + FUJITSU_SYS=`uname -p | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz | sed -e 's/\///'` + FUJITSU_REL=`echo "$UNAME_RELEASE" | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz | sed -e 's/ /_/'` echo "sparc-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}" exit ;; i*86:BSD/386:*:* | i*86:BSD/OS:*:* | *:Ascend\ Embedded/OS:*:*) - echo ${UNAME_MACHINE}-pc-bsdi${UNAME_RELEASE} + echo "$UNAME_MACHINE"-pc-bsdi"$UNAME_RELEASE" exit ;; sparc*:BSD/OS:*:*) - echo sparc-unknown-bsdi${UNAME_RELEASE} + echo sparc-unknown-bsdi"$UNAME_RELEASE" exit ;; *:BSD/OS:*:*) - echo ${UNAME_MACHINE}-unknown-bsdi${UNAME_RELEASE} + echo "$UNAME_MACHINE"-unknown-bsdi"$UNAME_RELEASE" exit ;; *:FreeBSD:*:*) UNAME_PROCESSOR=`/usr/bin/uname -p` - case ${UNAME_PROCESSOR} in + case "$UNAME_PROCESSOR" in amd64) - echo x86_64-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;; - *) - echo ${UNAME_PROCESSOR}-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;; + UNAME_PROCESSOR=x86_64 ;; + i386) + UNAME_PROCESSOR=i586 ;; esac + echo "$UNAME_PROCESSOR"-unknown-freebsd"`echo "$UNAME_RELEASE"|sed -e 's/[-(].*//'`" exit ;; i*:CYGWIN*:*) - echo ${UNAME_MACHINE}-pc-cygwin + echo "$UNAME_MACHINE"-pc-cygwin exit ;; *:MINGW64*:*) - echo ${UNAME_MACHINE}-pc-mingw64 + echo "$UNAME_MACHINE"-pc-mingw64 exit ;; *:MINGW*:*) - echo ${UNAME_MACHINE}-pc-mingw32 + echo "$UNAME_MACHINE"-pc-mingw32 exit ;; *:MSYS*:*) - echo ${UNAME_MACHINE}-pc-msys - exit ;; - i*:windows32*:*) - # uname -m includes "-pc" on this system. - echo ${UNAME_MACHINE}-mingw32 + echo "$UNAME_MACHINE"-pc-msys exit ;; i*:PW*:*) - echo ${UNAME_MACHINE}-pc-pw32 + echo "$UNAME_MACHINE"-pc-pw32 exit ;; *:Interix*:*) - case ${UNAME_MACHINE} in + case "$UNAME_MACHINE" in x86) - echo i586-pc-interix${UNAME_RELEASE} + echo i586-pc-interix"$UNAME_RELEASE" exit ;; authenticamd | genuineintel | EM64T) - echo x86_64-unknown-interix${UNAME_RELEASE} + echo x86_64-unknown-interix"$UNAME_RELEASE" exit ;; IA64) - echo ia64-unknown-interix${UNAME_RELEASE} + echo ia64-unknown-interix"$UNAME_RELEASE" exit ;; esac ;; - [345]86:Windows_95:* | [345]86:Windows_98:* | [345]86:Windows_NT:*) - echo i${UNAME_MACHINE}-pc-mks - exit ;; - 8664:Windows_NT:*) - echo x86_64-pc-mks - exit ;; - i*:Windows_NT*:* | Pentium*:Windows_NT*:*) - # How do we know it's Interix rather than the generic POSIX subsystem? - # It also conflicts with pre-2.0 versions of AT&T UWIN. Should we - # UNAME_MACHINE based on the output of uname instead of i386? - echo i586-pc-interix - exit ;; i*:UWIN*:*) - echo ${UNAME_MACHINE}-pc-uwin + echo "$UNAME_MACHINE"-pc-uwin exit ;; amd64:CYGWIN*:*:* | x86_64:CYGWIN*:*:*) echo x86_64-unknown-cygwin exit ;; - p*:CYGWIN*:*) - echo powerpcle-unknown-cygwin - exit ;; prep*:SunOS:5.*:*) - echo powerpcle-unknown-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` + echo powerpcle-unknown-solaris2"`echo "$UNAME_RELEASE"|sed -e 's/[^.]*//'`" exit ;; *:GNU:*:*) # the GNU system - echo `echo ${UNAME_MACHINE}|sed -e 's,[-/].*$,,'`-unknown-${LIBC}`echo ${UNAME_RELEASE}|sed -e 's,/.*$,,'` + echo "`echo "$UNAME_MACHINE"|sed -e 's,[-/].*$,,'`-unknown-$LIBC`echo "$UNAME_RELEASE"|sed -e 's,/.*$,,'`" exit ;; *:GNU/*:*:*) # other systems with GNU libc and userland - echo ${UNAME_MACHINE}-unknown-`echo ${UNAME_SYSTEM} | sed 's,^[^/]*/,,' | tr '[A-Z]' '[a-z]'``echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'`-${LIBC} + echo "$UNAME_MACHINE-unknown-`echo "$UNAME_SYSTEM" | sed 's,^[^/]*/,,' | tr "[:upper:]" "[:lower:]"``echo "$UNAME_RELEASE"|sed -e 's/[-(].*//'`-$LIBC" exit ;; i*86:Minix:*:*) - echo ${UNAME_MACHINE}-pc-minix + echo "$UNAME_MACHINE"-pc-minix exit ;; aarch64:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; aarch64_be:Linux:*:*) UNAME_MACHINE=aarch64_be - echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; alpha:Linux:*:*) case `sed -n '/^cpu model/s/^.*: \(.*\)/\1/p' < /proc/cpuinfo` in @@ -901,58 +915,64 @@ EV68*) UNAME_MACHINE=alphaev68 ;; esac objdump --private-headers /bin/sh | grep -q ld.so.1 - if test "$?" = 0 ; then LIBC="gnulibc1" ; fi - echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + if test "$?" = 0 ; then LIBC=gnulibc1 ; fi + echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; arc:Linux:*:* | arceb:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; arm*:Linux:*:*) - eval $set_cc_for_build + eval "$set_cc_for_build" if echo __ARM_EABI__ | $CC_FOR_BUILD -E - 2>/dev/null \ | grep -q __ARM_EABI__ then - echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" else if echo __ARM_PCS_VFP | $CC_FOR_BUILD -E - 2>/dev/null \ | grep -q __ARM_PCS_VFP then - echo ${UNAME_MACHINE}-unknown-linux-${LIBC}eabi + echo "$UNAME_MACHINE"-unknown-linux-"$LIBC"eabi else - echo ${UNAME_MACHINE}-unknown-linux-${LIBC}eabihf + echo "$UNAME_MACHINE"-unknown-linux-"$LIBC"eabihf fi fi exit ;; avr32*:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; cris:Linux:*:*) - echo ${UNAME_MACHINE}-axis-linux-${LIBC} + echo "$UNAME_MACHINE"-axis-linux-"$LIBC" exit ;; crisv32:Linux:*:*) - echo ${UNAME_MACHINE}-axis-linux-${LIBC} + echo "$UNAME_MACHINE"-axis-linux-"$LIBC" + exit ;; + e2k:Linux:*:*) + echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; frv:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; hexagon:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; i*86:Linux:*:*) - echo ${UNAME_MACHINE}-pc-linux-${LIBC} + echo "$UNAME_MACHINE"-pc-linux-"$LIBC" exit ;; ia64:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" + exit ;; + k1om:Linux:*:*) + echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; m32r*:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; m68*:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; mips:Linux:*:* | mips64:Linux:*:*) - eval $set_cc_for_build - sed 's/^ //' << EOF >$dummy.c + eval "$set_cc_for_build" + sed 's/^ //' << EOF > "$dummy.c" #undef CPU #undef ${UNAME_MACHINE} #undef ${UNAME_MACHINE}el @@ -966,64 +986,74 @@ #endif #endif EOF - eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep '^CPU'` - test x"${CPU}" != x && { echo "${CPU}-unknown-linux-${LIBC}"; exit; } + eval "`$CC_FOR_BUILD -E "$dummy.c" 2>/dev/null | grep '^CPU'`" + test "x$CPU" != x && { echo "$CPU-unknown-linux-$LIBC"; exit; } ;; + mips64el:Linux:*:*) + echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" + exit ;; openrisc*:Linux:*:*) - echo or1k-unknown-linux-${LIBC} + echo or1k-unknown-linux-"$LIBC" exit ;; or32:Linux:*:* | or1k*:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; padre:Linux:*:*) - echo sparc-unknown-linux-${LIBC} + echo sparc-unknown-linux-"$LIBC" exit ;; parisc64:Linux:*:* | hppa64:Linux:*:*) - echo hppa64-unknown-linux-${LIBC} + echo hppa64-unknown-linux-"$LIBC" exit ;; parisc:Linux:*:* | hppa:Linux:*:*) # Look for CPU level case `grep '^cpu[^a-z]*:' /proc/cpuinfo 2>/dev/null | cut -d' ' -f2` in - PA7*) echo hppa1.1-unknown-linux-${LIBC} ;; - PA8*) echo hppa2.0-unknown-linux-${LIBC} ;; - *) echo hppa-unknown-linux-${LIBC} ;; + PA7*) echo hppa1.1-unknown-linux-"$LIBC" ;; + PA8*) echo hppa2.0-unknown-linux-"$LIBC" ;; + *) echo hppa-unknown-linux-"$LIBC" ;; esac exit ;; ppc64:Linux:*:*) - echo powerpc64-unknown-linux-${LIBC} + echo powerpc64-unknown-linux-"$LIBC" exit ;; ppc:Linux:*:*) - echo powerpc-unknown-linux-${LIBC} + echo powerpc-unknown-linux-"$LIBC" exit ;; ppc64le:Linux:*:*) - echo powerpc64le-unknown-linux-${LIBC} + echo powerpc64le-unknown-linux-"$LIBC" exit ;; ppcle:Linux:*:*) - echo powerpcle-unknown-linux-${LIBC} + echo powerpcle-unknown-linux-"$LIBC" + exit ;; + riscv32:Linux:*:* | riscv64:Linux:*:*) + echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; s390:Linux:*:* | s390x:Linux:*:*) - echo ${UNAME_MACHINE}-ibm-linux-${LIBC} + echo "$UNAME_MACHINE"-ibm-linux-"$LIBC" exit ;; sh64*:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; sh*:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; sparc:Linux:*:* | sparc64:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; tile*:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; vax:Linux:*:*) - echo ${UNAME_MACHINE}-dec-linux-${LIBC} + echo "$UNAME_MACHINE"-dec-linux-"$LIBC" exit ;; x86_64:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + if objdump -f /bin/sh | grep -q elf32-x86-64; then + echo "$UNAME_MACHINE"-pc-linux-"$LIBC"x32 + else + echo "$UNAME_MACHINE"-pc-linux-"$LIBC" + fi exit ;; xtensa*:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; i*86:DYNIX/ptx:4*:*) # ptx 4.0 does uname -s correctly, with DYNIX/ptx in there. @@ -1037,34 +1067,34 @@ # I am not positive that other SVR4 systems won't match this, # I just have to hope. -- rms. # Use sysv4.2uw... so that sysv4* matches it. - echo ${UNAME_MACHINE}-pc-sysv4.2uw${UNAME_VERSION} + echo "$UNAME_MACHINE"-pc-sysv4.2uw"$UNAME_VERSION" exit ;; i*86:OS/2:*:*) # If we were able to find `uname', then EMX Unix compatibility # is probably installed. - echo ${UNAME_MACHINE}-pc-os2-emx + echo "$UNAME_MACHINE"-pc-os2-emx exit ;; i*86:XTS-300:*:STOP) - echo ${UNAME_MACHINE}-unknown-stop + echo "$UNAME_MACHINE"-unknown-stop exit ;; i*86:atheos:*:*) - echo ${UNAME_MACHINE}-unknown-atheos + echo "$UNAME_MACHINE"-unknown-atheos exit ;; i*86:syllable:*:*) - echo ${UNAME_MACHINE}-pc-syllable + echo "$UNAME_MACHINE"-pc-syllable exit ;; i*86:LynxOS:2.*:* | i*86:LynxOS:3.[01]*:* | i*86:LynxOS:4.[02]*:*) - echo i386-unknown-lynxos${UNAME_RELEASE} + echo i386-unknown-lynxos"$UNAME_RELEASE" exit ;; i*86:*DOS:*:*) - echo ${UNAME_MACHINE}-pc-msdosdjgpp + echo "$UNAME_MACHINE"-pc-msdosdjgpp exit ;; - i*86:*:4.*:* | i*86:SYSTEM_V:4.*:*) - UNAME_REL=`echo ${UNAME_RELEASE} | sed 's/\/MP$//'` + i*86:*:4.*:*) + UNAME_REL=`echo "$UNAME_RELEASE" | sed 's/\/MP$//'` if grep Novell /usr/include/link.h >/dev/null 2>/dev/null; then - echo ${UNAME_MACHINE}-univel-sysv${UNAME_REL} + echo "$UNAME_MACHINE"-univel-sysv"$UNAME_REL" else - echo ${UNAME_MACHINE}-pc-sysv${UNAME_REL} + echo "$UNAME_MACHINE"-pc-sysv"$UNAME_REL" fi exit ;; i*86:*:5:[678]*) @@ -1074,12 +1104,12 @@ *Pentium) UNAME_MACHINE=i586 ;; *Pent*|*Celeron) UNAME_MACHINE=i686 ;; esac - echo ${UNAME_MACHINE}-unknown-sysv${UNAME_RELEASE}${UNAME_SYSTEM}${UNAME_VERSION} + echo "$UNAME_MACHINE-unknown-sysv${UNAME_RELEASE}${UNAME_SYSTEM}{$UNAME_VERSION}" exit ;; i*86:*:3.2:*) if test -f /usr/options/cb.name; then UNAME_REL=`sed -n 's/.*Version //p' /dev/null >/dev/null ; then UNAME_REL=`(/bin/uname -X|grep Release|sed -e 's/.*= //')` (/bin/uname -X|grep i80486 >/dev/null) && UNAME_MACHINE=i486 @@ -1089,9 +1119,9 @@ && UNAME_MACHINE=i686 (/bin/uname -X|grep '^Machine.*Pentium Pro' >/dev/null) \ && UNAME_MACHINE=i686 - echo ${UNAME_MACHINE}-pc-sco$UNAME_REL + echo "$UNAME_MACHINE"-pc-sco"$UNAME_REL" else - echo ${UNAME_MACHINE}-pc-sysv32 + echo "$UNAME_MACHINE"-pc-sysv32 fi exit ;; pc:*:*:*) @@ -1099,7 +1129,7 @@ # uname -m prints for DJGPP always 'pc', but it prints nothing about # the processor, so we play safe by assuming i586. # Note: whatever this is, it MUST be the same as what config.sub - # prints for the "djgpp" host, or else GDB configury will decide that + # prints for the "djgpp" host, or else GDB configure will decide that # this is a cross-build. echo i586-pc-msdosdjgpp exit ;; @@ -1111,9 +1141,9 @@ exit ;; i860:*:4.*:*) # i860-SVR4 if grep Stardent /usr/include/sys/uadmin.h >/dev/null 2>&1 ; then - echo i860-stardent-sysv${UNAME_RELEASE} # Stardent Vistra i860-SVR4 + echo i860-stardent-sysv"$UNAME_RELEASE" # Stardent Vistra i860-SVR4 else # Add other i860-SVR4 vendors below as they are discovered. - echo i860-unknown-sysv${UNAME_RELEASE} # Unknown i860-SVR4 + echo i860-unknown-sysv"$UNAME_RELEASE" # Unknown i860-SVR4 fi exit ;; mini*:CTIX:SYS*5:*) @@ -1133,9 +1163,9 @@ test -r /etc/.relid \ && OS_REL=.`sed -n 's/[^ ]* [^ ]* \([0-9][0-9]\).*/\1/p' < /etc/.relid` /bin/uname -p 2>/dev/null | grep 86 >/dev/null \ - && { echo i486-ncr-sysv4.3${OS_REL}; exit; } + && { echo i486-ncr-sysv4.3"$OS_REL"; exit; } /bin/uname -p 2>/dev/null | /bin/grep entium >/dev/null \ - && { echo i586-ncr-sysv4.3${OS_REL}; exit; } ;; + && { echo i586-ncr-sysv4.3"$OS_REL"; exit; } ;; 3[34]??:*:4.0:* | 3[34]??,*:*:4.0:*) /bin/uname -p 2>/dev/null | grep 86 >/dev/null \ && { echo i486-ncr-sysv4; exit; } ;; @@ -1144,28 +1174,28 @@ test -r /etc/.relid \ && OS_REL=.`sed -n 's/[^ ]* [^ ]* \([0-9][0-9]\).*/\1/p' < /etc/.relid` /bin/uname -p 2>/dev/null | grep 86 >/dev/null \ - && { echo i486-ncr-sysv4.3${OS_REL}; exit; } + && { echo i486-ncr-sysv4.3"$OS_REL"; exit; } /bin/uname -p 2>/dev/null | /bin/grep entium >/dev/null \ - && { echo i586-ncr-sysv4.3${OS_REL}; exit; } + && { echo i586-ncr-sysv4.3"$OS_REL"; exit; } /bin/uname -p 2>/dev/null | /bin/grep pteron >/dev/null \ - && { echo i586-ncr-sysv4.3${OS_REL}; exit; } ;; + && { echo i586-ncr-sysv4.3"$OS_REL"; exit; } ;; m68*:LynxOS:2.*:* | m68*:LynxOS:3.0*:*) - echo m68k-unknown-lynxos${UNAME_RELEASE} + echo m68k-unknown-lynxos"$UNAME_RELEASE" exit ;; mc68030:UNIX_System_V:4.*:*) echo m68k-atari-sysv4 exit ;; TSUNAMI:LynxOS:2.*:*) - echo sparc-unknown-lynxos${UNAME_RELEASE} + echo sparc-unknown-lynxos"$UNAME_RELEASE" exit ;; rs6000:LynxOS:2.*:*) - echo rs6000-unknown-lynxos${UNAME_RELEASE} + echo rs6000-unknown-lynxos"$UNAME_RELEASE" exit ;; PowerPC:LynxOS:2.*:* | PowerPC:LynxOS:3.[01]*:* | PowerPC:LynxOS:4.[02]*:*) - echo powerpc-unknown-lynxos${UNAME_RELEASE} + echo powerpc-unknown-lynxos"$UNAME_RELEASE" exit ;; SM[BE]S:UNIX_SV:*:*) - echo mips-dde-sysv${UNAME_RELEASE} + echo mips-dde-sysv"$UNAME_RELEASE" exit ;; RM*:ReliantUNIX-*:*:*) echo mips-sni-sysv4 @@ -1176,7 +1206,7 @@ *:SINIX-*:*:*) if uname -p 2>/dev/null >/dev/null ; then UNAME_MACHINE=`(uname -p) 2>/dev/null` - echo ${UNAME_MACHINE}-sni-sysv4 + echo "$UNAME_MACHINE"-sni-sysv4 else echo ns32k-sni-sysv fi @@ -1196,23 +1226,23 @@ exit ;; i*86:VOS:*:*) # From Paul.Green@stratus.com. - echo ${UNAME_MACHINE}-stratus-vos + echo "$UNAME_MACHINE"-stratus-vos exit ;; *:VOS:*:*) # From Paul.Green@stratus.com. echo hppa1.1-stratus-vos exit ;; mc68*:A/UX:*:*) - echo m68k-apple-aux${UNAME_RELEASE} + echo m68k-apple-aux"$UNAME_RELEASE" exit ;; news*:NEWS-OS:6*:*) echo mips-sony-newsos6 exit ;; R[34]000:*System_V*:*:* | R4000:UNIX_SYSV:*:* | R*000:UNIX_SV:*:*) if [ -d /usr/nec ]; then - echo mips-nec-sysv${UNAME_RELEASE} + echo mips-nec-sysv"$UNAME_RELEASE" else - echo mips-unknown-sysv${UNAME_RELEASE} + echo mips-unknown-sysv"$UNAME_RELEASE" fi exit ;; BeBox:BeOS:*:*) # BeOS running on hardware made by Be, PPC only. @@ -1231,46 +1261,56 @@ echo x86_64-unknown-haiku exit ;; SX-4:SUPER-UX:*:*) - echo sx4-nec-superux${UNAME_RELEASE} + echo sx4-nec-superux"$UNAME_RELEASE" exit ;; SX-5:SUPER-UX:*:*) - echo sx5-nec-superux${UNAME_RELEASE} + echo sx5-nec-superux"$UNAME_RELEASE" exit ;; SX-6:SUPER-UX:*:*) - echo sx6-nec-superux${UNAME_RELEASE} + echo sx6-nec-superux"$UNAME_RELEASE" exit ;; SX-7:SUPER-UX:*:*) - echo sx7-nec-superux${UNAME_RELEASE} + echo sx7-nec-superux"$UNAME_RELEASE" exit ;; SX-8:SUPER-UX:*:*) - echo sx8-nec-superux${UNAME_RELEASE} + echo sx8-nec-superux"$UNAME_RELEASE" exit ;; SX-8R:SUPER-UX:*:*) - echo sx8r-nec-superux${UNAME_RELEASE} + echo sx8r-nec-superux"$UNAME_RELEASE" + exit ;; + SX-ACE:SUPER-UX:*:*) + echo sxace-nec-superux"$UNAME_RELEASE" exit ;; Power*:Rhapsody:*:*) - echo powerpc-apple-rhapsody${UNAME_RELEASE} + echo powerpc-apple-rhapsody"$UNAME_RELEASE" exit ;; *:Rhapsody:*:*) - echo ${UNAME_MACHINE}-apple-rhapsody${UNAME_RELEASE} + echo "$UNAME_MACHINE"-apple-rhapsody"$UNAME_RELEASE" exit ;; *:Darwin:*:*) UNAME_PROCESSOR=`uname -p` || UNAME_PROCESSOR=unknown - eval $set_cc_for_build + eval "$set_cc_for_build" if test "$UNAME_PROCESSOR" = unknown ; then UNAME_PROCESSOR=powerpc fi - if test `echo "$UNAME_RELEASE" | sed -e 's/\..*//'` -le 10 ; then - if [ "$CC_FOR_BUILD" != 'no_compiler_found' ]; then + if test "`echo "$UNAME_RELEASE" | sed -e 's/\..*//'`" -le 10 ; then + if [ "$CC_FOR_BUILD" != no_compiler_found ]; then if (echo '#ifdef __LP64__'; echo IS_64BIT_ARCH; echo '#endif') | \ - (CCOPTS= $CC_FOR_BUILD -E - 2>/dev/null) | \ - grep IS_64BIT_ARCH >/dev/null + (CCOPTS="" $CC_FOR_BUILD -E - 2>/dev/null) | \ + grep IS_64BIT_ARCH >/dev/null then case $UNAME_PROCESSOR in i386) UNAME_PROCESSOR=x86_64 ;; powerpc) UNAME_PROCESSOR=powerpc64 ;; esac fi + # On 10.4-10.6 one might compile for PowerPC via gcc -arch ppc + if (echo '#ifdef __POWERPC__'; echo IS_PPC; echo '#endif') | \ + (CCOPTS="" $CC_FOR_BUILD -E - 2>/dev/null) | \ + grep IS_PPC >/dev/null + then + UNAME_PROCESSOR=powerpc + fi fi elif test "$UNAME_PROCESSOR" = i386 ; then # Avoid executing cc on OS X 10.9, as it ships with a stub @@ -1281,27 +1321,33 @@ # that Apple uses in portable devices. UNAME_PROCESSOR=x86_64 fi - echo ${UNAME_PROCESSOR}-apple-darwin${UNAME_RELEASE} + echo "$UNAME_PROCESSOR"-apple-darwin"$UNAME_RELEASE" exit ;; *:procnto*:*:* | *:QNX:[0123456789]*:*) UNAME_PROCESSOR=`uname -p` - if test "$UNAME_PROCESSOR" = "x86"; then + if test "$UNAME_PROCESSOR" = x86; then UNAME_PROCESSOR=i386 UNAME_MACHINE=pc fi - echo ${UNAME_PROCESSOR}-${UNAME_MACHINE}-nto-qnx${UNAME_RELEASE} + echo "$UNAME_PROCESSOR"-"$UNAME_MACHINE"-nto-qnx"$UNAME_RELEASE" exit ;; *:QNX:*:4*) echo i386-pc-qnx exit ;; - NEO-?:NONSTOP_KERNEL:*:*) - echo neo-tandem-nsk${UNAME_RELEASE} + NEO-*:NONSTOP_KERNEL:*:*) + echo neo-tandem-nsk"$UNAME_RELEASE" exit ;; NSE-*:NONSTOP_KERNEL:*:*) - echo nse-tandem-nsk${UNAME_RELEASE} + echo nse-tandem-nsk"$UNAME_RELEASE" exit ;; - NSR-?:NONSTOP_KERNEL:*:*) - echo nsr-tandem-nsk${UNAME_RELEASE} + NSR-*:NONSTOP_KERNEL:*:*) + echo nsr-tandem-nsk"$UNAME_RELEASE" + exit ;; + NSV-*:NONSTOP_KERNEL:*:*) + echo nsv-tandem-nsk"$UNAME_RELEASE" + exit ;; + NSX-*:NONSTOP_KERNEL:*:*) + echo nsx-tandem-nsk"$UNAME_RELEASE" exit ;; *:NonStop-UX:*:*) echo mips-compaq-nonstopux @@ -1310,18 +1356,18 @@ echo bs2000-siemens-sysv exit ;; DS/*:UNIX_System_V:*:*) - echo ${UNAME_MACHINE}-${UNAME_SYSTEM}-${UNAME_RELEASE} + echo "$UNAME_MACHINE"-"$UNAME_SYSTEM"-"$UNAME_RELEASE" exit ;; *:Plan9:*:*) # "uname -m" is not consistent, so use $cputype instead. 386 # is converted to i386 for consistency with other x86 # operating systems. - if test "$cputype" = "386"; then + if test "$cputype" = 386; then UNAME_MACHINE=i386 else UNAME_MACHINE="$cputype" fi - echo ${UNAME_MACHINE}-unknown-plan9 + echo "$UNAME_MACHINE"-unknown-plan9 exit ;; *:TOPS-10:*:*) echo pdp10-unknown-tops10 @@ -1342,14 +1388,14 @@ echo pdp10-unknown-its exit ;; SEI:*:*:SEIUX) - echo mips-sei-seiux${UNAME_RELEASE} + echo mips-sei-seiux"$UNAME_RELEASE" exit ;; *:DragonFly:*:*) - echo ${UNAME_MACHINE}-unknown-dragonfly`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` + echo "$UNAME_MACHINE"-unknown-dragonfly"`echo "$UNAME_RELEASE"|sed -e 's/[-(].*//'`" exit ;; *:*VMS:*:*) UNAME_MACHINE=`(uname -p) 2>/dev/null` - case "${UNAME_MACHINE}" in + case "$UNAME_MACHINE" in A*) echo alpha-dec-vms ; exit ;; I*) echo ia64-dec-vms ; exit ;; V*) echo vax-dec-vms ; exit ;; @@ -1358,34 +1404,48 @@ echo i386-pc-xenix exit ;; i*86:skyos:*:*) - echo ${UNAME_MACHINE}-pc-skyos`echo ${UNAME_RELEASE}` | sed -e 's/ .*$//' + echo "$UNAME_MACHINE"-pc-skyos"`echo "$UNAME_RELEASE" | sed -e 's/ .*$//'`" exit ;; i*86:rdos:*:*) - echo ${UNAME_MACHINE}-pc-rdos + echo "$UNAME_MACHINE"-pc-rdos exit ;; i*86:AROS:*:*) - echo ${UNAME_MACHINE}-pc-aros + echo "$UNAME_MACHINE"-pc-aros exit ;; x86_64:VMkernel:*:*) - echo ${UNAME_MACHINE}-unknown-esx + echo "$UNAME_MACHINE"-unknown-esx + exit ;; + amd64:Isilon\ OneFS:*:*) + echo x86_64-unknown-onefs exit ;; esac +echo "$0: unable to guess system type" >&2 + +case "$UNAME_MACHINE:$UNAME_SYSTEM" in + mips:Linux | mips64:Linux) + # If we got here on MIPS GNU/Linux, output extra information. + cat >&2 <&2 < in order to provide the needed -information to handle your system. +If $0 has already been updated, send the following data and any +information you think might be pertinent to config-patches@gnu.org to +provide the necessary information to handle your system. config.guess timestamp = $timestamp @@ -1404,16 +1464,16 @@ /usr/bin/oslevel = `(/usr/bin/oslevel) 2>/dev/null` /usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null` -UNAME_MACHINE = ${UNAME_MACHINE} -UNAME_RELEASE = ${UNAME_RELEASE} -UNAME_SYSTEM = ${UNAME_SYSTEM} -UNAME_VERSION = ${UNAME_VERSION} +UNAME_MACHINE = "$UNAME_MACHINE" +UNAME_RELEASE = "$UNAME_RELEASE" +UNAME_SYSTEM = "$UNAME_SYSTEM" +UNAME_VERSION = "$UNAME_VERSION" EOF exit 1 # Local variables: -# eval: (add-hook 'write-file-hooks 'time-stamp) +# eval: (add-hook 'write-file-functions 'time-stamp) # time-stamp-start: "timestamp='" # time-stamp-format: "%:y-%02m-%02d" # time-stamp-end: "'" diff -Nru atkmm1.6-2.24.2/build/config.h.in atkmm1.6-2.28.0/build/config.h.in --- atkmm1.6-2.24.2/build/config.h.in 2015-11-29 20:04:50.587523965 +0000 +++ atkmm1.6-2.28.0/build/config.h.in 2018-11-04 11:44:49.807537642 +0000 @@ -45,8 +45,7 @@ /* Define to 1 if you have the header file. */ #undef HAVE_UNISTD_H -/* Define to the sub-directory in which libtool stores uninstalled libraries. - */ +/* Define to the sub-directory where libtool stores uninstalled libraries. */ #undef LT_OBJDIR /* Define to the address where bug reports for this package should be sent. */ diff -Nru atkmm1.6-2.24.2/build/config.sub atkmm1.6-2.28.0/build/config.sub --- atkmm1.6-2.24.2/build/config.sub 2015-11-29 20:04:51.151452806 +0000 +++ atkmm1.6-2.28.0/build/config.sub 2018-11-04 11:44:50.455543758 +0000 @@ -1,8 +1,8 @@ #! /bin/sh # Configuration validation subroutine script. -# Copyright 1992-2014 Free Software Foundation, Inc. +# Copyright 1992-2018 Free Software Foundation, Inc. -timestamp='2014-09-11' +timestamp='2018-02-22' # This file is free software; you can redistribute it and/or modify it # under the terms of the GNU General Public License as published by @@ -15,7 +15,7 @@ # General Public License for more details. # # You should have received a copy of the GNU General Public License -# along with this program; if not, see . +# along with this program; if not, see . # # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a @@ -25,7 +25,7 @@ # of the GNU General Public License, version 3 ("GPLv3"). -# Please send patches with a ChangeLog entry to config-patches@gnu.org. +# Please send patches to . # # Configuration subroutine to validate and canonicalize a configuration type. # Supply the specified configuration type as an argument. @@ -33,7 +33,7 @@ # Otherwise, we print the canonical config type on stdout and succeed. # You can get the latest version of this script from: -# http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.sub;hb=HEAD +# https://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.sub # This file is supposed to be the same for all GNU packages # and recognize all the CPU types, system types and aliases @@ -53,12 +53,11 @@ me=`echo "$0" | sed -e 's,.*/,,'` usage="\ -Usage: $0 [OPTION] CPU-MFR-OPSYS - $0 [OPTION] ALIAS +Usage: $0 [OPTION] CPU-MFR-OPSYS or ALIAS Canonicalize a configuration name. -Operation modes: +Options: -h, --help print this help, then exit -t, --time-stamp print date of last modification, then exit -v, --version print version number, then exit @@ -68,7 +67,7 @@ version="\ GNU config.sub ($timestamp) -Copyright 1992-2014 Free Software Foundation, Inc. +Copyright 1992-2018 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." @@ -95,7 +94,7 @@ *local*) # First pass through any local machine types. - echo $1 + echo "$1" exit ;; * ) @@ -113,24 +112,24 @@ # Separate what the user gave into CPU-COMPANY and OS or KERNEL-OS (if any). # Here we must recognize all the valid KERNEL-OS combinations. -maybe_os=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\2/'` +maybe_os=`echo "$1" | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\2/'` case $maybe_os in nto-qnx* | linux-gnu* | linux-android* | linux-dietlibc | linux-newlib* | \ linux-musl* | linux-uclibc* | uclinux-uclibc* | uclinux-gnu* | kfreebsd*-gnu* | \ - knetbsd*-gnu* | netbsd*-gnu* | \ - kopensolaris*-gnu* | \ + knetbsd*-gnu* | netbsd*-gnu* | netbsd*-eabi* | \ + kopensolaris*-gnu* | cloudabi*-eabi* | \ storm-chaos* | os2-emx* | rtmk-nova*) os=-$maybe_os - basic_machine=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'` + basic_machine=`echo "$1" | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'` ;; android-linux) os=-linux-android - basic_machine=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'`-unknown + basic_machine=`echo "$1" | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'`-unknown ;; *) - basic_machine=`echo $1 | sed 's/-[^-]*$//'` - if [ $basic_machine != $1 ] - then os=`echo $1 | sed 's/.*-/-/'` + basic_machine=`echo "$1" | sed 's/-[^-]*$//'` + if [ "$basic_machine" != "$1" ] + then os=`echo "$1" | sed 's/.*-/-/'` else os=; fi ;; esac @@ -179,44 +178,44 @@ ;; -sco6) os=-sco5v6 - basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` + basic_machine=`echo "$1" | sed -e 's/86-.*/86-pc/'` ;; -sco5) os=-sco3.2v5 - basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` + basic_machine=`echo "$1" | sed -e 's/86-.*/86-pc/'` ;; -sco4) os=-sco3.2v4 - basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` + basic_machine=`echo "$1" | sed -e 's/86-.*/86-pc/'` ;; -sco3.2.[4-9]*) os=`echo $os | sed -e 's/sco3.2./sco3.2v/'` - basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` + basic_machine=`echo "$1" | sed -e 's/86-.*/86-pc/'` ;; -sco3.2v[4-9]*) # Don't forget version if it is 3.2v4 or newer. - basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` + basic_machine=`echo "$1" | sed -e 's/86-.*/86-pc/'` ;; -sco5v6*) # Don't forget version if it is 3.2v4 or newer. - basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` + basic_machine=`echo "$1" | sed -e 's/86-.*/86-pc/'` ;; -sco*) os=-sco3.2v2 - basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` + basic_machine=`echo "$1" | sed -e 's/86-.*/86-pc/'` ;; -udk*) - basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` + basic_machine=`echo "$1" | sed -e 's/86-.*/86-pc/'` ;; -isc) os=-isc2.2 - basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` + basic_machine=`echo "$1" | sed -e 's/86-.*/86-pc/'` ;; -clix*) basic_machine=clipper-intergraph ;; -isc*) - basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` + basic_machine=`echo "$1" | sed -e 's/86-.*/86-pc/'` ;; -lynx*178) os=-lynxos178 @@ -228,10 +227,7 @@ os=-lynxos ;; -ptx*) - basic_machine=`echo $1 | sed -e 's/86-.*/86-sequent/'` - ;; - -windowsnt*) - os=`echo $os | sed -e 's/windowsnt/winnt/'` + basic_machine=`echo "$1" | sed -e 's/86-.*/86-sequent/'` ;; -psos*) os=-psos @@ -255,15 +251,16 @@ | arc | arceb \ | arm | arm[bl]e | arme[lb] | armv[2-8] | armv[3-8][lb] | armv7[arm] \ | avr | avr32 \ + | ba \ | be32 | be64 \ | bfin \ | c4x | c8051 | clipper \ | d10v | d30v | dlx | dsp16xx \ - | epiphany \ - | fido | fr30 | frv \ + | e2k | epiphany \ + | fido | fr30 | frv | ft32 \ | h8300 | h8500 | hppa | hppa1.[01] | hppa2.0 | hppa2.0[nw] | hppa64 \ | hexagon \ - | i370 | i860 | i960 | ia64 \ + | i370 | i860 | i960 | ia16 | ia64 \ | ip2k | iq2000 \ | k1om \ | le32 | le64 \ @@ -299,13 +296,14 @@ | nios | nios2 | nios2eb | nios2el \ | ns16k | ns32k \ | open8 | or1k | or1knd | or32 \ - | pdp10 | pdp11 | pj | pjl \ + | pdp10 | pj | pjl \ | powerpc | powerpc64 | powerpc64le | powerpcle \ + | pru \ | pyramid \ | riscv32 | riscv64 \ | rl78 | rx \ | score \ - | sh | sh[1234] | sh[24]a | sh[24]aeb | sh[23]e | sh[34]eb | sheb | shbe | shle | sh[1234]le | sh3ele \ + | sh | sh[1234] | sh[24]a | sh[24]aeb | sh[23]e | sh[234]eb | sheb | shbe | shle | sh[1234]le | sh3ele \ | sh64 | sh64le \ | sparc | sparc64 | sparc64b | sparc64v | sparc86x | sparclet | sparclite \ | sparcv8 | sparcv9 | sparcv9b | sparcv9v \ @@ -313,7 +311,8 @@ | tahoe | tic4x | tic54x | tic55x | tic6x | tic80 | tron \ | ubicom32 \ | v850 | v850e | v850e1 | v850e2 | v850es | v850e2v3 \ - | we32k \ + | visium \ + | wasm32 \ | x86 | xc16x | xstormy16 | xtensa \ | z8k | z80) basic_machine=$basic_machine-unknown @@ -327,11 +326,14 @@ c6x) basic_machine=tic6x-unknown ;; + leon|leon[3-9]) + basic_machine=sparc-$basic_machine + ;; m6811 | m68hc11 | m6812 | m68hc12 | m68hcs12x | nvptx | picochip) basic_machine=$basic_machine-unknown os=-none ;; - m88110 | m680[12346]0 | m683?2 | m68360 | m5200 | v70 | w65 | z8k) + m88110 | m680[12346]0 | m683?2 | m68360 | m5200 | v70 | w65) ;; ms1) basic_machine=mt-unknown @@ -360,7 +362,7 @@ ;; # Object if more than one company name word. *-*-*) - echo Invalid configuration \`$1\': machine \`$basic_machine\' not recognized 1>&2 + echo Invalid configuration \`"$1"\': machine \`"$basic_machine"\' not recognized 1>&2 exit 1 ;; # Recognize the basic CPU types with company name. @@ -372,17 +374,18 @@ | alphapca5[67]-* | alpha64pca5[67]-* | arc-* | arceb-* \ | arm-* | armbe-* | armle-* | armeb-* | armv*-* \ | avr-* | avr32-* \ + | ba-* \ | be32-* | be64-* \ | bfin-* | bs2000-* \ | c[123]* | c30-* | [cjt]90-* | c4x-* \ | c8051-* | clipper-* | craynv-* | cydra-* \ | d10v-* | d30v-* | dlx-* \ - | elxsi-* \ + | e2k-* | elxsi-* \ | f30[01]-* | f700-* | fido-* | fr30-* | frv-* | fx80-* \ | h8300-* | h8500-* \ | hppa-* | hppa1.[01]-* | hppa2.0-* | hppa2.0[nw]-* | hppa64-* \ | hexagon-* \ - | i*86-* | i860-* | i960-* | ia64-* \ + | i*86-* | i860-* | i960-* | ia16-* | ia64-* \ | ip2k-* | iq2000-* \ | k1om-* \ | le32-* | le64-* \ @@ -423,13 +426,15 @@ | orion-* \ | pdp10-* | pdp11-* | pj-* | pjl-* | pn-* | power-* \ | powerpc-* | powerpc64-* | powerpc64le-* | powerpcle-* \ + | pru-* \ | pyramid-* \ + | riscv32-* | riscv64-* \ | rl78-* | romp-* | rs6000-* | rx-* \ | sh-* | sh[1234]-* | sh[24]a-* | sh[24]aeb-* | sh[23]e-* | sh[34]eb-* | sheb-* | shbe-* \ | shle-* | sh[1234]le-* | sh3ele-* | sh64-* | sh64le-* \ | sparc-* | sparc64-* | sparc64b-* | sparc64v-* | sparc86x-* | sparclet-* \ | sparclite-* \ - | sparcv8-* | sparcv9-* | sparcv9b-* | sparcv9v-* | sv1-* | sx?-* \ + | sparcv8-* | sparcv9-* | sparcv9b-* | sparcv9v-* | sv1-* | sx*-* \ | tahoe-* \ | tic30-* | tic4x-* | tic54x-* | tic55x-* | tic6x-* | tic80-* \ | tile*-* \ @@ -437,6 +442,8 @@ | ubicom32-* \ | v850-* | v850e-* | v850e1-* | v850es-* | v850e2-* | v850e2v3-* \ | vax-* \ + | visium-* \ + | wasm32-* \ | we32k-* \ | x86-* | x86_64-* | xc16x-* | xps100-* \ | xstormy16-* | xtensa*-* \ @@ -450,7 +457,7 @@ # Recognize the various machine names and aliases which stand # for a CPU type and a company and sometimes even an OS. 386bsd) - basic_machine=i386-unknown + basic_machine=i386-pc os=-bsd ;; 3b1 | 7300 | 7300-att | att-7300 | pc7300 | safari | unixpc) @@ -484,7 +491,7 @@ basic_machine=x86_64-pc ;; amd64-*) - basic_machine=x86_64-`echo $basic_machine | sed 's/^[^-]*-//'` + basic_machine=x86_64-`echo "$basic_machine" | sed 's/^[^-]*-//'` ;; amdahl) basic_machine=580-amdahl @@ -513,6 +520,9 @@ basic_machine=i386-pc os=-aros ;; + asmjs) + basic_machine=asmjs-unknown + ;; aux) basic_machine=m68k-apple os=-aux @@ -526,7 +536,7 @@ os=-linux ;; blackfin-*) - basic_machine=bfin-`echo $basic_machine | sed 's/^[^-]*-//'` + basic_machine=bfin-`echo "$basic_machine" | sed 's/^[^-]*-//'` os=-linux ;; bluegene*) @@ -534,13 +544,13 @@ os=-cnk ;; c54x-*) - basic_machine=tic54x-`echo $basic_machine | sed 's/^[^-]*-//'` + basic_machine=tic54x-`echo "$basic_machine" | sed 's/^[^-]*-//'` ;; c55x-*) - basic_machine=tic55x-`echo $basic_machine | sed 's/^[^-]*-//'` + basic_machine=tic55x-`echo "$basic_machine" | sed 's/^[^-]*-//'` ;; c6x-*) - basic_machine=tic6x-`echo $basic_machine | sed 's/^[^-]*-//'` + basic_machine=tic6x-`echo "$basic_machine" | sed 's/^[^-]*-//'` ;; c90) basic_machine=c90-cray @@ -629,10 +639,18 @@ basic_machine=rs6000-bull os=-bosx ;; - dpx2* | dpx2*-bull) + dpx2*) basic_machine=m68k-bull os=-sysv3 ;; + e500v[12]) + basic_machine=powerpc-unknown + os=$os"spe" + ;; + e500v[12]-*) + basic_machine=powerpc-`echo "$basic_machine" | sed 's/^[^-]*-//'` + os=$os"spe" + ;; ebmon29k) basic_machine=a29k-amd os=-ebmon @@ -722,9 +740,6 @@ hp9k8[0-9][0-9] | hp8[0-9][0-9]) basic_machine=hppa1.0-hp ;; - hppa-next) - os=-nextstep3 - ;; hppaosf) basic_machine=hppa1.1-hp os=-osf @@ -737,26 +752,26 @@ basic_machine=i370-ibm ;; i*86v32) - basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` + basic_machine=`echo "$1" | sed -e 's/86.*/86-pc/'` os=-sysv32 ;; i*86v4*) - basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` + basic_machine=`echo "$1" | sed -e 's/86.*/86-pc/'` os=-sysv4 ;; i*86v) - basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` + basic_machine=`echo "$1" | sed -e 's/86.*/86-pc/'` os=-sysv ;; i*86sol2) - basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` + basic_machine=`echo "$1" | sed -e 's/86.*/86-pc/'` os=-solaris2 ;; i386mach) basic_machine=i386-mach os=-mach ;; - i386-vsta | vsta) + vsta) basic_machine=i386-unknown os=-vsta ;; @@ -774,17 +789,17 @@ basic_machine=m68k-isi os=-sysv ;; + leon-*|leon[3-9]-*) + basic_machine=sparc-`echo "$basic_machine" | sed 's/-.*//'` + ;; m68knommu) basic_machine=m68k-unknown os=-linux ;; m68knommu-*) - basic_machine=m68k-`echo $basic_machine | sed 's/^[^-]*-//'` + basic_machine=m68k-`echo "$basic_machine" | sed 's/^[^-]*-//'` os=-linux ;; - m88k-omron*) - basic_machine=m88k-omron - ;; magnum | m3230) basic_machine=mips-mips os=-sysv @@ -816,10 +831,10 @@ os=-mint ;; mips3*-*) - basic_machine=`echo $basic_machine | sed -e 's/mips3/mips64/'` + basic_machine=`echo "$basic_machine" | sed -e 's/mips3/mips64/'` ;; mips3*) - basic_machine=`echo $basic_machine | sed -e 's/mips3/mips64/'`-unknown + basic_machine=`echo "$basic_machine" | sed -e 's/mips3/mips64/'`-unknown ;; monitor) basic_machine=m68k-rom68k @@ -838,7 +853,7 @@ os=-msdos ;; ms1-*) - basic_machine=`echo $basic_machine | sed -e 's/ms1-/mt-/'` + basic_machine=`echo "$basic_machine" | sed -e 's/ms1-/mt-/'` ;; msys) basic_machine=i686-pc @@ -880,7 +895,7 @@ basic_machine=v70-nec os=-sysv ;; - next | m*-next ) + next | m*-next) basic_machine=m68k-next case $os in -nextstep* ) @@ -925,6 +940,12 @@ nsr-tandem) basic_machine=nsr-tandem ;; + nsv-tandem) + basic_machine=nsv-tandem + ;; + nsx-tandem) + basic_machine=nsx-tandem + ;; op50n-* | op60c-*) basic_machine=hppa1.1-oki os=-proelf @@ -957,7 +978,7 @@ os=-linux ;; parisc-*) - basic_machine=hppa-`echo $basic_machine | sed 's/^[^-]*-//'` + basic_machine=hppa-`echo "$basic_machine" | sed 's/^[^-]*-//'` os=-linux ;; pbd) @@ -973,7 +994,7 @@ basic_machine=i386-pc ;; pc98-*) - basic_machine=i386-`echo $basic_machine | sed 's/^[^-]*-//'` + basic_machine=i386-`echo "$basic_machine" | sed 's/^[^-]*-//'` ;; pentium | p5 | k5 | k6 | nexgen | viac3) basic_machine=i586-pc @@ -988,16 +1009,16 @@ basic_machine=i786-pc ;; pentium-* | p5-* | k5-* | k6-* | nexgen-* | viac3-*) - basic_machine=i586-`echo $basic_machine | sed 's/^[^-]*-//'` + basic_machine=i586-`echo "$basic_machine" | sed 's/^[^-]*-//'` ;; pentiumpro-* | p6-* | 6x86-* | athlon-*) - basic_machine=i686-`echo $basic_machine | sed 's/^[^-]*-//'` + basic_machine=i686-`echo "$basic_machine" | sed 's/^[^-]*-//'` ;; pentiumii-* | pentium2-* | pentiumiii-* | pentium3-*) - basic_machine=i686-`echo $basic_machine | sed 's/^[^-]*-//'` + basic_machine=i686-`echo "$basic_machine" | sed 's/^[^-]*-//'` ;; pentium4-*) - basic_machine=i786-`echo $basic_machine | sed 's/^[^-]*-//'` + basic_machine=i786-`echo "$basic_machine" | sed 's/^[^-]*-//'` ;; pn) basic_machine=pn-gould @@ -1007,23 +1028,23 @@ ppc | ppcbe) basic_machine=powerpc-unknown ;; ppc-* | ppcbe-*) - basic_machine=powerpc-`echo $basic_machine | sed 's/^[^-]*-//'` + basic_machine=powerpc-`echo "$basic_machine" | sed 's/^[^-]*-//'` ;; - ppcle | powerpclittle | ppc-le | powerpc-little) + ppcle | powerpclittle) basic_machine=powerpcle-unknown ;; ppcle-* | powerpclittle-*) - basic_machine=powerpcle-`echo $basic_machine | sed 's/^[^-]*-//'` + basic_machine=powerpcle-`echo "$basic_machine" | sed 's/^[^-]*-//'` ;; ppc64) basic_machine=powerpc64-unknown ;; - ppc64-*) basic_machine=powerpc64-`echo $basic_machine | sed 's/^[^-]*-//'` + ppc64-*) basic_machine=powerpc64-`echo "$basic_machine" | sed 's/^[^-]*-//'` ;; - ppc64le | powerpc64little | ppc64-le | powerpc64-little) + ppc64le | powerpc64little) basic_machine=powerpc64le-unknown ;; ppc64le-* | powerpc64little-*) - basic_machine=powerpc64le-`echo $basic_machine | sed 's/^[^-]*-//'` + basic_machine=powerpc64le-`echo "$basic_machine" | sed 's/^[^-]*-//'` ;; ps2) basic_machine=i386-ibm @@ -1077,17 +1098,10 @@ sequent) basic_machine=i386-sequent ;; - sh) - basic_machine=sh-hitachi - os=-hms - ;; sh5el) basic_machine=sh5le-unknown ;; - sh64) - basic_machine=sh64-unknown - ;; - sparclite-wrs | simso-wrs) + simso-wrs) basic_machine=sparclite-wrs os=-vxworks ;; @@ -1106,7 +1120,7 @@ os=-sysv4 ;; strongarm-* | thumb-*) - basic_machine=arm-`echo $basic_machine | sed 's/^[^-]*-//'` + basic_machine=arm-`echo "$basic_machine" | sed 's/^[^-]*-//'` ;; sun2) basic_machine=m68000-sun @@ -1228,6 +1242,9 @@ basic_machine=hppa1.1-winbond os=-proelf ;; + x64) + basic_machine=x86_64-pc + ;; xbox) basic_machine=i686-pc os=-mingw32 @@ -1236,20 +1253,12 @@ basic_machine=xps100-honeywell ;; xscale-* | xscalee[bl]-*) - basic_machine=`echo $basic_machine | sed 's/^xscale/arm/'` + basic_machine=`echo "$basic_machine" | sed 's/^xscale/arm/'` ;; ymp) basic_machine=ymp-cray os=-unicos ;; - z8k-*-coff) - basic_machine=z8k-unknown - os=-sim - ;; - z80-*-coff) - basic_machine=z80-unknown - os=-sim - ;; none) basic_machine=none-none os=-none @@ -1278,10 +1287,6 @@ vax) basic_machine=vax-dec ;; - pdp10) - # there are many clones, so DEC is not a safe bet - basic_machine=pdp10-unknown - ;; pdp11) basic_machine=pdp11-dec ;; @@ -1291,9 +1296,6 @@ sh[1234] | sh[24]a | sh[24]aeb | sh[34]eb | sh[1234]le | sh[23]ele) basic_machine=sh-unknown ;; - sparc | sparcv8 | sparcv9 | sparcv9b | sparcv9v) - basic_machine=sparc-sun - ;; cydra) basic_machine=cydra-cydrome ;; @@ -1313,7 +1315,7 @@ # Make sure to match an already-canonicalized machine name. ;; *) - echo Invalid configuration \`$1\': machine \`$basic_machine\' not recognized 1>&2 + echo Invalid configuration \`"$1"\': machine \`"$basic_machine"\' not recognized 1>&2 exit 1 ;; esac @@ -1321,10 +1323,10 @@ # Here we canonicalize certain aliases for manufacturers. case $basic_machine in *-digital*) - basic_machine=`echo $basic_machine | sed 's/digital.*/dec/'` + basic_machine=`echo "$basic_machine" | sed 's/digital.*/dec/'` ;; *-commodore*) - basic_machine=`echo $basic_machine | sed 's/commodore.*/cbm/'` + basic_machine=`echo "$basic_machine" | sed 's/commodore.*/cbm/'` ;; *) ;; @@ -1335,8 +1337,8 @@ if [ x"$os" != x"" ] then case $os in - # First match some system type aliases - # that might get confused with valid system types. + # First match some system type aliases that might get confused + # with valid system types. # -solaris* is a basic system type, with this one exception. -auroraux) os=-auroraux @@ -1347,45 +1349,48 @@ -solaris) os=-solaris2 ;; - -svr4*) - os=-sysv4 - ;; -unixware*) os=-sysv4.2uw ;; -gnu/linux*) os=`echo $os | sed -e 's|gnu/linux|linux-gnu|'` ;; - # First accept the basic system types. + # es1800 is here to avoid being matched by es* (a different OS) + -es1800*) + os=-ose + ;; + # Now accept the basic system types. # The portable systems comes first. - # Each alternative MUST END IN A *, to match a version number. + # Each alternative MUST end in a * to match a version number. # -sysv* is not here because it comes later, after sysvr4. -gnu* | -bsd* | -mach* | -minix* | -genix* | -ultrix* | -irix* \ | -*vms* | -sco* | -esix* | -isc* | -aix* | -cnk* | -sunos | -sunos[34]*\ | -hpux* | -unos* | -osf* | -luna* | -dgux* | -auroraux* | -solaris* \ | -sym* | -kopensolaris* | -plan9* \ | -amigaos* | -amigados* | -msdos* | -newsos* | -unicos* | -aof* \ - | -aos* | -aros* \ + | -aos* | -aros* | -cloudabi* | -sortix* \ | -nindy* | -vxsim* | -vxworks* | -ebmon* | -hms* | -mvs* \ | -clix* | -riscos* | -uniplus* | -iris* | -rtu* | -xenix* \ - | -hiux* | -386bsd* | -knetbsd* | -mirbsd* | -netbsd* \ - | -bitrig* | -openbsd* | -solidbsd* \ + | -hiux* | -knetbsd* | -mirbsd* | -netbsd* \ + | -bitrig* | -openbsd* | -solidbsd* | -libertybsd* \ | -ekkobsd* | -kfreebsd* | -freebsd* | -riscix* | -lynxos* \ | -bosx* | -nextstep* | -cxux* | -aout* | -elf* | -oabi* \ | -ptx* | -coff* | -ecoff* | -winnt* | -domain* | -vsta* \ | -udi* | -eabi* | -lites* | -ieee* | -go32* | -aux* \ - | -chorusos* | -chorusrdb* | -cegcc* \ + | -chorusos* | -chorusrdb* | -cegcc* | -glidix* \ | -cygwin* | -msys* | -pe* | -psos* | -moss* | -proelf* | -rtems* \ - | -mingw32* | -mingw64* | -linux-gnu* | -linux-android* \ + | -midipix* | -mingw32* | -mingw64* | -linux-gnu* | -linux-android* \ | -linux-newlib* | -linux-musl* | -linux-uclibc* \ | -uxpv* | -beos* | -mpeix* | -udk* | -moxiebox* \ - | -interix* | -uwin* | -mks* | -rhapsody* | -darwin* | -opened* \ + | -interix* | -uwin* | -mks* | -rhapsody* | -darwin* \ | -openstep* | -oskit* | -conix* | -pw32* | -nonstopux* \ | -storm-chaos* | -tops10* | -tenex* | -tops20* | -its* \ | -os2* | -vos* | -palmos* | -uclinux* | -nucleus* \ - | -morphos* | -superux* | -rtmk* | -rtmk-nova* | -windiss* \ + | -morphos* | -superux* | -rtmk* | -windiss* \ | -powermax* | -dnix* | -nx6 | -nx7 | -sei* | -dragonfly* \ - | -skyos* | -haiku* | -rdos* | -toppers* | -drops* | -es* | -tirtos*) + | -skyos* | -haiku* | -rdos* | -toppers* | -drops* | -es* \ + | -onefs* | -tirtos* | -phoenix* | -fuchsia* | -redox* | -bme* \ + | -midnightbsd*) # Remember, each alternative MUST END IN *, to match a version number. ;; -qnx*) @@ -1402,12 +1407,12 @@ -nto*) os=`echo $os | sed -e 's|nto|nto-qnx|'` ;; - -sim | -es1800* | -hms* | -xray | -os68k* | -none* | -v88r* \ - | -windows* | -osx | -abug | -netware* | -os9* | -beos* | -haiku* \ + -sim | -xray | -os68k* | -v88r* \ + | -windows* | -osx | -abug | -netware* | -os9* \ | -macos* | -mpw* | -magic* | -mmixware* | -mon960* | -lnews*) ;; -mac*) - os=`echo $os | sed -e 's|mac|macos|'` + os=`echo "$os" | sed -e 's|mac|macos|'` ;; -linux-dietlibc) os=-linux-dietlibc @@ -1416,10 +1421,10 @@ os=`echo $os | sed -e 's|linux|linux-gnu|'` ;; -sunos5*) - os=`echo $os | sed -e 's|sunos5|solaris2|'` + os=`echo "$os" | sed -e 's|sunos5|solaris2|'` ;; -sunos6*) - os=`echo $os | sed -e 's|sunos6|solaris3|'` + os=`echo "$os" | sed -e 's|sunos6|solaris3|'` ;; -opened*) os=-openedition @@ -1430,12 +1435,6 @@ -wince*) os=-wince ;; - -osfrose*) - os=-osfrose - ;; - -osf*) - os=-osf - ;; -utek*) os=-bsd ;; @@ -1460,7 +1459,7 @@ -nova*) os=-rtmk-nova ;; - -ns2 ) + -ns2) os=-nextstep2 ;; -nsk*) @@ -1482,7 +1481,7 @@ -oss*) os=-sysv3 ;; - -svr4) + -svr4*) os=-sysv4 ;; -svr3) @@ -1497,32 +1496,38 @@ -ose*) os=-ose ;; - -es1800*) - os=-ose - ;; - -xenix) - os=-xenix - ;; -*mint | -mint[0-9]* | -*MiNT | -MiNT[0-9]*) os=-mint ;; - -aros*) - os=-aros - ;; -zvmoe) os=-zvmoe ;; -dicos*) os=-dicos ;; + -pikeos*) + # Until real need of OS specific support for + # particular features comes up, bare metal + # configurations are quite functional. + case $basic_machine in + arm*) + os=-eabi + ;; + *) + os=-elf + ;; + esac + ;; -nacl*) ;; + -ios) + ;; -none) ;; *) # Get rid of the `-' at the beginning of $os. os=`echo $os | sed 's/[^-]*-//'` - echo Invalid configuration \`$1\': system \`$os\' not recognized 1>&2 + echo Invalid configuration \`"$1"\': system \`"$os"\' not recognized 1>&2 exit 1 ;; esac @@ -1612,12 +1617,12 @@ sparc-* | *-sun) os=-sunos4.1.1 ;; + pru-*) + os=-elf + ;; *-be) os=-beos ;; - *-haiku) - os=-haiku - ;; *-ibm) os=-aix ;; @@ -1657,7 +1662,7 @@ m88k-omron*) os=-luna ;; - *-next ) + *-next) os=-nextstep ;; *-sequent) @@ -1672,9 +1677,6 @@ i370-*) os=-mvs ;; - *-next) - os=-nextstep3 - ;; *-gould) os=-sysv ;; @@ -1784,15 +1786,15 @@ vendor=stratus ;; esac - basic_machine=`echo $basic_machine | sed "s/unknown/$vendor/"` + basic_machine=`echo "$basic_machine" | sed "s/unknown/$vendor/"` ;; esac -echo $basic_machine$os +echo "$basic_machine$os" exit # Local variables: -# eval: (add-hook 'write-file-hooks 'time-stamp) +# eval: (add-hook 'write-file-functions 'time-stamp) # time-stamp-start: "timestamp='" # time-stamp-format: "%:y-%02m-%02d" # time-stamp-end: "'" diff -Nru atkmm1.6-2.24.2/build/depcomp atkmm1.6-2.28.0/build/depcomp --- atkmm1.6-2.24.2/build/depcomp 2015-11-29 20:04:51.351427593 +0000 +++ atkmm1.6-2.28.0/build/depcomp 2018-11-04 11:44:50.791546929 +0000 @@ -1,9 +1,9 @@ #! /bin/sh # depcomp - compile a program generating dependencies as side-effects -scriptversion=2013-05-30.07; # UTC +scriptversion=2018-03-07.03; # UTC -# Copyright (C) 1999-2014 Free Software Foundation, Inc. +# Copyright (C) 1999-2018 Free Software Foundation, Inc. # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -16,7 +16,7 @@ # GNU General Public License for more details. # You should have received a copy of the GNU General Public License -# along with this program. If not, see . +# along with this program. If not, see . # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a @@ -783,9 +783,9 @@ # Local Variables: # mode: shell-script # sh-indentation: 2 -# eval: (add-hook 'write-file-hooks 'time-stamp) +# eval: (add-hook 'before-save-hook 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" -# time-stamp-time-zone: "UTC" +# time-stamp-time-zone: "UTC0" # time-stamp-end: "; # UTC" # End: diff -Nru atkmm1.6-2.24.2/build/install-sh atkmm1.6-2.28.0/build/install-sh --- atkmm1.6-2.24.2/build/install-sh 2015-11-29 20:04:51.155452302 +0000 +++ atkmm1.6-2.28.0/build/install-sh 2018-11-04 11:44:50.459543797 +0000 @@ -1,7 +1,7 @@ #!/bin/sh # install - install a program, script, or datafile -scriptversion=2013-12-25.23; # UTC +scriptversion=2018-03-11.20; # UTC # This originates from X11R5 (mit/util/scripts/install.sh), which was # later released in X11R6 (xc/config/util/install.sh) with the @@ -271,15 +271,18 @@ fi dst=$dst_arg - # If destination is a directory, append the input filename; won't work - # if double slashes aren't ignored. + # If destination is a directory, append the input filename. if test -d "$dst"; then if test "$is_target_a_directory" = never; then echo "$0: $dst_arg: Is a directory" >&2 exit 1 fi dstdir=$dst - dst=$dstdir/`basename "$src"` + dstbase=`basename "$src"` + case $dst in + */) dst=$dst$dstbase;; + *) dst=$dst/$dstbase;; + esac dstdir_status=0 else dstdir=`dirname "$dst"` @@ -288,6 +291,11 @@ fi fi + case $dstdir in + */) dstdirslash=$dstdir;; + *) dstdirslash=$dstdir/;; + esac + obsolete_mkdir_used=false if test $dstdir_status != 0; then @@ -324,34 +332,43 @@ # is incompatible with FreeBSD 'install' when (umask & 300) != 0. ;; *) + # Note that $RANDOM variable is not portable (e.g. dash); Use it + # here however when possible just to lower collision chance. tmpdir=${TMPDIR-/tmp}/ins$RANDOM-$$ - trap 'ret=$?; rmdir "$tmpdir/d" "$tmpdir" 2>/dev/null; exit $ret' 0 + trap 'ret=$?; rmdir "$tmpdir/a/b" "$tmpdir/a" "$tmpdir" 2>/dev/null; exit $ret' 0 + + # Because "mkdir -p" follows existing symlinks and we likely work + # directly in world-writeable /tmp, make sure that the '$tmpdir' + # directory is successfully created first before we actually test + # 'mkdir -p' feature. if (umask $mkdir_umask && - exec $mkdirprog $mkdir_mode -p -- "$tmpdir/d") >/dev/null 2>&1 + $mkdirprog $mkdir_mode "$tmpdir" && + exec $mkdirprog $mkdir_mode -p -- "$tmpdir/a/b") >/dev/null 2>&1 then if test -z "$dir_arg" || { # Check for POSIX incompatibilities with -m. # HP-UX 11.23 and IRIX 6.5 mkdir -m -p sets group- or # other-writable bit of parent directory when it shouldn't. # FreeBSD 6.1 mkdir -m -p sets mode of existing directory. - ls_ld_tmpdir=`ls -ld "$tmpdir"` + test_tmpdir="$tmpdir/a" + ls_ld_tmpdir=`ls -ld "$test_tmpdir"` case $ls_ld_tmpdir in d????-?r-*) different_mode=700;; d????-?--*) different_mode=755;; *) false;; esac && - $mkdirprog -m$different_mode -p -- "$tmpdir" && { - ls_ld_tmpdir_1=`ls -ld "$tmpdir"` + $mkdirprog -m$different_mode -p -- "$test_tmpdir" && { + ls_ld_tmpdir_1=`ls -ld "$test_tmpdir"` test "$ls_ld_tmpdir" = "$ls_ld_tmpdir_1" } } then posix_mkdir=: fi - rmdir "$tmpdir/d" "$tmpdir" + rmdir "$tmpdir/a/b" "$tmpdir/a" "$tmpdir" else # Remove any dirs left behind by ancient mkdir implementations. - rmdir ./$mkdir_mode ./-p ./-- 2>/dev/null + rmdir ./$mkdir_mode ./-p ./-- "$tmpdir" 2>/dev/null fi trap '' 0;; esac;; @@ -427,8 +444,8 @@ else # Make a couple of temp file names in the proper directory. - dsttmp=$dstdir/_inst.$$_ - rmtmp=$dstdir/_rm.$$_ + dsttmp=${dstdirslash}_inst.$$_ + rmtmp=${dstdirslash}_rm.$$_ # Trap to clean up those temp files at exit. trap 'ret=$?; rm -f "$dsttmp" "$rmtmp" && exit $ret' 0 @@ -493,9 +510,9 @@ done # Local variables: -# eval: (add-hook 'write-file-hooks 'time-stamp) +# eval: (add-hook 'before-save-hook 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" -# time-stamp-time-zone: "UTC" +# time-stamp-time-zone: "UTC0" # time-stamp-end: "; # UTC" # End: diff -Nru atkmm1.6-2.24.2/build/libtool.m4 atkmm1.6-2.28.0/build/libtool.m4 --- atkmm1.6-2.24.2/build/libtool.m4 2015-11-29 20:04:44.484296782 +0000 +++ atkmm1.6-2.28.0/build/libtool.m4 2018-11-04 11:44:43.971482252 +0000 @@ -1,8 +1,6 @@ # libtool.m4 - Configure libtool for the host system. -*-Autoconf-*- # -# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005, -# 2006, 2007, 2008, 2009, 2010, 2011 Free Software -# Foundation, Inc. +# Copyright (C) 1996-2001, 2003-2015 Free Software Foundation, Inc. # Written by Gordon Matzigkeit, 1996 # # This file is free software; the Free Software Foundation gives @@ -10,36 +8,30 @@ # modifications, as long as this notice is preserved. m4_define([_LT_COPYING], [dnl -# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005, -# 2006, 2007, 2008, 2009, 2010, 2011 Free Software -# Foundation, Inc. -# Written by Gordon Matzigkeit, 1996 -# -# This file is part of GNU Libtool. -# -# GNU Libtool is free software; you can redistribute it and/or -# modify it under the terms of the GNU General Public License as -# published by the Free Software Foundation; either version 2 of -# the License, or (at your option) any later version. +# Copyright (C) 2014 Free Software Foundation, Inc. +# This is free software; see the source for copying conditions. There is NO +# warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + +# GNU Libtool is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of of the License, or +# (at your option) any later version. # -# As a special exception to the GNU General Public License, -# if you distribute this file as part of a program or library that -# is built using GNU Libtool, you may include this file under the -# same distribution terms that you use for the rest of that program. +# As a special exception to the GNU General Public License, if you +# distribute this file as part of a program or library that is built +# using GNU Libtool, you may include this file under the same +# distribution terms that you use for the rest of that program. # -# GNU Libtool is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of +# GNU Libtool is distributed in the hope that it will be useful, but +# WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License -# along with GNU Libtool; see the file COPYING. If not, a copy -# can be downloaded from http://www.gnu.org/licenses/gpl.html, or -# obtained by writing to the Free Software Foundation, Inc., -# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +# along with this program. If not, see . ]) -# serial 57 LT_INIT +# serial 58 LT_INIT # LT_PREREQ(VERSION) @@ -67,7 +59,7 @@ # LT_INIT([OPTIONS]) # ------------------ AC_DEFUN([LT_INIT], -[AC_PREREQ([2.58])dnl We use AC_INCLUDES_DEFAULT +[AC_PREREQ([2.62])dnl We use AC_PATH_PROGS_FEATURE_CHECK AC_REQUIRE([AC_CONFIG_AUX_DIR_DEFAULT])dnl AC_BEFORE([$0], [LT_LANG])dnl AC_BEFORE([$0], [LT_OUTPUT])dnl @@ -91,7 +83,7 @@ _LT_SET_OPTIONS([$0], [$1]) # This can be used to rebuild libtool when needed -LIBTOOL_DEPS="$ltmain" +LIBTOOL_DEPS=$ltmain # Always use our own libtool. LIBTOOL='$(SHELL) $(top_builddir)/libtool' @@ -111,26 +103,43 @@ dnl AC_DEFUN([AM_PROG_LIBTOOL], []) +# _LT_PREPARE_CC_BASENAME +# ----------------------- +m4_defun([_LT_PREPARE_CC_BASENAME], [ +# Calculate cc_basename. Skip known compiler wrappers and cross-prefix. +func_cc_basename () +{ + for cc_temp in @S|@*""; do + case $cc_temp in + compile | *[[\\/]]compile | ccache | *[[\\/]]ccache ) ;; + distcc | *[[\\/]]distcc | purify | *[[\\/]]purify ) ;; + \-*) ;; + *) break;; + esac + done + func_cc_basename_result=`$ECHO "$cc_temp" | $SED "s%.*/%%; s%^$host_alias-%%"` +} +])# _LT_PREPARE_CC_BASENAME + + # _LT_CC_BASENAME(CC) # ------------------- -# Calculate cc_basename. Skip known compiler wrappers and cross-prefix. +# It would be clearer to call AC_REQUIREs from _LT_PREPARE_CC_BASENAME, +# but that macro is also expanded into generated libtool script, which +# arranges for $SED and $ECHO to be set by different means. m4_defun([_LT_CC_BASENAME], -[for cc_temp in $1""; do - case $cc_temp in - compile | *[[\\/]]compile | ccache | *[[\\/]]ccache ) ;; - distcc | *[[\\/]]distcc | purify | *[[\\/]]purify ) ;; - \-*) ;; - *) break;; - esac -done -cc_basename=`$ECHO "$cc_temp" | $SED "s%.*/%%; s%^$host_alias-%%"` +[m4_require([_LT_PREPARE_CC_BASENAME])dnl +AC_REQUIRE([_LT_DECL_SED])dnl +AC_REQUIRE([_LT_PROG_ECHO_BACKSLASH])dnl +func_cc_basename $1 +cc_basename=$func_cc_basename_result ]) # _LT_FILEUTILS_DEFAULTS # ---------------------- # It is okay to use these file commands and assume they have been set -# sensibly after `m4_require([_LT_FILEUTILS_DEFAULTS])'. +# sensibly after 'm4_require([_LT_FILEUTILS_DEFAULTS])'. m4_defun([_LT_FILEUTILS_DEFAULTS], [: ${CP="cp -f"} : ${MV="mv -f"} @@ -177,15 +186,16 @@ m4_require([_LT_CMD_OLD_ARCHIVE])dnl m4_require([_LT_CMD_GLOBAL_SYMBOLS])dnl m4_require([_LT_WITH_SYSROOT])dnl +m4_require([_LT_CMD_TRUNCATE])dnl _LT_CONFIG_LIBTOOL_INIT([ -# See if we are running on zsh, and set the options which allow our +# See if we are running on zsh, and set the options that allow our # commands through without removal of \ escapes INIT. -if test -n "\${ZSH_VERSION+set}" ; then +if test -n "\${ZSH_VERSION+set}"; then setopt NO_GLOB_SUBST fi ]) -if test -n "${ZSH_VERSION+set}" ; then +if test -n "${ZSH_VERSION+set}"; then setopt NO_GLOB_SUBST fi @@ -198,7 +208,7 @@ # AIX sometimes has problems with the GCC collect2 program. For some # reason, if we set the COLLECT_NAMES environment variable, the problems # vanish in a puff of smoke. - if test "X${COLLECT_NAMES+set}" != Xset; then + if test set != "${COLLECT_NAMES+set}"; then COLLECT_NAMES= export COLLECT_NAMES fi @@ -209,14 +219,14 @@ ofile=libtool can_build_shared=yes -# All known linkers require a `.a' archive for static linking (except MSVC, +# All known linkers require a '.a' archive for static linking (except MSVC, # which needs '.lib'). libext=a -with_gnu_ld="$lt_cv_prog_gnu_ld" +with_gnu_ld=$lt_cv_prog_gnu_ld -old_CC="$CC" -old_CFLAGS="$CFLAGS" +old_CC=$CC +old_CFLAGS=$CFLAGS # Set sane defaults for various variables test -z "$CC" && CC=cc @@ -269,14 +279,14 @@ # _LT_PROG_LTMAIN # --------------- -# Note that this code is called both from `configure', and `config.status' +# Note that this code is called both from 'configure', and 'config.status' # now that we use AC_CONFIG_COMMANDS to generate libtool. Notably, -# `config.status' has no value for ac_aux_dir unless we are using Automake, +# 'config.status' has no value for ac_aux_dir unless we are using Automake, # so we pass a copy along to make sure it has a sensible value anyway. m4_defun([_LT_PROG_LTMAIN], [m4_ifdef([AC_REQUIRE_AUX_FILE], [AC_REQUIRE_AUX_FILE([ltmain.sh])])dnl _LT_CONFIG_LIBTOOL_INIT([ac_aux_dir='$ac_aux_dir']) -ltmain="$ac_aux_dir/ltmain.sh" +ltmain=$ac_aux_dir/ltmain.sh ])# _LT_PROG_LTMAIN @@ -286,7 +296,7 @@ # So that we can recreate a full libtool script including additional # tags, we accumulate the chunks of code to send to AC_CONFIG_COMMANDS -# in macros and then make a single call at the end using the `libtool' +# in macros and then make a single call at the end using the 'libtool' # label. @@ -421,8 +431,8 @@ # _LT_CONFIG_STATUS_DECLARE([VARNAME]) # ------------------------------------ -# Quote a variable value, and forward it to `config.status' so that its -# declaration there will have the same value as in `configure'. VARNAME +# Quote a variable value, and forward it to 'config.status' so that its +# declaration there will have the same value as in 'configure'. VARNAME # must have a single quote delimited value for this to work. m4_define([_LT_CONFIG_STATUS_DECLARE], [$1='`$ECHO "$][$1" | $SED "$delay_single_quote_subst"`']) @@ -446,7 +456,7 @@ # Output comment and list of tags supported by the script m4_defun([_LT_LIBTOOL_TAGS], [_LT_FORMAT_COMMENT([The names of the tagged configurations supported by this script])dnl -available_tags="_LT_TAGS"dnl +available_tags='_LT_TAGS'dnl ]) @@ -474,7 +484,7 @@ # _LT_LIBTOOL_CONFIG_VARS # ----------------------- # Produce commented declarations of non-tagged libtool config variables -# suitable for insertion in the LIBTOOL CONFIG section of the `libtool' +# suitable for insertion in the LIBTOOL CONFIG section of the 'libtool' # script. Tagged libtool config variables (even for the LIBTOOL CONFIG # section) are produced by _LT_LIBTOOL_TAG_VARS. m4_defun([_LT_LIBTOOL_CONFIG_VARS], @@ -500,8 +510,8 @@ # Send accumulated output to $CONFIG_STATUS. Thanks to the lists of # variables for single and double quote escaping we saved from calls # to _LT_DECL, we can put quote escaped variables declarations -# into `config.status', and then the shell code to quote escape them in -# for loops in `config.status'. Finally, any additional code accumulated +# into 'config.status', and then the shell code to quote escape them in +# for loops in 'config.status'. Finally, any additional code accumulated # from calls to _LT_CONFIG_LIBTOOL_INIT is expanded. m4_defun([_LT_CONFIG_COMMANDS], [AC_PROVIDE_IFELSE([LT_OUTPUT], @@ -547,7 +557,7 @@ ]], lt_decl_quote_varnames); do case \`eval \\\\\$ECHO \\\\""\\\\\$\$var"\\\\"\` in *[[\\\\\\\`\\"\\\$]]*) - eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"\\\$\$var\\" | \\\$SED \\"\\\$sed_quote_subst\\"\\\`\\\\\\"" + eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"\\\$\$var\\" | \\\$SED \\"\\\$sed_quote_subst\\"\\\`\\\\\\"" ## exclude from sc_prohibit_nested_quotes ;; *) eval "lt_\$var=\\\\\\"\\\$\$var\\\\\\"" @@ -560,7 +570,7 @@ ]], lt_decl_dquote_varnames); do case \`eval \\\\\$ECHO \\\\""\\\\\$\$var"\\\\"\` in *[[\\\\\\\`\\"\\\$]]*) - eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"\\\$\$var\\" | \\\$SED -e \\"\\\$double_quote_subst\\" -e \\"\\\$sed_quote_subst\\" -e \\"\\\$delay_variable_subst\\"\\\`\\\\\\"" + eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"\\\$\$var\\" | \\\$SED -e \\"\\\$double_quote_subst\\" -e \\"\\\$sed_quote_subst\\" -e \\"\\\$delay_variable_subst\\"\\\`\\\\\\"" ## exclude from sc_prohibit_nested_quotes ;; *) eval "lt_\$var=\\\\\\"\\\$\$var\\\\\\"" @@ -576,7 +586,7 @@ # Generate a child script FILE with all initialization necessary to # reuse the environment learned by the parent script, and make the # file executable. If COMMENT is supplied, it is inserted after the -# `#!' sequence but before initialization text begins. After this +# '#!' sequence but before initialization text begins. After this # macro, additional text can be appended to FILE to form the body of # the child script. The macro ends with non-zero status if the # file could not be fully written (such as if the disk is full). @@ -598,7 +608,7 @@ _AS_PREPARE exec AS_MESSAGE_FD>&1 _ASEOF -test $lt_write_fail = 0 && chmod +x $1[]dnl +test 0 = "$lt_write_fail" && chmod +x $1[]dnl m4_popdef([AS_MESSAGE_LOG_FD])])])# _LT_GENERATED_FILE_INIT # LT_OUTPUT @@ -621,7 +631,7 @@ } >&AS_MESSAGE_LOG_FD lt_cl_help="\ -\`$as_me' creates a local libtool stub from the current configuration, +'$as_me' creates a local libtool stub from the current configuration, for use in further configure time tests before the real libtool is generated. @@ -643,7 +653,7 @@ This config.lt script is free software; the Free Software Foundation gives unlimited permision to copy, distribute and modify it." -while test $[#] != 0 +while test 0 != $[#] do case $[1] in --version | --v* | -V ) @@ -656,10 +666,10 @@ lt_cl_silent=: ;; -*) AC_MSG_ERROR([unrecognized option: $[1] -Try \`$[0] --help' for more information.]) ;; +Try '$[0] --help' for more information.]) ;; *) AC_MSG_ERROR([unrecognized argument: $[1] -Try \`$[0] --help' for more information.]) ;; +Try '$[0] --help' for more information.]) ;; esac shift done @@ -685,7 +695,7 @@ # open by configure. Here we exec the FD to /dev/null, effectively closing # config.log, so it can be properly (re)opened and appended to by config.lt. lt_cl_success=: -test "$silent" = yes && +test yes = "$silent" && lt_config_lt_args="$lt_config_lt_args --quiet" exec AS_MESSAGE_LOG_FD>/dev/null $SHELL "$CONFIG_LT" $lt_config_lt_args || lt_cl_success=false @@ -705,27 +715,30 @@ _LT_CONFIG_SAVE_COMMANDS([ m4_define([_LT_TAG], m4_if([$1], [], [C], [$1]))dnl m4_if(_LT_TAG, [C], [ - # See if we are running on zsh, and set the options which allow our + # See if we are running on zsh, and set the options that allow our # commands through without removal of \ escapes. - if test -n "${ZSH_VERSION+set}" ; then + if test -n "${ZSH_VERSION+set}"; then setopt NO_GLOB_SUBST fi - cfgfile="${ofile}T" + cfgfile=${ofile}T trap "$RM \"$cfgfile\"; exit 1" 1 2 15 $RM "$cfgfile" cat <<_LT_EOF >> "$cfgfile" #! $SHELL - -# `$ECHO "$ofile" | sed 's%^.*/%%'` - Provide generalized library-building support services. -# Generated automatically by $as_me ($PACKAGE$TIMESTAMP) $VERSION -# Libtool was configured on host `(hostname || uname -n) 2>/dev/null | sed 1q`: +# Generated automatically by $as_me ($PACKAGE) $VERSION # NOTE: Changes made to this file will be lost: look at ltmain.sh. -# + +# Provide generalized library-building support services. +# Written by Gordon Matzigkeit, 1996 + _LT_COPYING _LT_LIBTOOL_TAGS +# Configured defaults for sys_lib_dlsearch_path munging. +: \${LT_SYS_LIBRARY_PATH="$configure_time_lt_sys_library_path"} + # ### BEGIN LIBTOOL CONFIG _LT_LIBTOOL_CONFIG_VARS _LT_LIBTOOL_TAG_VARS @@ -733,13 +746,24 @@ _LT_EOF + cat <<'_LT_EOF' >> "$cfgfile" + +# ### BEGIN FUNCTIONS SHARED WITH CONFIGURE + +_LT_PREPARE_MUNGE_PATH_LIST +_LT_PREPARE_CC_BASENAME + +# ### END FUNCTIONS SHARED WITH CONFIGURE + +_LT_EOF + case $host_os in aix3*) cat <<\_LT_EOF >> "$cfgfile" # AIX sometimes has problems with the GCC collect2 program. For some # reason, if we set the COLLECT_NAMES environment variable, the problems # vanish in a puff of smoke. -if test "X${COLLECT_NAMES+set}" != Xset; then +if test set != "${COLLECT_NAMES+set}"; then COLLECT_NAMES= export COLLECT_NAMES fi @@ -756,8 +780,6 @@ sed '$q' "$ltmain" >> "$cfgfile" \ || (rm -f "$cfgfile"; exit 1) - _LT_PROG_REPLACE_SHELLFNS - mv -f "$cfgfile" "$ofile" || (rm -f "$ofile" && cp "$cfgfile" "$ofile" && rm -f "$cfgfile") chmod +x "$ofile" @@ -775,7 +797,6 @@ [m4_if([$1], [], [ PACKAGE='$PACKAGE' VERSION='$VERSION' - TIMESTAMP='$TIMESTAMP' RM='$RM' ofile='$ofile'], []) ])dnl /_LT_CONFIG_SAVE_COMMANDS @@ -974,7 +995,7 @@ AC_CACHE_CHECK([for -single_module linker flag],[lt_cv_apple_cc_single_mod], [lt_cv_apple_cc_single_mod=no - if test -z "${LT_MULTI_MODULE}"; then + if test -z "$LT_MULTI_MODULE"; then # By default we will add the -single_module flag. You can override # by either setting the environment variable LT_MULTI_MODULE # non-empty at configure time, or by adding -multi_module to the @@ -992,7 +1013,7 @@ cat conftest.err >&AS_MESSAGE_LOG_FD # Otherwise, if the output was created with a 0 exit code from # the compiler, it worked. - elif test -f libconftest.dylib && test $_lt_result -eq 0; then + elif test -f libconftest.dylib && test 0 = "$_lt_result"; then lt_cv_apple_cc_single_mod=yes else cat conftest.err >&AS_MESSAGE_LOG_FD @@ -1010,7 +1031,7 @@ AC_LINK_IFELSE([AC_LANG_PROGRAM([],[])], [lt_cv_ld_exported_symbols_list=yes], [lt_cv_ld_exported_symbols_list=no]) - LDFLAGS="$save_LDFLAGS" + LDFLAGS=$save_LDFLAGS ]) AC_CACHE_CHECK([for -force_load linker flag],[lt_cv_ld_force_load], @@ -1032,7 +1053,7 @@ _lt_result=$? if test -s conftest.err && $GREP force_load conftest.err; then cat conftest.err >&AS_MESSAGE_LOG_FD - elif test -f conftest && test $_lt_result -eq 0 && $GREP forced_load conftest >/dev/null 2>&1 ; then + elif test -f conftest && test 0 = "$_lt_result" && $GREP forced_load conftest >/dev/null 2>&1; then lt_cv_ld_force_load=yes else cat conftest.err >&AS_MESSAGE_LOG_FD @@ -1042,32 +1063,32 @@ ]) case $host_os in rhapsody* | darwin1.[[012]]) - _lt_dar_allow_undefined='${wl}-undefined ${wl}suppress' ;; + _lt_dar_allow_undefined='$wl-undefined ${wl}suppress' ;; darwin1.*) - _lt_dar_allow_undefined='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' ;; + _lt_dar_allow_undefined='$wl-flat_namespace $wl-undefined ${wl}suppress' ;; darwin*) # darwin 5.x on # if running on 10.5 or later, the deployment target defaults # to the OS version, if on x86, and 10.4, the deployment # target defaults to 10.4. Don't you love it? case ${MACOSX_DEPLOYMENT_TARGET-10.0},$host in 10.0,*86*-darwin8*|10.0,*-darwin[[91]]*) - _lt_dar_allow_undefined='${wl}-undefined ${wl}dynamic_lookup' ;; - 10.[[012]]*) - _lt_dar_allow_undefined='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' ;; + _lt_dar_allow_undefined='$wl-undefined ${wl}dynamic_lookup' ;; + 10.[[012]][[,.]]*) + _lt_dar_allow_undefined='$wl-flat_namespace $wl-undefined ${wl}suppress' ;; 10.*) - _lt_dar_allow_undefined='${wl}-undefined ${wl}dynamic_lookup' ;; + _lt_dar_allow_undefined='$wl-undefined ${wl}dynamic_lookup' ;; esac ;; esac - if test "$lt_cv_apple_cc_single_mod" = "yes"; then + if test yes = "$lt_cv_apple_cc_single_mod"; then _lt_dar_single_mod='$single_module' fi - if test "$lt_cv_ld_exported_symbols_list" = "yes"; then - _lt_dar_export_syms=' ${wl}-exported_symbols_list,$output_objdir/${libname}-symbols.expsym' + if test yes = "$lt_cv_ld_exported_symbols_list"; then + _lt_dar_export_syms=' $wl-exported_symbols_list,$output_objdir/$libname-symbols.expsym' else - _lt_dar_export_syms='~$NMEDIT -s $output_objdir/${libname}-symbols.expsym ${lib}' + _lt_dar_export_syms='~$NMEDIT -s $output_objdir/$libname-symbols.expsym $lib' fi - if test "$DSYMUTIL" != ":" && test "$lt_cv_ld_force_load" = "no"; then + if test : != "$DSYMUTIL" && test no = "$lt_cv_ld_force_load"; then _lt_dsymutil='~$DSYMUTIL $lib || :' else _lt_dsymutil= @@ -1087,29 +1108,29 @@ _LT_TAGVAR(hardcode_direct, $1)=no _LT_TAGVAR(hardcode_automatic, $1)=yes _LT_TAGVAR(hardcode_shlibpath_var, $1)=unsupported - if test "$lt_cv_ld_force_load" = "yes"; then - _LT_TAGVAR(whole_archive_flag_spec, $1)='`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience ${wl}-force_load,$conv\"; done; func_echo_all \"$new_convenience\"`' + if test yes = "$lt_cv_ld_force_load"; then + _LT_TAGVAR(whole_archive_flag_spec, $1)='`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience $wl-force_load,$conv\"; done; func_echo_all \"$new_convenience\"`' m4_case([$1], [F77], [_LT_TAGVAR(compiler_needs_object, $1)=yes], [FC], [_LT_TAGVAR(compiler_needs_object, $1)=yes]) else _LT_TAGVAR(whole_archive_flag_spec, $1)='' fi _LT_TAGVAR(link_all_deplibs, $1)=yes - _LT_TAGVAR(allow_undefined_flag, $1)="$_lt_dar_allow_undefined" + _LT_TAGVAR(allow_undefined_flag, $1)=$_lt_dar_allow_undefined case $cc_basename in - ifort*) _lt_dar_can_shared=yes ;; + ifort*|nagfor*) _lt_dar_can_shared=yes ;; *) _lt_dar_can_shared=$GCC ;; esac - if test "$_lt_dar_can_shared" = "yes"; then + if test yes = "$_lt_dar_can_shared"; then output_verbose_link_cmd=func_echo_all - _LT_TAGVAR(archive_cmds, $1)="\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring $_lt_dar_single_mod${_lt_dsymutil}" - _LT_TAGVAR(module_cmds, $1)="\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dsymutil}" - _LT_TAGVAR(archive_expsym_cmds, $1)="sed 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring ${_lt_dar_single_mod}${_lt_dar_export_syms}${_lt_dsymutil}" - _LT_TAGVAR(module_expsym_cmds, $1)="sed -e 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dar_export_syms}${_lt_dsymutil}" + _LT_TAGVAR(archive_cmds, $1)="\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring $_lt_dar_single_mod$_lt_dsymutil" + _LT_TAGVAR(module_cmds, $1)="\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags$_lt_dsymutil" + _LT_TAGVAR(archive_expsym_cmds, $1)="sed 's|^|_|' < \$export_symbols > \$output_objdir/\$libname-symbols.expsym~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring $_lt_dar_single_mod$_lt_dar_export_syms$_lt_dsymutil" + _LT_TAGVAR(module_expsym_cmds, $1)="sed -e 's|^|_|' < \$export_symbols > \$output_objdir/\$libname-symbols.expsym~\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags$_lt_dar_export_syms$_lt_dsymutil" m4_if([$1], [CXX], -[ if test "$lt_cv_apple_cc_single_mod" != "yes"; then - _LT_TAGVAR(archive_cmds, $1)="\$CC -r -keep_private_externs -nostdlib -o \${lib}-master.o \$libobjs~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \${lib}-master.o \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring${_lt_dsymutil}" - _LT_TAGVAR(archive_expsym_cmds, $1)="sed 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC -r -keep_private_externs -nostdlib -o \${lib}-master.o \$libobjs~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \${lib}-master.o \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring${_lt_dar_export_syms}${_lt_dsymutil}" +[ if test yes != "$lt_cv_apple_cc_single_mod"; then + _LT_TAGVAR(archive_cmds, $1)="\$CC -r -keep_private_externs -nostdlib -o \$lib-master.o \$libobjs~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$lib-master.o \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring$_lt_dsymutil" + _LT_TAGVAR(archive_expsym_cmds, $1)="sed 's|^|_|' < \$export_symbols > \$output_objdir/\$libname-symbols.expsym~\$CC -r -keep_private_externs -nostdlib -o \$lib-master.o \$libobjs~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$lib-master.o \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring$_lt_dar_export_syms$_lt_dsymutil" fi ],[]) else @@ -1129,7 +1150,7 @@ # Allow to override them for all tags through lt_cv_aix_libpath. m4_defun([_LT_SYS_MODULE_PATH_AIX], [m4_require([_LT_DECL_SED])dnl -if test "${lt_cv_aix_libpath+set}" = set; then +if test set = "${lt_cv_aix_libpath+set}"; then aix_libpath=$lt_cv_aix_libpath else AC_CACHE_VAL([_LT_TAGVAR([lt_cv_aix_libpath_], [$1])], @@ -1147,7 +1168,7 @@ _LT_TAGVAR([lt_cv_aix_libpath_], [$1])=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` fi],[]) if test -z "$_LT_TAGVAR([lt_cv_aix_libpath_], [$1])"; then - _LT_TAGVAR([lt_cv_aix_libpath_], [$1])="/usr/lib:/lib" + _LT_TAGVAR([lt_cv_aix_libpath_], [$1])=/usr/lib:/lib fi ]) aix_libpath=$_LT_TAGVAR([lt_cv_aix_libpath_], [$1]) @@ -1167,8 +1188,8 @@ # ----------------------- # Find how we can fake an echo command that does not interpret backslash. # In particular, with Autoconf 2.60 or later we add some code to the start -# of the generated configure script which will find a shell with a builtin -# printf (which we can use as an echo command). +# of the generated configure script that will find a shell with a builtin +# printf (that we can use as an echo command). m4_defun([_LT_PROG_ECHO_BACKSLASH], [ECHO='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO @@ -1196,10 +1217,10 @@ # Invoke $ECHO with all args, space-separated. func_echo_all () { - $ECHO "$*" + $ECHO "$*" } -case "$ECHO" in +case $ECHO in printf*) AC_MSG_RESULT([printf]) ;; print*) AC_MSG_RESULT([print -r]) ;; *) AC_MSG_RESULT([cat]) ;; @@ -1225,16 +1246,17 @@ AC_DEFUN([_LT_WITH_SYSROOT], [AC_MSG_CHECKING([for sysroot]) AC_ARG_WITH([sysroot], -[ --with-sysroot[=DIR] Search for dependent libraries within DIR - (or the compiler's sysroot if not specified).], +[AS_HELP_STRING([--with-sysroot@<:@=DIR@:>@], + [Search for dependent libraries within DIR (or the compiler's sysroot + if not specified).])], [], [with_sysroot=no]) dnl lt_sysroot will always be passed unquoted. We quote it here dnl in case the user passed a directory name. lt_sysroot= -case ${with_sysroot} in #( +case $with_sysroot in #( yes) - if test "$GCC" = yes; then + if test yes = "$GCC"; then lt_sysroot=`$CC --print-sysroot 2>/dev/null` fi ;; #( @@ -1244,14 +1266,14 @@ no|'') ;; #( *) - AC_MSG_RESULT([${with_sysroot}]) + AC_MSG_RESULT([$with_sysroot]) AC_MSG_ERROR([The sysroot must be an absolute path.]) ;; esac AC_MSG_RESULT([${lt_sysroot:-no}]) _LT_DECL([], [lt_sysroot], [0], [The root where to search for ]dnl -[dependent libraries, and in which our libraries should be installed.])]) +[dependent libraries, and where our libraries should be installed.])]) # _LT_ENABLE_LOCK # --------------- @@ -1259,31 +1281,33 @@ [AC_ARG_ENABLE([libtool-lock], [AS_HELP_STRING([--disable-libtool-lock], [avoid locking (might break parallel builds)])]) -test "x$enable_libtool_lock" != xno && enable_libtool_lock=yes +test no = "$enable_libtool_lock" || enable_libtool_lock=yes # Some flags need to be propagated to the compiler or linker for good # libtool support. case $host in ia64-*-hpux*) - # Find out which ABI we are using. + # Find out what ABI is being produced by ac_compile, and set mode + # options accordingly. echo 'int i;' > conftest.$ac_ext if AC_TRY_EVAL(ac_compile); then case `/usr/bin/file conftest.$ac_objext` in *ELF-32*) - HPUX_IA64_MODE="32" + HPUX_IA64_MODE=32 ;; *ELF-64*) - HPUX_IA64_MODE="64" + HPUX_IA64_MODE=64 ;; esac fi rm -rf conftest* ;; *-*-irix6*) - # Find out which ABI we are using. + # Find out what ABI is being produced by ac_compile, and set linker + # options accordingly. echo '[#]line '$LINENO' "configure"' > conftest.$ac_ext if AC_TRY_EVAL(ac_compile); then - if test "$lt_cv_prog_gnu_ld" = yes; then + if test yes = "$lt_cv_prog_gnu_ld"; then case `/usr/bin/file conftest.$ac_objext` in *32-bit*) LD="${LD-ld} -melf32bsmip" @@ -1312,9 +1336,46 @@ rm -rf conftest* ;; +mips64*-*linux*) + # Find out what ABI is being produced by ac_compile, and set linker + # options accordingly. + echo '[#]line '$LINENO' "configure"' > conftest.$ac_ext + if AC_TRY_EVAL(ac_compile); then + emul=elf + case `/usr/bin/file conftest.$ac_objext` in + *32-bit*) + emul="${emul}32" + ;; + *64-bit*) + emul="${emul}64" + ;; + esac + case `/usr/bin/file conftest.$ac_objext` in + *MSB*) + emul="${emul}btsmip" + ;; + *LSB*) + emul="${emul}ltsmip" + ;; + esac + case `/usr/bin/file conftest.$ac_objext` in + *N32*) + emul="${emul}n32" + ;; + esac + LD="${LD-ld} -m $emul" + fi + rm -rf conftest* + ;; + x86_64-*kfreebsd*-gnu|x86_64-*linux*|powerpc*-*linux*| \ s390*-*linux*|s390*-*tpf*|sparc*-*linux*) - # Find out which ABI we are using. + # Find out what ABI is being produced by ac_compile, and set linker + # options accordingly. Note that the listed cases only cover the + # situations where additional linker options are needed (such as when + # doing 32-bit compilation for a host where ld defaults to 64-bit, or + # vice versa); the common cases where no linker options are needed do + # not appear in the list. echo 'int i;' > conftest.$ac_ext if AC_TRY_EVAL(ac_compile); then case `/usr/bin/file conftest.o` in @@ -1333,10 +1394,10 @@ ;; esac ;; - powerpc64le-*) + powerpc64le-*linux*) LD="${LD-ld} -m elf32lppclinux" ;; - powerpc64-*) + powerpc64-*linux*) LD="${LD-ld} -m elf32ppclinux" ;; s390x-*linux*) @@ -1355,10 +1416,10 @@ x86_64-*linux*) LD="${LD-ld} -m elf_x86_64" ;; - powerpcle-*) + powerpcle-*linux*) LD="${LD-ld} -m elf64lppc" ;; - powerpc-*) + powerpc-*linux*) LD="${LD-ld} -m elf64ppc" ;; s390*-*linux*|s390*-*tpf*) @@ -1376,19 +1437,20 @@ *-*-sco3.2v5*) # On SCO OpenServer 5, we need -belf to get full-featured binaries. - SAVE_CFLAGS="$CFLAGS" + SAVE_CFLAGS=$CFLAGS CFLAGS="$CFLAGS -belf" AC_CACHE_CHECK([whether the C compiler needs -belf], lt_cv_cc_needs_belf, [AC_LANG_PUSH(C) AC_LINK_IFELSE([AC_LANG_PROGRAM([[]],[[]])],[lt_cv_cc_needs_belf=yes],[lt_cv_cc_needs_belf=no]) AC_LANG_POP]) - if test x"$lt_cv_cc_needs_belf" != x"yes"; then + if test yes != "$lt_cv_cc_needs_belf"; then # this is probably gcc 2.8.0, egcs 1.0 or newer; no need for -belf - CFLAGS="$SAVE_CFLAGS" + CFLAGS=$SAVE_CFLAGS fi ;; *-*solaris*) - # Find out which ABI we are using. + # Find out what ABI is being produced by ac_compile, and set linker + # options accordingly. echo 'int i;' > conftest.$ac_ext if AC_TRY_EVAL(ac_compile); then case `/usr/bin/file conftest.o` in @@ -1396,7 +1458,7 @@ case $lt_cv_prog_gnu_ld in yes*) case $host in - i?86-*-solaris*) + i?86-*-solaris*|x86_64-*-solaris*) LD="${LD-ld} -m elf_x86_64" ;; sparc*-*-solaris*) @@ -1405,7 +1467,7 @@ esac # GNU ld 2.21 introduced _sol2 emulations. Use them if available. if ${LD-ld} -V | grep _sol2 >/dev/null 2>&1; then - LD="${LD-ld}_sol2" + LD=${LD-ld}_sol2 fi ;; *) @@ -1421,7 +1483,7 @@ ;; esac -need_locks="$enable_libtool_lock" +need_locks=$enable_libtool_lock ])# _LT_ENABLE_LOCK @@ -1440,11 +1502,11 @@ [echo conftest.$ac_objext > conftest.lst lt_ar_try='$AR $AR_FLAGS libconftest.a @conftest.lst >&AS_MESSAGE_LOG_FD' AC_TRY_EVAL([lt_ar_try]) - if test "$ac_status" -eq 0; then + if test 0 -eq "$ac_status"; then # Ensure the archiver fails upon bogus file names. rm -f conftest.$ac_objext libconftest.a AC_TRY_EVAL([lt_ar_try]) - if test "$ac_status" -ne 0; then + if test 0 -ne "$ac_status"; then lt_cv_ar_at_file=@ fi fi @@ -1452,7 +1514,7 @@ ]) ]) -if test "x$lt_cv_ar_at_file" = xno; then +if test no = "$lt_cv_ar_at_file"; then archiver_list_spec= else archiver_list_spec=$lt_cv_ar_at_file @@ -1483,7 +1545,7 @@ if test -n "$RANLIB"; then case $host_os in - openbsd*) + bitrig* | openbsd*) old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB -t \$tool_oldlib" ;; *) @@ -1519,7 +1581,7 @@ [$2=no m4_if([$4], , [ac_outfile=conftest.$ac_objext], [ac_outfile=$4]) echo "$lt_simple_compile_test_code" > conftest.$ac_ext - lt_compiler_flag="$3" + lt_compiler_flag="$3" ## exclude from sc_useless_quotes_in_assignment # Insert the option either (1) after the last *FLAGS variable, or # (2) before a word containing "conftest.", or (3) at the end. # Note that $ac_compile itself does not contain backslashes and begins @@ -1546,7 +1608,7 @@ $RM conftest* ]) -if test x"[$]$2" = xyes; then +if test yes = "[$]$2"; then m4_if([$5], , :, [$5]) else m4_if([$6], , :, [$6]) @@ -1568,7 +1630,7 @@ m4_require([_LT_DECL_SED])dnl AC_CACHE_CHECK([$1], [$2], [$2=no - save_LDFLAGS="$LDFLAGS" + save_LDFLAGS=$LDFLAGS LDFLAGS="$LDFLAGS $3" echo "$lt_simple_link_test_code" > conftest.$ac_ext if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then @@ -1587,10 +1649,10 @@ fi fi $RM -r conftest* - LDFLAGS="$save_LDFLAGS" + LDFLAGS=$save_LDFLAGS ]) -if test x"[$]$2" = xyes; then +if test yes = "[$]$2"; then m4_if([$4], , :, [$4]) else m4_if([$5], , :, [$5]) @@ -1611,7 +1673,7 @@ AC_MSG_CHECKING([the maximum length of command line arguments]) AC_CACHE_VAL([lt_cv_sys_max_cmd_len], [dnl i=0 - teststring="ABCD" + teststring=ABCD case $build_os in msdosdjgpp*) @@ -1651,7 +1713,7 @@ lt_cv_sys_max_cmd_len=8192; ;; - netbsd* | freebsd* | openbsd* | darwin* | dragonfly*) + bitrig* | darwin* | dragonfly* | freebsd* | netbsd* | openbsd*) # This has been around since 386BSD, at least. Likely further. if test -x /sbin/sysctl; then lt_cv_sys_max_cmd_len=`/sbin/sysctl -n kern.argmax` @@ -1702,22 +1764,22 @@ *) lt_cv_sys_max_cmd_len=`(getconf ARG_MAX) 2> /dev/null` if test -n "$lt_cv_sys_max_cmd_len" && \ - test undefined != "$lt_cv_sys_max_cmd_len"; then + test undefined != "$lt_cv_sys_max_cmd_len"; then lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4` lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3` else # Make teststring a little bigger before we do anything with it. # a 1K string should be a reasonable start. - for i in 1 2 3 4 5 6 7 8 ; do + for i in 1 2 3 4 5 6 7 8; do teststring=$teststring$teststring done SHELL=${SHELL-${CONFIG_SHELL-/bin/sh}} # If test is not a shell built-in, we'll probably end up computing a # maximum length that is only half of the actual maximum length, but # we can't tell. - while { test "X"`env echo "$teststring$teststring" 2>/dev/null` \ + while { test X`env echo "$teststring$teststring" 2>/dev/null` \ = "X$teststring$teststring"; } >/dev/null 2>&1 && - test $i != 17 # 1/2 MB should be enough + test 17 != "$i" # 1/2 MB should be enough do i=`expr $i + 1` teststring=$teststring$teststring @@ -1733,7 +1795,7 @@ ;; esac ]) -if test -n $lt_cv_sys_max_cmd_len ; then +if test -n "$lt_cv_sys_max_cmd_len"; then AC_MSG_RESULT($lt_cv_sys_max_cmd_len) else AC_MSG_RESULT(none) @@ -1761,7 +1823,7 @@ # ---------------------------------------------------------------- m4_defun([_LT_TRY_DLOPEN_SELF], [m4_require([_LT_HEADER_DLFCN])dnl -if test "$cross_compiling" = yes; then : +if test yes = "$cross_compiling"; then : [$4] else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 @@ -1808,9 +1870,9 @@ # endif #endif -/* When -fvisbility=hidden is used, assume the code has been annotated +/* When -fvisibility=hidden is used, assume the code has been annotated correspondingly for the symbols needed. */ -#if defined(__GNUC__) && (((__GNUC__ == 3) && (__GNUC_MINOR__ >= 3)) || (__GNUC__ > 3)) +#if defined __GNUC__ && (((__GNUC__ == 3) && (__GNUC_MINOR__ >= 3)) || (__GNUC__ > 3)) int fnord () __attribute__((visibility("default"))); #endif @@ -1836,7 +1898,7 @@ return status; }] _LT_EOF - if AC_TRY_EVAL(ac_link) && test -s conftest${ac_exeext} 2>/dev/null; then + if AC_TRY_EVAL(ac_link) && test -s "conftest$ac_exeext" 2>/dev/null; then (./conftest; exit; ) >&AS_MESSAGE_LOG_FD 2>/dev/null lt_status=$? case x$lt_status in @@ -1857,7 +1919,7 @@ # ------------------ AC_DEFUN([LT_SYS_DLOPEN_SELF], [m4_require([_LT_HEADER_DLFCN])dnl -if test "x$enable_dlopen" != xyes; then +if test yes != "$enable_dlopen"; then enable_dlopen=unknown enable_dlopen_self=unknown enable_dlopen_self_static=unknown @@ -1867,44 +1929,52 @@ case $host_os in beos*) - lt_cv_dlopen="load_add_on" + lt_cv_dlopen=load_add_on lt_cv_dlopen_libs= lt_cv_dlopen_self=yes ;; mingw* | pw32* | cegcc*) - lt_cv_dlopen="LoadLibrary" + lt_cv_dlopen=LoadLibrary lt_cv_dlopen_libs= ;; cygwin*) - lt_cv_dlopen="dlopen" + lt_cv_dlopen=dlopen lt_cv_dlopen_libs= ;; darwin*) - # if libdl is installed we need to link against it + # if libdl is installed we need to link against it AC_CHECK_LIB([dl], [dlopen], - [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl"],[ - lt_cv_dlopen="dyld" + [lt_cv_dlopen=dlopen lt_cv_dlopen_libs=-ldl],[ + lt_cv_dlopen=dyld lt_cv_dlopen_libs= lt_cv_dlopen_self=yes ]) ;; + tpf*) + # Don't try to run any link tests for TPF. We know it's impossible + # because TPF is a cross-compiler, and we know how we open DSOs. + lt_cv_dlopen=dlopen + lt_cv_dlopen_libs= + lt_cv_dlopen_self=no + ;; + *) AC_CHECK_FUNC([shl_load], - [lt_cv_dlopen="shl_load"], + [lt_cv_dlopen=shl_load], [AC_CHECK_LIB([dld], [shl_load], - [lt_cv_dlopen="shl_load" lt_cv_dlopen_libs="-ldld"], + [lt_cv_dlopen=shl_load lt_cv_dlopen_libs=-ldld], [AC_CHECK_FUNC([dlopen], - [lt_cv_dlopen="dlopen"], + [lt_cv_dlopen=dlopen], [AC_CHECK_LIB([dl], [dlopen], - [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl"], + [lt_cv_dlopen=dlopen lt_cv_dlopen_libs=-ldl], [AC_CHECK_LIB([svld], [dlopen], - [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-lsvld"], + [lt_cv_dlopen=dlopen lt_cv_dlopen_libs=-lsvld], [AC_CHECK_LIB([dld], [dld_link], - [lt_cv_dlopen="dld_link" lt_cv_dlopen_libs="-ldld"]) + [lt_cv_dlopen=dld_link lt_cv_dlopen_libs=-ldld]) ]) ]) ]) @@ -1913,21 +1983,21 @@ ;; esac - if test "x$lt_cv_dlopen" != xno; then - enable_dlopen=yes - else + if test no = "$lt_cv_dlopen"; then enable_dlopen=no + else + enable_dlopen=yes fi case $lt_cv_dlopen in dlopen) - save_CPPFLAGS="$CPPFLAGS" - test "x$ac_cv_header_dlfcn_h" = xyes && CPPFLAGS="$CPPFLAGS -DHAVE_DLFCN_H" + save_CPPFLAGS=$CPPFLAGS + test yes = "$ac_cv_header_dlfcn_h" && CPPFLAGS="$CPPFLAGS -DHAVE_DLFCN_H" - save_LDFLAGS="$LDFLAGS" + save_LDFLAGS=$LDFLAGS wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $export_dynamic_flag_spec\" - save_LIBS="$LIBS" + save_LIBS=$LIBS LIBS="$lt_cv_dlopen_libs $LIBS" AC_CACHE_CHECK([whether a program can dlopen itself], @@ -1937,7 +2007,7 @@ lt_cv_dlopen_self=no, lt_cv_dlopen_self=cross) ]) - if test "x$lt_cv_dlopen_self" = xyes; then + if test yes = "$lt_cv_dlopen_self"; then wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $lt_prog_compiler_static\" AC_CACHE_CHECK([whether a statically linked program can dlopen itself], lt_cv_dlopen_self_static, [dnl @@ -1947,9 +2017,9 @@ ]) fi - CPPFLAGS="$save_CPPFLAGS" - LDFLAGS="$save_LDFLAGS" - LIBS="$save_LIBS" + CPPFLAGS=$save_CPPFLAGS + LDFLAGS=$save_LDFLAGS + LIBS=$save_LIBS ;; esac @@ -2041,8 +2111,8 @@ m4_require([_LT_FILEUTILS_DEFAULTS])dnl _LT_COMPILER_C_O([$1]) -hard_links="nottested" -if test "$_LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)" = no && test "$need_locks" != no; then +hard_links=nottested +if test no = "$_LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)" && test no != "$need_locks"; then # do not overwrite the value of need_locks provided by the user AC_MSG_CHECKING([if we can lock with hard links]) hard_links=yes @@ -2052,8 +2122,8 @@ ln conftest.a conftest.b 2>&5 || hard_links=no ln conftest.a conftest.b 2>/dev/null && hard_links=no AC_MSG_RESULT([$hard_links]) - if test "$hard_links" = no; then - AC_MSG_WARN([`$CC' does not support `-c -o', so `make -j' may be unsafe]) + if test no = "$hard_links"; then + AC_MSG_WARN(['$CC' does not support '-c -o', so 'make -j' may be unsafe]) need_locks=warn fi else @@ -2080,8 +2150,8 @@ _LT_DECL([], [objdir], [0], [The name of the directory that contains temporary libtool files])dnl m4_pattern_allow([LT_OBJDIR])dnl -AC_DEFINE_UNQUOTED(LT_OBJDIR, "$lt_cv_objdir/", - [Define to the sub-directory in which libtool stores uninstalled libraries.]) +AC_DEFINE_UNQUOTED([LT_OBJDIR], "$lt_cv_objdir/", + [Define to the sub-directory where libtool stores uninstalled libraries.]) ])# _LT_CHECK_OBJDIR @@ -2093,15 +2163,15 @@ _LT_TAGVAR(hardcode_action, $1)= if test -n "$_LT_TAGVAR(hardcode_libdir_flag_spec, $1)" || test -n "$_LT_TAGVAR(runpath_var, $1)" || - test "X$_LT_TAGVAR(hardcode_automatic, $1)" = "Xyes" ; then + test yes = "$_LT_TAGVAR(hardcode_automatic, $1)"; then # We can hardcode non-existent directories. - if test "$_LT_TAGVAR(hardcode_direct, $1)" != no && + if test no != "$_LT_TAGVAR(hardcode_direct, $1)" && # If the only mechanism to avoid hardcoding is shlibpath_var, we # have to relink, otherwise we might link with an installed library # when we should be linking with a yet-to-be-installed one - ## test "$_LT_TAGVAR(hardcode_shlibpath_var, $1)" != no && - test "$_LT_TAGVAR(hardcode_minus_L, $1)" != no; then + ## test no != "$_LT_TAGVAR(hardcode_shlibpath_var, $1)" && + test no != "$_LT_TAGVAR(hardcode_minus_L, $1)"; then # Linking always hardcodes the temporary library directory. _LT_TAGVAR(hardcode_action, $1)=relink else @@ -2115,12 +2185,12 @@ fi AC_MSG_RESULT([$_LT_TAGVAR(hardcode_action, $1)]) -if test "$_LT_TAGVAR(hardcode_action, $1)" = relink || - test "$_LT_TAGVAR(inherit_rpath, $1)" = yes; then +if test relink = "$_LT_TAGVAR(hardcode_action, $1)" || + test yes = "$_LT_TAGVAR(inherit_rpath, $1)"; then # Fast installation is not supported enable_fast_install=no -elif test "$shlibpath_overrides_runpath" = yes || - test "$enable_shared" = no; then +elif test yes = "$shlibpath_overrides_runpath" || + test no = "$enable_shared"; then # Fast installation is not necessary enable_fast_install=needless fi @@ -2144,7 +2214,7 @@ # FIXME - insert some real tests, host_os isn't really good enough case $host_os in darwin*) - if test -n "$STRIP" ; then + if test -n "$STRIP"; then striplib="$STRIP -x" old_striplib="$STRIP -S" AC_MSG_RESULT([yes]) @@ -2162,6 +2232,47 @@ ])# _LT_CMD_STRIPLIB +# _LT_PREPARE_MUNGE_PATH_LIST +# --------------------------- +# Make sure func_munge_path_list() is defined correctly. +m4_defun([_LT_PREPARE_MUNGE_PATH_LIST], +[[# func_munge_path_list VARIABLE PATH +# ----------------------------------- +# VARIABLE is name of variable containing _space_ separated list of +# directories to be munged by the contents of PATH, which is string +# having a format: +# "DIR[:DIR]:" +# string "DIR[ DIR]" will be prepended to VARIABLE +# ":DIR[:DIR]" +# string "DIR[ DIR]" will be appended to VARIABLE +# "DIRP[:DIRP]::[DIRA:]DIRA" +# string "DIRP[ DIRP]" will be prepended to VARIABLE and string +# "DIRA[ DIRA]" will be appended to VARIABLE +# "DIR[:DIR]" +# VARIABLE will be replaced by "DIR[ DIR]" +func_munge_path_list () +{ + case x@S|@2 in + x) + ;; + *:) + eval @S|@1=\"`$ECHO @S|@2 | $SED 's/:/ /g'` \@S|@@S|@1\" + ;; + x:*) + eval @S|@1=\"\@S|@@S|@1 `$ECHO @S|@2 | $SED 's/:/ /g'`\" + ;; + *::*) + eval @S|@1=\"\@S|@@S|@1\ `$ECHO @S|@2 | $SED -e 's/.*:://' -e 's/:/ /g'`\" + eval @S|@1=\"`$ECHO @S|@2 | $SED -e 's/::.*//' -e 's/:/ /g'`\ \@S|@@S|@1\" + ;; + *) + eval @S|@1=\"`$ECHO @S|@2 | $SED 's/:/ /g'`\" + ;; + esac +} +]])# _LT_PREPARE_PATH_LIST + + # _LT_SYS_DYNAMIC_LINKER([TAG]) # ----------------------------- # PORTME Fill in your ld.so characteristics @@ -2172,17 +2283,18 @@ m4_require([_LT_DECL_OBJDUMP])dnl m4_require([_LT_DECL_SED])dnl m4_require([_LT_CHECK_SHELL_FEATURES])dnl +m4_require([_LT_PREPARE_MUNGE_PATH_LIST])dnl AC_MSG_CHECKING([dynamic linker characteristics]) m4_if([$1], [], [ -if test "$GCC" = yes; then +if test yes = "$GCC"; then case $host_os in - darwin*) lt_awk_arg="/^libraries:/,/LR/" ;; - *) lt_awk_arg="/^libraries:/" ;; + darwin*) lt_awk_arg='/^libraries:/,/LR/' ;; + *) lt_awk_arg='/^libraries:/' ;; esac case $host_os in - mingw* | cegcc*) lt_sed_strip_eq="s,=\([[A-Za-z]]:\),\1,g" ;; - *) lt_sed_strip_eq="s,=/,/,g" ;; + mingw* | cegcc*) lt_sed_strip_eq='s|=\([[A-Za-z]]:\)|\1|g' ;; + *) lt_sed_strip_eq='s|=/|/|g' ;; esac lt_search_path_spec=`$CC -print-search-dirs | awk $lt_awk_arg | $SED -e "s/^libraries://" -e $lt_sed_strip_eq` case $lt_search_path_spec in @@ -2198,28 +2310,35 @@ ;; esac # Ok, now we have the path, separated by spaces, we can step through it - # and add multilib dir if necessary. + # and add multilib dir if necessary... lt_tmp_lt_search_path_spec= - lt_multi_os_dir=`$CC $CPPFLAGS $CFLAGS $LDFLAGS -print-multi-os-directory 2>/dev/null` + lt_multi_os_dir=/`$CC $CPPFLAGS $CFLAGS $LDFLAGS -print-multi-os-directory 2>/dev/null` + # ...but if some path component already ends with the multilib dir we assume + # that all is fine and trust -print-search-dirs as is (GCC 4.2? or newer). + case "$lt_multi_os_dir; $lt_search_path_spec " in + "/; "* | "/.; "* | "/./; "* | *"$lt_multi_os_dir "* | *"$lt_multi_os_dir/ "*) + lt_multi_os_dir= + ;; + esac for lt_sys_path in $lt_search_path_spec; do - if test -d "$lt_sys_path/$lt_multi_os_dir"; then - lt_tmp_lt_search_path_spec="$lt_tmp_lt_search_path_spec $lt_sys_path/$lt_multi_os_dir" - else + if test -d "$lt_sys_path$lt_multi_os_dir"; then + lt_tmp_lt_search_path_spec="$lt_tmp_lt_search_path_spec $lt_sys_path$lt_multi_os_dir" + elif test -n "$lt_multi_os_dir"; then test -d "$lt_sys_path" && \ lt_tmp_lt_search_path_spec="$lt_tmp_lt_search_path_spec $lt_sys_path" fi done lt_search_path_spec=`$ECHO "$lt_tmp_lt_search_path_spec" | awk ' -BEGIN {RS=" "; FS="/|\n";} { - lt_foo=""; - lt_count=0; +BEGIN {RS = " "; FS = "/|\n";} { + lt_foo = ""; + lt_count = 0; for (lt_i = NF; lt_i > 0; lt_i--) { if ($lt_i != "" && $lt_i != ".") { if ($lt_i == "..") { lt_count++; } else { if (lt_count == 0) { - lt_foo="/" $lt_i lt_foo; + lt_foo = "/" $lt_i lt_foo; } else { lt_count--; } @@ -2233,7 +2352,7 @@ # for these hosts. case $host_os in mingw* | cegcc*) lt_search_path_spec=`$ECHO "$lt_search_path_spec" |\ - $SED 's,/\([[A-Za-z]]:\),\1,g'` ;; + $SED 's|/\([[A-Za-z]]:\)|\1|g'` ;; esac sys_lib_search_path_spec=`$ECHO "$lt_search_path_spec" | $lt_NL2SP` else @@ -2242,7 +2361,7 @@ library_names_spec= libname_spec='lib$name' soname_spec= -shrext_cmds=".so" +shrext_cmds=.so postinstall_cmds= postuninstall_cmds= finish_cmds= @@ -2259,14 +2378,17 @@ # flags to be left without arguments need_version=unknown +AC_ARG_VAR([LT_SYS_LIBRARY_PATH], +[User-defined run-time library search path.]) + case $host_os in aix3*) version_type=linux # correct to gnu/linux during the next big refactor - library_names_spec='${libname}${release}${shared_ext}$versuffix $libname.a' + library_names_spec='$libname$release$shared_ext$versuffix $libname.a' shlibpath_var=LIBPATH # AIX 3 has no versioning support, so we append a major version to the name. - soname_spec='${libname}${release}${shared_ext}$major' + soname_spec='$libname$release$shared_ext$major' ;; aix[[4-9]]*) @@ -2274,41 +2396,91 @@ need_lib_prefix=no need_version=no hardcode_into_libs=yes - if test "$host_cpu" = ia64; then + if test ia64 = "$host_cpu"; then # AIX 5 supports IA64 - library_names_spec='${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext}$versuffix $libname${shared_ext}' + library_names_spec='$libname$release$shared_ext$major $libname$release$shared_ext$versuffix $libname$shared_ext' shlibpath_var=LD_LIBRARY_PATH else # With GCC up to 2.95.x, collect2 would create an import file # for dependence libraries. The import file would start with - # the line `#! .'. This would cause the generated library to - # depend on `.', always an invalid library. This was fixed in + # the line '#! .'. This would cause the generated library to + # depend on '.', always an invalid library. This was fixed in # development snapshots of GCC prior to 3.0. case $host_os in aix4 | aix4.[[01]] | aix4.[[01]].*) if { echo '#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 97)' echo ' yes ' - echo '#endif'; } | ${CC} -E - | $GREP yes > /dev/null; then + echo '#endif'; } | $CC -E - | $GREP yes > /dev/null; then : else can_build_shared=no fi ;; esac - # AIX (on Power*) has no versioning support, so currently we can not hardcode correct + # Using Import Files as archive members, it is possible to support + # filename-based versioning of shared library archives on AIX. While + # this would work for both with and without runtime linking, it will + # prevent static linking of such archives. So we do filename-based + # shared library versioning with .so extension only, which is used + # when both runtime linking and shared linking is enabled. + # Unfortunately, runtime linking may impact performance, so we do + # not want this to be the default eventually. Also, we use the + # versioned .so libs for executables only if there is the -brtl + # linker flag in LDFLAGS as well, or --with-aix-soname=svr4 only. + # To allow for filename-based versioning support, we need to create + # libNAME.so.V as an archive file, containing: + # *) an Import File, referring to the versioned filename of the + # archive as well as the shared archive member, telling the + # bitwidth (32 or 64) of that shared object, and providing the + # list of exported symbols of that shared object, eventually + # decorated with the 'weak' keyword + # *) the shared object with the F_LOADONLY flag set, to really avoid + # it being seen by the linker. + # At run time we better use the real file rather than another symlink, + # but for link time we create the symlink libNAME.so -> libNAME.so.V + + case $with_aix_soname,$aix_use_runtimelinking in + # AIX (on Power*) has no versioning support, so currently we cannot hardcode correct # soname into executable. Probably we can add versioning support to # collect2, so additional links can be useful in future. - if test "$aix_use_runtimelinking" = yes; then + aix,yes) # traditional libtool + dynamic_linker='AIX unversionable lib.so' # If using run time linking (on AIX 4.2 or later) use lib.so # instead of lib.a to let people know that these are not # typical AIX shared libraries. - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - else + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + ;; + aix,no) # traditional AIX only + dynamic_linker='AIX lib.a[(]lib.so.V[)]' # We preserve .a as extension for shared libraries through AIX4.2 # and later when we are not doing run time linking. - library_names_spec='${libname}${release}.a $libname.a' - soname_spec='${libname}${release}${shared_ext}$major' - fi + library_names_spec='$libname$release.a $libname.a' + soname_spec='$libname$release$shared_ext$major' + ;; + svr4,*) # full svr4 only + dynamic_linker="AIX lib.so.V[(]$shared_archive_member_spec.o[)]" + library_names_spec='$libname$release$shared_ext$major $libname$shared_ext' + # We do not specify a path in Import Files, so LIBPATH fires. + shlibpath_overrides_runpath=yes + ;; + *,yes) # both, prefer svr4 + dynamic_linker="AIX lib.so.V[(]$shared_archive_member_spec.o[)], lib.a[(]lib.so.V[)]" + library_names_spec='$libname$release$shared_ext$major $libname$shared_ext' + # unpreferred sharedlib libNAME.a needs extra handling + postinstall_cmds='test -n "$linkname" || linkname="$realname"~func_stripname "" ".so" "$linkname"~$install_shared_prog "$dir/$func_stripname_result.$libext" "$destdir/$func_stripname_result.$libext"~test -z "$tstripme" || test -z "$striplib" || $striplib "$destdir/$func_stripname_result.$libext"' + postuninstall_cmds='for n in $library_names $old_library; do :; done~func_stripname "" ".so" "$n"~test "$func_stripname_result" = "$n" || func_append rmfiles " $odir/$func_stripname_result.$libext"' + # We do not specify a path in Import Files, so LIBPATH fires. + shlibpath_overrides_runpath=yes + ;; + *,no) # both, prefer aix + dynamic_linker="AIX lib.a[(]lib.so.V[)], lib.so.V[(]$shared_archive_member_spec.o[)]" + library_names_spec='$libname$release.a $libname.a' + soname_spec='$libname$release$shared_ext$major' + # unpreferred sharedlib libNAME.so.V and symlink libNAME.so need extra handling + postinstall_cmds='test -z "$dlname" || $install_shared_prog $dir/$dlname $destdir/$dlname~test -z "$tstripme" || test -z "$striplib" || $striplib $destdir/$dlname~test -n "$linkname" || linkname=$realname~func_stripname "" ".a" "$linkname"~(cd "$destdir" && $LN_S -f $dlname $func_stripname_result.so)' + postuninstall_cmds='test -z "$dlname" || func_append rmfiles " $odir/$dlname"~for n in $old_library $library_names; do :; done~func_stripname "" ".a" "$n"~func_append rmfiles " $odir/$func_stripname_result.so"' + ;; + esac shlibpath_var=LIBPATH fi ;; @@ -2318,18 +2490,18 @@ powerpc) # Since July 2007 AmigaOS4 officially supports .so libraries. # When compiling the executable, add -use-dynld -Lsobjs: to the compileline. - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' ;; m68k) library_names_spec='$libname.ixlibrary $libname.a' # Create ${libname}_ixlibrary.a entries in /sys/libs. - finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`func_echo_all "$lib" | $SED '\''s%^.*/\([[^/]]*\)\.ixlibrary$%\1%'\''`; test $RM /sys/libs/${libname}_ixlibrary.a; $show "cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a"; cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a || exit 1; done' + finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`func_echo_all "$lib" | $SED '\''s%^.*/\([[^/]]*\)\.ixlibrary$%\1%'\''`; $RM /sys/libs/${libname}_ixlibrary.a; $show "cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a"; cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a || exit 1; done' ;; esac ;; beos*) - library_names_spec='${libname}${shared_ext}' + library_names_spec='$libname$shared_ext' dynamic_linker="$host_os ld.so" shlibpath_var=LIBRARY_PATH ;; @@ -2337,8 +2509,8 @@ bsdi[[45]]*) version_type=linux # correct to gnu/linux during the next big refactor need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' finish_cmds='PATH="\$PATH:/sbin" ldconfig $libdir' shlibpath_var=LD_LIBRARY_PATH sys_lib_search_path_spec="/shlib /usr/lib /usr/X11/lib /usr/contrib/lib /lib /usr/local/lib" @@ -2350,7 +2522,7 @@ cygwin* | mingw* | pw32* | cegcc*) version_type=windows - shrext_cmds=".dll" + shrext_cmds=.dll need_version=no need_lib_prefix=no @@ -2359,8 +2531,8 @@ # gcc library_names_spec='$libname.dll.a' # DLL is installed to $(libdir)/../bin by postinstall_cmds - postinstall_cmds='base_file=`basename \${file}`~ - dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i; echo \$dlname'\''`~ + postinstall_cmds='base_file=`basename \$file`~ + dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\$base_file'\''i; echo \$dlname'\''`~ dldir=$destdir/`dirname \$dlpath`~ test -d \$dldir || mkdir -p \$dldir~ $install_prog $dir/$dlname \$dldir/$dlname~ @@ -2376,17 +2548,17 @@ case $host_os in cygwin*) # Cygwin DLLs use 'cyg' prefix rather than 'lib' - soname_spec='`echo ${libname} | sed -e 's/^lib/cyg/'``echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}' + soname_spec='`echo $libname | sed -e 's/^lib/cyg/'``echo $release | $SED -e 's/[[.]]/-/g'`$versuffix$shared_ext' m4_if([$1], [],[ sys_lib_search_path_spec="$sys_lib_search_path_spec /usr/lib/w32api"]) ;; mingw* | cegcc*) # MinGW DLLs use traditional 'lib' prefix - soname_spec='${libname}`echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}' + soname_spec='$libname`echo $release | $SED -e 's/[[.]]/-/g'`$versuffix$shared_ext' ;; pw32*) # pw32 DLLs use 'pw' prefix rather than 'lib' - library_names_spec='`echo ${libname} | sed -e 's/^lib/pw/'``echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}' + library_names_spec='`echo $libname | sed -e 's/^lib/pw/'``echo $release | $SED -e 's/[[.]]/-/g'`$versuffix$shared_ext' ;; esac dynamic_linker='Win32 ld.exe' @@ -2395,8 +2567,8 @@ *,cl*) # Native MSVC libname_spec='$name' - soname_spec='${libname}`echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}' - library_names_spec='${libname}.dll.lib' + soname_spec='$libname`echo $release | $SED -e 's/[[.]]/-/g'`$versuffix$shared_ext' + library_names_spec='$libname.dll.lib' case $build_os in mingw*) @@ -2423,7 +2595,7 @@ sys_lib_search_path_spec=`cygpath --path --unix "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` ;; *) - sys_lib_search_path_spec="$LIB" + sys_lib_search_path_spec=$LIB if $ECHO "$sys_lib_search_path_spec" | [$GREP ';[c-zC-Z]:/' >/dev/null]; then # It is most probably a Windows format PATH. sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'` @@ -2436,8 +2608,8 @@ esac # DLL is installed to $(libdir)/../bin by postinstall_cmds - postinstall_cmds='base_file=`basename \${file}`~ - dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i; echo \$dlname'\''`~ + postinstall_cmds='base_file=`basename \$file`~ + dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\$base_file'\''i; echo \$dlname'\''`~ dldir=$destdir/`dirname \$dlpath`~ test -d \$dldir || mkdir -p \$dldir~ $install_prog $dir/$dlname \$dldir/$dlname' @@ -2450,7 +2622,7 @@ *) # Assume MSVC wrapper - library_names_spec='${libname}`echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext} $libname.lib' + library_names_spec='$libname`echo $release | $SED -e 's/[[.]]/-/g'`$versuffix$shared_ext $libname.lib' dynamic_linker='Win32 ld.exe' ;; esac @@ -2463,8 +2635,8 @@ version_type=darwin need_lib_prefix=no need_version=no - library_names_spec='${libname}${release}${major}$shared_ext ${libname}$shared_ext' - soname_spec='${libname}${release}${major}$shared_ext' + library_names_spec='$libname$release$major$shared_ext $libname$shared_ext' + soname_spec='$libname$release$major$shared_ext' shlibpath_overrides_runpath=yes shlibpath_var=DYLD_LIBRARY_PATH shrext_cmds='`test .$module = .yes && echo .so || echo .dylib`' @@ -2477,8 +2649,8 @@ version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname$shared_ext' - soname_spec='${libname}${release}${shared_ext}$major' + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' shlibpath_var=LD_LIBRARY_PATH ;; @@ -2496,12 +2668,13 @@ version_type=freebsd-$objformat case $version_type in freebsd-elf*) - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' need_version=no need_lib_prefix=no ;; freebsd-*) - library_names_spec='${libname}${release}${shared_ext}$versuffix $libname${shared_ext}$versuffix' + library_names_spec='$libname$release$shared_ext$versuffix $libname$shared_ext$versuffix' need_version=yes ;; esac @@ -2531,10 +2704,10 @@ need_lib_prefix=no need_version=no dynamic_linker="$host_os runtime_loader" - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' shlibpath_var=LIBRARY_PATH - shlibpath_overrides_runpath=yes + shlibpath_overrides_runpath=no sys_lib_dlsearch_path_spec='/boot/home/config/lib /boot/common/lib /boot/system/lib' hardcode_into_libs=yes ;; @@ -2552,14 +2725,15 @@ dynamic_linker="$host_os dld.so" shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - if test "X$HPUX_IA64_MODE" = X32; then + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' + if test 32 = "$HPUX_IA64_MODE"; then sys_lib_search_path_spec="/usr/lib/hpux32 /usr/local/lib/hpux32 /usr/local/lib" + sys_lib_dlsearch_path_spec=/usr/lib/hpux32 else sys_lib_search_path_spec="/usr/lib/hpux64 /usr/local/lib/hpux64" + sys_lib_dlsearch_path_spec=/usr/lib/hpux64 fi - sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec ;; hppa*64*) shrext_cmds='.sl' @@ -2567,8 +2741,8 @@ dynamic_linker="$host_os dld.sl" shlibpath_var=LD_LIBRARY_PATH # How should we handle SHLIB_PATH shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' sys_lib_search_path_spec="/usr/lib/pa20_64 /usr/ccs/lib/pa20_64" sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec ;; @@ -2577,8 +2751,8 @@ dynamic_linker="$host_os dld.sl" shlibpath_var=SHLIB_PATH shlibpath_overrides_runpath=no # +s is required to enable SHLIB_PATH - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' ;; esac # HP-UX runs *really* slowly unless shared libraries are mode 555, ... @@ -2591,8 +2765,8 @@ version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' dynamic_linker='Interix 3.x ld.so.1 (PE, like ELF)' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no @@ -2603,7 +2777,7 @@ case $host_os in nonstopux*) version_type=nonstopux ;; *) - if test "$lt_cv_prog_gnu_ld" = yes; then + if test yes = "$lt_cv_prog_gnu_ld"; then version_type=linux # correct to gnu/linux during the next big refactor else version_type=irix @@ -2611,8 +2785,8 @@ esac need_lib_prefix=no need_version=no - soname_spec='${libname}${release}${shared_ext}$major' - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext} $libname${shared_ext}' + soname_spec='$libname$release$shared_ext$major' + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$release$shared_ext $libname$shared_ext' case $host_os in irix5* | nonstopux*) libsuff= shlibsuff= @@ -2631,8 +2805,8 @@ esac shlibpath_var=LD_LIBRARY${shlibsuff}_PATH shlibpath_overrides_runpath=no - sys_lib_search_path_spec="/usr/lib${libsuff} /lib${libsuff} /usr/local/lib${libsuff}" - sys_lib_dlsearch_path_spec="/usr/lib${libsuff} /lib${libsuff}" + sys_lib_search_path_spec="/usr/lib$libsuff /lib$libsuff /usr/local/lib$libsuff" + sys_lib_dlsearch_path_spec="/usr/lib$libsuff /lib$libsuff" hardcode_into_libs=yes ;; @@ -2641,13 +2815,33 @@ dynamic_linker=no ;; +linux*android*) + version_type=none # Android doesn't support versioned libraries. + need_lib_prefix=no + need_version=no + library_names_spec='$libname$release$shared_ext' + soname_spec='$libname$release$shared_ext' + finish_cmds= + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=yes + + # This implies no fast_install, which is unacceptable. + # Some rework will be needed to allow for fast_install + # before this can be enabled. + hardcode_into_libs=yes + + dynamic_linker='Android linker' + # Don't embed -rpath directories since the linker doesn't support them. + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' + ;; + # This must be glibc/ELF. linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' finish_cmds='PATH="\$PATH:/sbin" ldconfig -n $libdir' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no @@ -2672,7 +2866,12 @@ # before this can be enabled. hardcode_into_libs=yes - # Append ld.so.conf contents to the search path + # Ideally, we could use ldconfig to report *all* directores which are + # searched for libraries, however this is still not possible. Aside from not + # being certain /sbin/ldconfig is available, command + # 'ldconfig -N -X -v | grep ^/' on 64bit Fedora does not report /usr/lib64, + # even though it is searched at run-time. Try to do the best guess by + # appending ld.so.conf contents (and includes) to the search path. if test -f /etc/ld.so.conf; then lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s 2>/dev/null", \[$]2)); skip = 1; } { if (!skip) print \[$]0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;/^[ ]*hwcap[ ]/d;s/[:, ]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;s/"//g;/^$/d' | tr '\n' ' '` sys_lib_dlsearch_path_spec="/lib /usr/lib $lt_ld_extra" @@ -2704,12 +2903,12 @@ need_lib_prefix=no need_version=no if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' + library_names_spec='$libname$release$shared_ext$versuffix $libname$shared_ext$versuffix' finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' dynamic_linker='NetBSD (a.out) ld.so' else - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' dynamic_linker='NetBSD ld.elf_so' fi shlibpath_var=LD_LIBRARY_PATH @@ -2719,7 +2918,7 @@ newsos6) version_type=linux # correct to gnu/linux during the next big refactor - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes ;; @@ -2728,58 +2927,68 @@ version_type=qnx need_lib_prefix=no need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes dynamic_linker='ldqnx.so' ;; -openbsd*) +openbsd* | bitrig*) version_type=sunos - sys_lib_dlsearch_path_spec="/usr/lib" + sys_lib_dlsearch_path_spec=/usr/lib need_lib_prefix=no - # Some older versions of OpenBSD (3.3 at least) *do* need versioned libs. - case $host_os in - openbsd3.3 | openbsd3.3.*) need_version=yes ;; - *) need_version=no ;; - esac - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' - finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' - shlibpath_var=LD_LIBRARY_PATH - if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then - case $host_os in - openbsd2.[[89]] | openbsd2.[[89]].*) - shlibpath_overrides_runpath=no - ;; - *) - shlibpath_overrides_runpath=yes - ;; - esac + if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`"; then + need_version=no else - shlibpath_overrides_runpath=yes + need_version=yes fi + library_names_spec='$libname$release$shared_ext$versuffix $libname$shared_ext$versuffix' + finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=yes ;; os2*) libname_spec='$name' - shrext_cmds=".dll" + version_type=windows + shrext_cmds=.dll + need_version=no need_lib_prefix=no - library_names_spec='$libname${shared_ext} $libname.a' + # OS/2 can only load a DLL with a base name of 8 characters or less. + soname_spec='`test -n "$os2dllname" && libname="$os2dllname"; + v=$($ECHO $release$versuffix | tr -d .-); + n=$($ECHO $libname | cut -b -$((8 - ${#v})) | tr . _); + $ECHO $n$v`$shared_ext' + library_names_spec='${libname}_dll.$libext' dynamic_linker='OS/2 ld.exe' - shlibpath_var=LIBPATH + shlibpath_var=BEGINLIBPATH + sys_lib_search_path_spec="/lib /usr/lib /usr/local/lib" + sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec + postinstall_cmds='base_file=`basename \$file`~ + dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\$base_file'\''i; $ECHO \$dlname'\''`~ + dldir=$destdir/`dirname \$dlpath`~ + test -d \$dldir || mkdir -p \$dldir~ + $install_prog $dir/$dlname \$dldir/$dlname~ + chmod a+x \$dldir/$dlname~ + if test -n '\''$stripme'\'' && test -n '\''$striplib'\''; then + eval '\''$striplib \$dldir/$dlname'\'' || exit \$?; + fi' + postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; $ECHO \$dlname'\''`~ + dlpath=$dir/\$dldll~ + $RM \$dlpath' ;; osf3* | osf4* | osf5*) version_type=osf need_lib_prefix=no need_version=no - soname_spec='${libname}${release}${shared_ext}$major' - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='$libname$release$shared_ext$major' + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' shlibpath_var=LD_LIBRARY_PATH sys_lib_search_path_spec="/usr/shlib /usr/ccs/lib /usr/lib/cmplrs/cc /usr/lib /usr/local/lib /var/shlib" - sys_lib_dlsearch_path_spec="$sys_lib_search_path_spec" + sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec ;; rdos*) @@ -2790,8 +2999,8 @@ version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes hardcode_into_libs=yes @@ -2801,11 +3010,11 @@ sunos4*) version_type=sunos - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' + library_names_spec='$libname$release$shared_ext$versuffix $libname$shared_ext$versuffix' finish_cmds='PATH="\$PATH:/usr/etc" ldconfig $libdir' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes - if test "$with_gnu_ld" = yes; then + if test yes = "$with_gnu_ld"; then need_lib_prefix=no fi need_version=yes @@ -2813,8 +3022,8 @@ sysv4 | sysv4.3*) version_type=linux # correct to gnu/linux during the next big refactor - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' shlibpath_var=LD_LIBRARY_PATH case $host_vendor in sni) @@ -2835,24 +3044,24 @@ ;; sysv4*MP*) - if test -d /usr/nec ;then + if test -d /usr/nec; then version_type=linux # correct to gnu/linux during the next big refactor - library_names_spec='$libname${shared_ext}.$versuffix $libname${shared_ext}.$major $libname${shared_ext}' - soname_spec='$libname${shared_ext}.$major' + library_names_spec='$libname$shared_ext.$versuffix $libname$shared_ext.$major $libname$shared_ext' + soname_spec='$libname$shared_ext.$major' shlibpath_var=LD_LIBRARY_PATH fi ;; sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) - version_type=freebsd-elf + version_type=sco need_lib_prefix=no need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes hardcode_into_libs=yes - if test "$with_gnu_ld" = yes; then + if test yes = "$with_gnu_ld"; then sys_lib_search_path_spec='/usr/local/lib /usr/gnu/lib /usr/ccs/lib /usr/lib /lib' else sys_lib_search_path_spec='/usr/ccs/lib /usr/lib' @@ -2870,7 +3079,7 @@ version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes @@ -2878,8 +3087,8 @@ uts4*) version_type=linux # correct to gnu/linux during the next big refactor - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' shlibpath_var=LD_LIBRARY_PATH ;; @@ -2888,20 +3097,30 @@ ;; esac AC_MSG_RESULT([$dynamic_linker]) -test "$dynamic_linker" = no && can_build_shared=no +test no = "$dynamic_linker" && can_build_shared=no variables_saved_for_relink="PATH $shlibpath_var $runpath_var" -if test "$GCC" = yes; then +if test yes = "$GCC"; then variables_saved_for_relink="$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH" fi -if test "${lt_cv_sys_lib_search_path_spec+set}" = set; then - sys_lib_search_path_spec="$lt_cv_sys_lib_search_path_spec" +if test set = "${lt_cv_sys_lib_search_path_spec+set}"; then + sys_lib_search_path_spec=$lt_cv_sys_lib_search_path_spec fi -if test "${lt_cv_sys_lib_dlsearch_path_spec+set}" = set; then - sys_lib_dlsearch_path_spec="$lt_cv_sys_lib_dlsearch_path_spec" + +if test set = "${lt_cv_sys_lib_dlsearch_path_spec+set}"; then + sys_lib_dlsearch_path_spec=$lt_cv_sys_lib_dlsearch_path_spec fi +# remember unaugmented sys_lib_dlsearch_path content for libtool script decls... +configure_time_dlsearch_path=$sys_lib_dlsearch_path_spec + +# ... but it needs LT_SYS_LIBRARY_PATH munging for other configure-time code +func_munge_path_list sys_lib_dlsearch_path_spec "$LT_SYS_LIBRARY_PATH" + +# to be used as default LT_SYS_LIBRARY_PATH value in generated libtool +configure_time_lt_sys_library_path=$LT_SYS_LIBRARY_PATH + _LT_DECL([], [variables_saved_for_relink], [1], [Variables whose values should be saved in libtool wrapper scripts and restored at link time]) @@ -2934,39 +3153,41 @@ [Whether we should hardcode library paths into libraries]) _LT_DECL([], [sys_lib_search_path_spec], [2], [Compile-time system search path for libraries]) -_LT_DECL([], [sys_lib_dlsearch_path_spec], [2], - [Run-time system search path for libraries]) +_LT_DECL([sys_lib_dlsearch_path_spec], [configure_time_dlsearch_path], [2], + [Detected run-time system search path for libraries]) +_LT_DECL([], [configure_time_lt_sys_library_path], [2], + [Explicit LT_SYS_LIBRARY_PATH set during ./configure time]) ])# _LT_SYS_DYNAMIC_LINKER # _LT_PATH_TOOL_PREFIX(TOOL) # -------------------------- -# find a file program which can recognize shared library +# find a file program that can recognize shared library AC_DEFUN([_LT_PATH_TOOL_PREFIX], [m4_require([_LT_DECL_EGREP])dnl AC_MSG_CHECKING([for $1]) AC_CACHE_VAL(lt_cv_path_MAGIC_CMD, [case $MAGIC_CMD in [[\\/*] | ?:[\\/]*]) - lt_cv_path_MAGIC_CMD="$MAGIC_CMD" # Let the user override the test with a path. + lt_cv_path_MAGIC_CMD=$MAGIC_CMD # Let the user override the test with a path. ;; *) - lt_save_MAGIC_CMD="$MAGIC_CMD" - lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR + lt_save_MAGIC_CMD=$MAGIC_CMD + lt_save_ifs=$IFS; IFS=$PATH_SEPARATOR dnl $ac_dummy forces splitting on constant user-supplied paths. dnl POSIX.2 word splitting is done only on the output of word expansions, dnl not every word. This closes a longstanding sh security hole. ac_dummy="m4_if([$2], , $PATH, [$2])" for ac_dir in $ac_dummy; do - IFS="$lt_save_ifs" + IFS=$lt_save_ifs test -z "$ac_dir" && ac_dir=. - if test -f $ac_dir/$1; then - lt_cv_path_MAGIC_CMD="$ac_dir/$1" + if test -f "$ac_dir/$1"; then + lt_cv_path_MAGIC_CMD=$ac_dir/"$1" if test -n "$file_magic_test_file"; then case $deplibs_check_method in "file_magic "*) file_magic_regex=`expr "$deplibs_check_method" : "file_magic \(.*\)"` - MAGIC_CMD="$lt_cv_path_MAGIC_CMD" + MAGIC_CMD=$lt_cv_path_MAGIC_CMD if eval $file_magic_cmd \$file_magic_test_file 2> /dev/null | $EGREP "$file_magic_regex" > /dev/null; then : @@ -2989,11 +3210,11 @@ break fi done - IFS="$lt_save_ifs" - MAGIC_CMD="$lt_save_MAGIC_CMD" + IFS=$lt_save_ifs + MAGIC_CMD=$lt_save_MAGIC_CMD ;; esac]) -MAGIC_CMD="$lt_cv_path_MAGIC_CMD" +MAGIC_CMD=$lt_cv_path_MAGIC_CMD if test -n "$MAGIC_CMD"; then AC_MSG_RESULT($MAGIC_CMD) else @@ -3011,7 +3232,7 @@ # _LT_PATH_MAGIC # -------------- -# find a file program which can recognize a shared library +# find a file program that can recognize a shared library m4_defun([_LT_PATH_MAGIC], [_LT_PATH_TOOL_PREFIX(${ac_tool_prefix}file, /usr/bin$PATH_SEPARATOR$PATH) if test -z "$lt_cv_path_MAGIC_CMD"; then @@ -3038,16 +3259,16 @@ AC_ARG_WITH([gnu-ld], [AS_HELP_STRING([--with-gnu-ld], [assume the C compiler uses GNU ld @<:@default=no@:>@])], - [test "$withval" = no || with_gnu_ld=yes], + [test no = "$withval" || with_gnu_ld=yes], [with_gnu_ld=no])dnl ac_prog=ld -if test "$GCC" = yes; then +if test yes = "$GCC"; then # Check if gcc -print-prog-name=ld gives a path. AC_MSG_CHECKING([for ld used by $CC]) case $host in *-*-mingw*) - # gcc leaves a trailing carriage return which upsets mingw + # gcc leaves a trailing carriage return, which upsets mingw ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;; *) ac_prog=`($CC -print-prog-name=ld) 2>&5` ;; @@ -3061,7 +3282,7 @@ while $ECHO "$ac_prog" | $GREP "$re_direlt" > /dev/null 2>&1; do ac_prog=`$ECHO $ac_prog| $SED "s%$re_direlt%/%"` done - test -z "$LD" && LD="$ac_prog" + test -z "$LD" && LD=$ac_prog ;; "") # If it fails, then pretend we aren't using GCC. @@ -3072,37 +3293,37 @@ with_gnu_ld=unknown ;; esac -elif test "$with_gnu_ld" = yes; then +elif test yes = "$with_gnu_ld"; then AC_MSG_CHECKING([for GNU ld]) else AC_MSG_CHECKING([for non-GNU ld]) fi AC_CACHE_VAL(lt_cv_path_LD, [if test -z "$LD"; then - lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR + lt_save_ifs=$IFS; IFS=$PATH_SEPARATOR for ac_dir in $PATH; do - IFS="$lt_save_ifs" + IFS=$lt_save_ifs test -z "$ac_dir" && ac_dir=. if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then - lt_cv_path_LD="$ac_dir/$ac_prog" + lt_cv_path_LD=$ac_dir/$ac_prog # Check to see if the program is GNU ld. I'd rather use --version, # but apparently some variants of GNU ld only accept -v. # Break only if it was the GNU/non-GNU ld that we prefer. case `"$lt_cv_path_LD" -v 2>&1 conftest.i +cat conftest.i conftest.i >conftest2.i +: ${lt_DD:=$DD} +AC_PATH_PROGS_FEATURE_CHECK([lt_DD], [dd], +[if "$ac_path_lt_DD" bs=32 count=1 conftest.out 2>/dev/null; then + cmp -s conftest.i conftest.out \ + && ac_cv_path_lt_DD="$ac_path_lt_DD" ac_path_lt_DD_found=: +fi]) +rm -f conftest.i conftest2.i conftest.out]) +])# _LT_PATH_DD + + +# _LT_CMD_TRUNCATE +# ---------------- +# find command to truncate a binary pipe +m4_defun([_LT_CMD_TRUNCATE], +[m4_require([_LT_PATH_DD]) +AC_CACHE_CHECK([how to truncate binary pipes], [lt_cv_truncate_bin], +[printf 0123456789abcdef0123456789abcdef >conftest.i +cat conftest.i conftest.i >conftest2.i +lt_cv_truncate_bin= +if "$ac_cv_path_lt_DD" bs=32 count=1 conftest.out 2>/dev/null; then + cmp -s conftest.i conftest.out \ + && lt_cv_truncate_bin="$ac_cv_path_lt_DD bs=4096 count=1" +fi +rm -f conftest.i conftest2.i conftest.out +test -z "$lt_cv_truncate_bin" && lt_cv_truncate_bin="$SED -e 4q"]) +_LT_DECL([lt_truncate_bin], [lt_cv_truncate_bin], [1], + [Command to truncate a binary pipe]) +])# _LT_CMD_TRUNCATE + + # _LT_CHECK_MAGIC_METHOD # ---------------------- # how to check for library dependencies @@ -3188,13 +3446,13 @@ # Need to set the preceding variable on all platforms that support # interlibrary dependencies. # 'none' -- dependencies not supported. -# `unknown' -- same as none, but documents that we really don't know. +# 'unknown' -- same as none, but documents that we really don't know. # 'pass_all' -- all dependencies passed with no checks. # 'test_compile' -- check by making test program. # 'file_magic [[regex]]' -- check by looking for files in library path -# which responds to the $file_magic_cmd with a given extended regex. -# If you have `file' or equivalent on your system and you're not sure -# whether `pass_all' will *always* work, you probably want this one. +# that responds to the $file_magic_cmd with a given extended regex. +# If you have 'file' or equivalent on your system and you're not sure +# whether 'pass_all' will *always* work, you probably want this one. case $host_os in aix[[4-9]]*) @@ -3221,8 +3479,7 @@ # Base MSYS/MinGW do not provide the 'file' command needed by # func_win32_libid shell function, so use a weaker test based on 'objdump', # unless we find 'file', for example because we are cross-compiling. - # func_win32_libid assumes BSD nm, so disallow it if using MS dumpbin. - if ( test "$lt_cv_nm_interface" = "BSD nm" && file / ) >/dev/null 2>&1; then + if ( file / ) >/dev/null 2>&1; then lt_cv_deplibs_check_method='file_magic ^x86 archive import|^x86 DLL' lt_cv_file_magic_cmd='func_win32_libid' else @@ -3318,8 +3575,8 @@ lt_cv_deplibs_check_method=pass_all ;; -openbsd*) - if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then +openbsd* | bitrig*) + if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`"; then lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|\.so|_pic\.a)$' else lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|_pic\.a)$' @@ -3372,6 +3629,9 @@ tpf*) lt_cv_deplibs_check_method=pass_all ;; +os2*) + lt_cv_deplibs_check_method=pass_all + ;; esac ]) @@ -3412,33 +3672,38 @@ AC_CACHE_CHECK([for BSD- or MS-compatible name lister (nm)], lt_cv_path_NM, [if test -n "$NM"; then # Let the user override the test. - lt_cv_path_NM="$NM" + lt_cv_path_NM=$NM else - lt_nm_to_check="${ac_tool_prefix}nm" + lt_nm_to_check=${ac_tool_prefix}nm if test -n "$ac_tool_prefix" && test "$build" = "$host"; then lt_nm_to_check="$lt_nm_to_check nm" fi for lt_tmp_nm in $lt_nm_to_check; do - lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR + lt_save_ifs=$IFS; IFS=$PATH_SEPARATOR for ac_dir in $PATH /usr/ccs/bin/elf /usr/ccs/bin /usr/ucb /bin; do - IFS="$lt_save_ifs" + IFS=$lt_save_ifs test -z "$ac_dir" && ac_dir=. - tmp_nm="$ac_dir/$lt_tmp_nm" - if test -f "$tmp_nm" || test -f "$tmp_nm$ac_exeext" ; then + tmp_nm=$ac_dir/$lt_tmp_nm + if test -f "$tmp_nm" || test -f "$tmp_nm$ac_exeext"; then # Check to see if the nm accepts a BSD-compat flag. - # Adding the `sed 1q' prevents false positives on HP-UX, which says: + # Adding the 'sed 1q' prevents false positives on HP-UX, which says: # nm: unknown option "B" ignored # Tru64's nm complains that /dev/null is an invalid object file - case `"$tmp_nm" -B /dev/null 2>&1 | sed '1q'` in - */dev/null* | *'Invalid file or object type'*) + # MSYS converts /dev/null to NUL, MinGW nm treats NUL as empty + case $build_os in + mingw*) lt_bad_file=conftest.nm/nofile ;; + *) lt_bad_file=/dev/null ;; + esac + case `"$tmp_nm" -B $lt_bad_file 2>&1 | sed '1q'` in + *$lt_bad_file* | *'Invalid file or object type'*) lt_cv_path_NM="$tmp_nm -B" - break + break 2 ;; *) case `"$tmp_nm" -p /dev/null 2>&1 | sed '1q'` in */dev/null*) lt_cv_path_NM="$tmp_nm -p" - break + break 2 ;; *) lt_cv_path_NM=${lt_cv_path_NM="$tmp_nm"} # keep the first match, but @@ -3449,21 +3714,21 @@ esac fi done - IFS="$lt_save_ifs" + IFS=$lt_save_ifs done : ${lt_cv_path_NM=no} fi]) -if test "$lt_cv_path_NM" != "no"; then - NM="$lt_cv_path_NM" +if test no != "$lt_cv_path_NM"; then + NM=$lt_cv_path_NM else # Didn't find any BSD compatible name lister, look for dumpbin. if test -n "$DUMPBIN"; then : # Let the user override the test. else AC_CHECK_TOOLS(DUMPBIN, [dumpbin "link -dump"], :) - case `$DUMPBIN -symbols /dev/null 2>&1 | sed '1q'` in + case `$DUMPBIN -symbols -headers /dev/null 2>&1 | sed '1q'` in *COFF*) - DUMPBIN="$DUMPBIN -symbols" + DUMPBIN="$DUMPBIN -symbols -headers" ;; *) DUMPBIN=: @@ -3471,8 +3736,8 @@ esac fi AC_SUBST([DUMPBIN]) - if test "$DUMPBIN" != ":"; then - NM="$DUMPBIN" + if test : != "$DUMPBIN"; then + NM=$DUMPBIN fi fi test -z "$NM" && NM=nm @@ -3518,8 +3783,8 @@ case $host_os in cygwin* | mingw* | pw32* | cegcc*) - # two different shell functions defined in ltmain.sh - # decide which to use based on capabilities of $DLLTOOL + # two different shell functions defined in ltmain.sh; + # decide which one to use based on capabilities of $DLLTOOL case `$DLLTOOL --help 2>&1` in *--identify-strict*) lt_cv_sharedlib_from_linklib_cmd=func_cygming_dll_for_implib @@ -3531,7 +3796,7 @@ ;; *) # fallback: assume linklib IS sharedlib - lt_cv_sharedlib_from_linklib_cmd="$ECHO" + lt_cv_sharedlib_from_linklib_cmd=$ECHO ;; esac ]) @@ -3558,13 +3823,28 @@ lt_cv_path_mainfest_tool=yes fi rm -f conftest*]) -if test "x$lt_cv_path_mainfest_tool" != xyes; then +if test yes != "$lt_cv_path_mainfest_tool"; then MANIFEST_TOOL=: fi _LT_DECL([], [MANIFEST_TOOL], [1], [Manifest tool])dnl ])# _LT_PATH_MANIFEST_TOOL +# _LT_DLL_DEF_P([FILE]) +# --------------------- +# True iff FILE is a Windows DLL '.def' file. +# Keep in sync with func_dll_def_p in the libtool script +AC_DEFUN([_LT_DLL_DEF_P], +[dnl + test DEF = "`$SED -n dnl + -e '\''s/^[[ ]]*//'\'' dnl Strip leading whitespace + -e '\''/^\(;.*\)*$/d'\'' dnl Delete empty lines and comments + -e '\''s/^\(EXPORTS\|LIBRARY\)\([[ ]].*\)*$/DEF/p'\'' dnl + -e q dnl Only consider the first "real" line + $1`" dnl +])# _LT_DLL_DEF_P + + # LT_LIB_M # -------- # check for math library @@ -3576,11 +3856,11 @@ # These system don't have libm, or don't need it ;; *-ncr-sysv4.3*) - AC_CHECK_LIB(mw, _mwvalidcheckl, LIBM="-lmw") + AC_CHECK_LIB(mw, _mwvalidcheckl, LIBM=-lmw) AC_CHECK_LIB(m, cos, LIBM="$LIBM -lm") ;; *) - AC_CHECK_LIB(m, cos, LIBM="-lm") + AC_CHECK_LIB(m, cos, LIBM=-lm) ;; esac AC_SUBST([LIBM]) @@ -3599,7 +3879,7 @@ _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)= -if test "$GCC" = yes; then +if test yes = "$GCC"; then case $cc_basename in nvcc*) _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=' -Xcompiler -fno-builtin' ;; @@ -3651,7 +3931,7 @@ symcode='[[ABCDGISTW]]' ;; hpux*) - if test "$host_cpu" = ia64; then + if test ia64 = "$host_cpu"; then symcode='[[ABCDEGRST]]' fi ;; @@ -3684,14 +3964,44 @@ symcode='[[ABCDGIRSTW]]' ;; esac +if test "$lt_cv_nm_interface" = "MS dumpbin"; then + # Gets list of data symbols to import. + lt_cv_sys_global_symbol_to_import="sed -n -e 's/^I .* \(.*\)$/\1/p'" + # Adjust the below global symbol transforms to fixup imported variables. + lt_cdecl_hook=" -e 's/^I .* \(.*\)$/extern __declspec(dllimport) char \1;/p'" + lt_c_name_hook=" -e 's/^I .* \(.*\)$/ {\"\1\", (void *) 0},/p'" + lt_c_name_lib_hook="\ + -e 's/^I .* \(lib.*\)$/ {\"\1\", (void *) 0},/p'\ + -e 's/^I .* \(.*\)$/ {\"lib\1\", (void *) 0},/p'" +else + # Disable hooks by default. + lt_cv_sys_global_symbol_to_import= + lt_cdecl_hook= + lt_c_name_hook= + lt_c_name_lib_hook= +fi + # Transform an extracted symbol line into a proper C declaration. # Some systems (esp. on ia64) link data and code symbols differently, # so use this general approach. -lt_cv_sys_global_symbol_to_cdecl="sed -n -e 's/^T .* \(.*\)$/extern int \1();/p' -e 's/^$symcode* .* \(.*\)$/extern char \1;/p'" +lt_cv_sys_global_symbol_to_cdecl="sed -n"\ +$lt_cdecl_hook\ +" -e 's/^T .* \(.*\)$/extern int \1();/p'"\ +" -e 's/^$symcode$symcode* .* \(.*\)$/extern char \1;/p'" # Transform an extracted symbol line into symbol name and symbol address -lt_cv_sys_global_symbol_to_c_name_address="sed -n -e 's/^: \([[^ ]]*\)[[ ]]*$/ {\\\"\1\\\", (void *) 0},/p' -e 's/^$symcode* \([[^ ]]*\) \([[^ ]]*\)$/ {\"\2\", (void *) \&\2},/p'" -lt_cv_sys_global_symbol_to_c_name_address_lib_prefix="sed -n -e 's/^: \([[^ ]]*\)[[ ]]*$/ {\\\"\1\\\", (void *) 0},/p' -e 's/^$symcode* \([[^ ]]*\) \(lib[[^ ]]*\)$/ {\"\2\", (void *) \&\2},/p' -e 's/^$symcode* \([[^ ]]*\) \([[^ ]]*\)$/ {\"lib\2\", (void *) \&\2},/p'" +lt_cv_sys_global_symbol_to_c_name_address="sed -n"\ +$lt_c_name_hook\ +" -e 's/^: \(.*\) .*$/ {\"\1\", (void *) 0},/p'"\ +" -e 's/^$symcode$symcode* .* \(.*\)$/ {\"\1\", (void *) \&\1},/p'" + +# Transform an extracted symbol line into symbol name with lib prefix and +# symbol address. +lt_cv_sys_global_symbol_to_c_name_address_lib_prefix="sed -n"\ +$lt_c_name_lib_hook\ +" -e 's/^: \(.*\) .*$/ {\"\1\", (void *) 0},/p'"\ +" -e 's/^$symcode$symcode* .* \(lib.*\)$/ {\"\1\", (void *) \&\1},/p'"\ +" -e 's/^$symcode$symcode* .* \(.*\)$/ {\"lib\1\", (void *) \&\1},/p'" # Handle CRLF in mingw tool chain opt_cr= @@ -3709,21 +4019,24 @@ # Write the raw and C identifiers. if test "$lt_cv_nm_interface" = "MS dumpbin"; then - # Fake it for dumpbin and say T for any non-static function - # and D for any global variable. + # Fake it for dumpbin and say T for any non-static function, + # D for any global variable and I for any imported variable. # Also find C++ and __fastcall symbols from MSVC++, # which start with @ or ?. lt_cv_sys_global_symbol_pipe="$AWK ['"\ " {last_section=section; section=\$ 3};"\ " /^COFF SYMBOL TABLE/{for(i in hide) delete hide[i]};"\ " /Section length .*#relocs.*(pick any)/{hide[last_section]=1};"\ +" /^ *Symbol name *: /{split(\$ 0,sn,\":\"); si=substr(sn[2],2)};"\ +" /^ *Type *: code/{print \"T\",si,substr(si,length(prfx))};"\ +" /^ *Type *: data/{print \"I\",si,substr(si,length(prfx))};"\ " \$ 0!~/External *\|/{next};"\ " / 0+ UNDEF /{next}; / UNDEF \([^|]\)*()/{next};"\ " {if(hide[section]) next};"\ -" {f=0}; \$ 0~/\(\).*\|/{f=1}; {printf f ? \"T \" : \"D \"};"\ -" {split(\$ 0, a, /\||\r/); split(a[2], s)};"\ -" s[1]~/^[@?]/{print s[1], s[1]; next};"\ -" s[1]~prfx {split(s[1],t,\"@\"); print t[1], substr(t[1],length(prfx))}"\ +" {f=\"D\"}; \$ 0~/\(\).*\|/{f=\"T\"};"\ +" {split(\$ 0,a,/\||\r/); split(a[2],s)};"\ +" s[1]~/^[@?]/{print f,s[1],s[1]; next};"\ +" s[1]~prfx {split(s[1],t,\"@\"); print f,t[1],substr(t[1],length(prfx))}"\ " ' prfx=^$ac_symprfx]" else lt_cv_sys_global_symbol_pipe="sed -n -e 's/^.*[[ ]]\($symcode$symcode*\)[[ ]][[ ]]*$ac_symprfx$sympat$opt_cr$/$symxfrm/p'" @@ -3763,11 +4076,11 @@ if $GREP ' nm_test_func$' "$nlist" >/dev/null; then cat <<_LT_EOF > conftest.$ac_ext /* Keep this code in sync between libtool.m4, ltmain, lt_system.h, and tests. */ -#if defined(_WIN32) || defined(__CYGWIN__) || defined(_WIN32_WCE) -/* DATA imports from DLLs on WIN32 con't be const, because runtime +#if defined _WIN32 || defined __CYGWIN__ || defined _WIN32_WCE +/* DATA imports from DLLs on WIN32 can't be const, because runtime relocations are performed -- see ld's documentation on pseudo-relocs. */ # define LT@&t@_DLSYM_CONST -#elif defined(__osf__) +#elif defined __osf__ /* This system does not cope well with relocations in const data. */ # define LT@&t@_DLSYM_CONST #else @@ -3793,7 +4106,7 @@ { { "@PROGRAM@", (void *) 0 }, _LT_EOF - $SED "s/^$symcode$symcode* \(.*\) \(.*\)$/ {\"\2\", (void *) \&\2},/" < "$nlist" | $GREP -v main >> conftest.$ac_ext + $SED "s/^$symcode$symcode* .* \(.*\)$/ {\"\1\", (void *) \&\1},/" < "$nlist" | $GREP -v main >> conftest.$ac_ext cat <<\_LT_EOF >> conftest.$ac_ext {0, (void *) 0} }; @@ -3813,9 +4126,9 @@ mv conftest.$ac_objext conftstm.$ac_objext lt_globsym_save_LIBS=$LIBS lt_globsym_save_CFLAGS=$CFLAGS - LIBS="conftstm.$ac_objext" + LIBS=conftstm.$ac_objext CFLAGS="$CFLAGS$_LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)" - if AC_TRY_EVAL(ac_link) && test -s conftest${ac_exeext}; then + if AC_TRY_EVAL(ac_link) && test -s conftest$ac_exeext; then pipe_works=yes fi LIBS=$lt_globsym_save_LIBS @@ -3836,7 +4149,7 @@ rm -rf conftest* conftst* # Do not use the global_symbol_pipe unless it works. - if test "$pipe_works" = yes; then + if test yes = "$pipe_works"; then break else lt_cv_sys_global_symbol_pipe= @@ -3863,12 +4176,16 @@ [Take the output of nm and produce a listing of raw symbols and C names]) _LT_DECL([global_symbol_to_cdecl], [lt_cv_sys_global_symbol_to_cdecl], [1], [Transform the output of nm in a proper C declaration]) +_LT_DECL([global_symbol_to_import], [lt_cv_sys_global_symbol_to_import], [1], + [Transform the output of nm into a list of symbols to manually relocate]) _LT_DECL([global_symbol_to_c_name_address], [lt_cv_sys_global_symbol_to_c_name_address], [1], [Transform the output of nm in a C name address pair]) _LT_DECL([global_symbol_to_c_name_address_lib_prefix], [lt_cv_sys_global_symbol_to_c_name_address_lib_prefix], [1], [Transform the output of nm in a C name address pair when lib prefix is needed]) +_LT_DECL([nm_interface], [lt_cv_nm_interface], [1], + [The name lister interface]) _LT_DECL([], [nm_file_list_spec], [1], [Specify filename containing input files for $NM]) ]) # _LT_CMD_GLOBAL_SYMBOLS @@ -3884,17 +4201,18 @@ m4_if([$1], [CXX], [ # C++ specific cases for pic, static, wl, etc. - if test "$GXX" = yes; then + if test yes = "$GXX"; then _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' case $host_os in aix*) # All AIX code is PIC. - if test "$host_cpu" = ia64; then + if test ia64 = "$host_cpu"; then # AIX 5 now supports IA64 processor _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' fi + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ;; amigaos*) @@ -3905,8 +4223,8 @@ ;; m68k) # FIXME: we need at least 68020 code to build shared libraries, but - # adding the `-m68020' flag to GCC prevents building anything better, - # like `-m68040'. + # adding the '-m68020' flag to GCC prevents building anything better, + # like '-m68040'. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-m68020 -resident32 -malways-restore-a4' ;; esac @@ -3922,6 +4240,11 @@ # (--disable-auto-import) libraries m4_if([$1], [GCJ], [], [_LT_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT']) + case $host_os in + os2*) + _LT_TAGVAR(lt_prog_compiler_static, $1)='$wl-static' + ;; + esac ;; darwin* | rhapsody*) # PIC is the default on this platform @@ -3971,7 +4294,7 @@ case $host_os in aix[[4-9]]*) # All AIX code is PIC. - if test "$host_cpu" = ia64; then + if test ia64 = "$host_cpu"; then # AIX 5 now supports IA64 processor _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' else @@ -4012,14 +4335,14 @@ case $cc_basename in CC*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' - _LT_TAGVAR(lt_prog_compiler_static, $1)='${wl}-a ${wl}archive' - if test "$host_cpu" != ia64; then + _LT_TAGVAR(lt_prog_compiler_static, $1)='$wl-a ${wl}archive' + if test ia64 != "$host_cpu"; then _LT_TAGVAR(lt_prog_compiler_pic, $1)='+Z' fi ;; aCC*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' - _LT_TAGVAR(lt_prog_compiler_static, $1)='${wl}-a ${wl}archive' + _LT_TAGVAR(lt_prog_compiler_static, $1)='$wl-a ${wl}archive' case $host_cpu in hppa*64*|ia64*) # +Z the default @@ -4056,7 +4379,7 @@ _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ;; ecpc* ) - # old Intel C++ for x86_64 which still supported -KPIC. + # old Intel C++ for x86_64, which still supported -KPIC. _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' @@ -4201,17 +4524,18 @@ fi ], [ - if test "$GCC" = yes; then + if test yes = "$GCC"; then _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' case $host_os in aix*) # All AIX code is PIC. - if test "$host_cpu" = ia64; then + if test ia64 = "$host_cpu"; then # AIX 5 now supports IA64 processor _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' fi + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ;; amigaos*) @@ -4222,8 +4546,8 @@ ;; m68k) # FIXME: we need at least 68020 code to build shared libraries, but - # adding the `-m68020' flag to GCC prevents building anything better, - # like `-m68040'. + # adding the '-m68020' flag to GCC prevents building anything better, + # like '-m68040'. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-m68020 -resident32 -malways-restore-a4' ;; esac @@ -4240,6 +4564,11 @@ # (--disable-auto-import) libraries m4_if([$1], [GCJ], [], [_LT_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT']) + case $host_os in + os2*) + _LT_TAGVAR(lt_prog_compiler_static, $1)='$wl-static' + ;; + esac ;; darwin* | rhapsody*) @@ -4310,7 +4639,7 @@ case $host_os in aix*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' - if test "$host_cpu" = ia64; then + if test ia64 = "$host_cpu"; then # AIX 5 now supports IA64 processor _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' else @@ -4318,11 +4647,30 @@ fi ;; + darwin* | rhapsody*) + # PIC is the default on this platform + # Common symbols not allowed in MH_DYLIB files + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fno-common' + case $cc_basename in + nagfor*) + # NAG Fortran compiler + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,-Wl,,' + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-PIC' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + ;; + esac + ;; + mingw* | cygwin* | pw32* | os2* | cegcc*) # This hack is so that the source file can tell whether it is being # built for inclusion in a dll (and should export symbols for example). m4_if([$1], [GCJ], [], [_LT_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT']) + case $host_os in + os2*) + _LT_TAGVAR(lt_prog_compiler_static, $1)='$wl-static' + ;; + esac ;; hpux9* | hpux10* | hpux11*) @@ -4338,7 +4686,7 @@ ;; esac # Is there a better lt_prog_compiler_static that works with the bundled CC? - _LT_TAGVAR(lt_prog_compiler_static, $1)='${wl}-a ${wl}archive' + _LT_TAGVAR(lt_prog_compiler_static, $1)='$wl-a ${wl}archive' ;; irix5* | irix6* | nonstopux*) @@ -4349,7 +4697,7 @@ linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) case $cc_basename in - # old Intel for x86_64 which still supported -KPIC. + # old Intel for x86_64, which still supported -KPIC. ecc*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' @@ -4374,6 +4722,12 @@ _LT_TAGVAR(lt_prog_compiler_pic, $1)='-PIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; + tcc*) + # Fabrice Bellard et al's Tiny C Compiler + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' + ;; pgcc* | pgf77* | pgf90* | pgf95* | pgfortran*) # Portland Group compilers (*not* the Pentium gcc compiler, # which looks to be a dead project) @@ -4471,7 +4825,7 @@ ;; sysv4*MP*) - if test -d /usr/nec ;then + if test -d /usr/nec; then _LT_TAGVAR(lt_prog_compiler_pic, $1)='-Kconform_pic' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' fi @@ -4500,7 +4854,7 @@ fi ]) case $host_os in - # For platforms which do not support PIC, -DPIC is meaningless: + # For platforms that do not support PIC, -DPIC is meaningless: *djgpp*) _LT_TAGVAR(lt_prog_compiler_pic, $1)= ;; @@ -4566,17 +4920,21 @@ case $host_os in aix[[4-9]]*) # If we're using GNU nm, then we don't want the "-C" option. - # -C means demangle to AIX nm, but means don't demangle with GNU nm - # Also, AIX nm treats weak defined symbols like other global defined - # symbols, whereas GNU nm marks them as "W". + # -C means demangle to GNU nm, but means don't demangle to AIX nm. + # Without the "-l" option, or with the "-B" option, AIX nm treats + # weak defined symbols like other global defined symbols, whereas + # GNU nm marks them as "W". + # While the 'weak' keyword is ignored in the Export File, we need + # it in the Import File for the 'aix-soname' feature, so we have + # to replace the "-B" option with "-P" for AIX nm. if $NM -V 2>&1 | $GREP 'GNU' > /dev/null; then - _LT_TAGVAR(export_symbols_cmds, $1)='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W")) && ([substr](\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols' + _LT_TAGVAR(export_symbols_cmds, $1)='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W")) && ([substr](\$ 3,1,1) != ".")) { if (\$ 2 == "W") { print \$ 3 " weak" } else { print \$ 3 } } }'\'' | sort -u > $export_symbols' else - _LT_TAGVAR(export_symbols_cmds, $1)='$NM -BCpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B")) && ([substr](\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols' + _LT_TAGVAR(export_symbols_cmds, $1)='`func_echo_all $NM | $SED -e '\''s/B\([[^B]]*\)$/P\1/'\''` -PCpgl $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W") || (\$ 2 == "V") || (\$ 2 == "Z")) && ([substr](\$ 1,1,1) != ".")) { if ((\$ 2 == "W") || (\$ 2 == "V") || (\$ 2 == "Z")) { print \$ 1 " weak" } else { print \$ 1 } } }'\'' | sort -u > $export_symbols' fi ;; pw32*) - _LT_TAGVAR(export_symbols_cmds, $1)="$ltdll_cmds" + _LT_TAGVAR(export_symbols_cmds, $1)=$ltdll_cmds ;; cygwin* | mingw* | cegcc*) case $cc_basename in @@ -4625,9 +4983,9 @@ # included in the symbol list _LT_TAGVAR(include_expsyms, $1)= # exclude_expsyms can be an extended regexp of symbols to exclude - # it will be wrapped by ` (' and `)$', so one must not match beginning or - # end of line. Example: `a|bc|.*d.*' will exclude the symbols `a' and `bc', - # as well as any symbol that contains `d'. + # it will be wrapped by ' (' and ')$', so one must not match beginning or + # end of line. Example: 'a|bc|.*d.*' will exclude the symbols 'a' and 'bc', + # as well as any symbol that contains 'd'. _LT_TAGVAR(exclude_expsyms, $1)=['_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*'] # Although _GLOBAL_OFFSET_TABLE_ is a valid symbol C name, most a.out # platforms (ab)use it in PIC code, but their linkers get confused if @@ -4643,7 +5001,7 @@ # FIXME: the MSVC++ port hasn't been tested in a loooong time # When not using gcc, we currently assume that we are using # Microsoft Visual C++. - if test "$GCC" != yes; then + if test yes != "$GCC"; then with_gnu_ld=no fi ;; @@ -4651,7 +5009,7 @@ # we just hope/assume this is gcc and not c89 (= MSVC++) with_gnu_ld=yes ;; - openbsd*) + openbsd* | bitrig*) with_gnu_ld=no ;; linux* | k*bsd*-gnu | gnu*) @@ -4664,7 +5022,7 @@ # On some targets, GNU ld is compatible enough with the native linker # that we're better off using the native interface for both. lt_use_gnu_ld_interface=no - if test "$with_gnu_ld" = yes; then + if test yes = "$with_gnu_ld"; then case $host_os in aix*) # The AIX port of GNU ld has always aspired to compatibility @@ -4686,24 +5044,24 @@ esac fi - if test "$lt_use_gnu_ld_interface" = yes; then + if test yes = "$lt_use_gnu_ld_interface"; then # If archive_cmds runs LD, not CC, wlarc should be empty - wlarc='${wl}' + wlarc='$wl' # Set some defaults for GNU ld with shared library support. These # are reset later if shared libraries are not supported. Putting them # here allows them to be overridden if necessary. runpath_var=LD_RUN_PATH - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' - _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl--export-dynamic' # ancient GNU ld didn't support --whole-archive et. al. if $LD --help 2>&1 | $GREP 'no-whole-archive' > /dev/null; then - _LT_TAGVAR(whole_archive_flag_spec, $1)="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' + _LT_TAGVAR(whole_archive_flag_spec, $1)=$wlarc'--whole-archive$convenience '$wlarc'--no-whole-archive' else _LT_TAGVAR(whole_archive_flag_spec, $1)= fi supports_anon_versioning=no - case `$LD -v 2>&1` in + case `$LD -v | $SED -e 's/([^)]\+)\s\+//' 2>&1` in *GNU\ gold*) supports_anon_versioning=yes ;; *\ [[01]].* | *\ 2.[[0-9]].* | *\ 2.10.*) ;; # catch versions < 2.11 *\ 2.11.93.0.2\ *) supports_anon_versioning=yes ;; # RH7.3 ... @@ -4716,7 +5074,7 @@ case $host_os in aix[[3-9]]*) # On AIX/PPC, the GNU linker is very broken - if test "$host_cpu" != ia64; then + if test ia64 != "$host_cpu"; then _LT_TAGVAR(ld_shlibs, $1)=no cat <<_LT_EOF 1>&2 @@ -4735,7 +5093,7 @@ case $host_cpu in powerpc) # see comment about AmigaOS4 .so support - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='' ;; m68k) @@ -4751,7 +5109,7 @@ _LT_TAGVAR(allow_undefined_flag, $1)=unsupported # Joseph Beckenbach says some releases of gcc # support --undefined. This deserves some investigation. FIXME - _LT_TAGVAR(archive_cmds, $1)='$CC -nostart $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + _LT_TAGVAR(archive_cmds, $1)='$CC -nostart $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' else _LT_TAGVAR(ld_shlibs, $1)=no fi @@ -4761,7 +5119,7 @@ # _LT_TAGVAR(hardcode_libdir_flag_spec, $1) is actually meaningless, # as there is no search path for DLLs. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' - _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-all-symbols' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl--export-all-symbols' _LT_TAGVAR(allow_undefined_flag, $1)=unsupported _LT_TAGVAR(always_export_symbols, $1)=no _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes @@ -4769,61 +5127,89 @@ _LT_TAGVAR(exclude_expsyms, $1)=['[_]+GLOBAL_OFFSET_TABLE_|[_]+GLOBAL__[FID]_.*|[_]+head_[A-Za-z0-9_]+_dll|[A-Za-z0-9_]+_dll_iname'] if $LD --help 2>&1 | $GREP 'auto-import' > /dev/null; then - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' - # If the export-symbols file already is a .def file (1st line - # is EXPORTS), use it as is; otherwise, prepend... - _LT_TAGVAR(archive_expsym_cmds, $1)='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then - cp $export_symbols $output_objdir/$soname.def; - else - echo EXPORTS > $output_objdir/$soname.def; - cat $export_symbols >> $output_objdir/$soname.def; - fi~ - $CC -shared $output_objdir/$soname.def $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags -o $output_objdir/$soname $wl--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' + # If the export-symbols file already is a .def file, use it as + # is; otherwise, prepend EXPORTS... + _LT_TAGVAR(archive_expsym_cmds, $1)='if _LT_DLL_DEF_P([$export_symbols]); then + cp $export_symbols $output_objdir/$soname.def; + else + echo EXPORTS > $output_objdir/$soname.def; + cat $export_symbols >> $output_objdir/$soname.def; + fi~ + $CC -shared $output_objdir/$soname.def $libobjs $deplibs $compiler_flags -o $output_objdir/$soname $wl--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' else _LT_TAGVAR(ld_shlibs, $1)=no fi ;; haiku*) - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' _LT_TAGVAR(link_all_deplibs, $1)=yes ;; + os2*) + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' + _LT_TAGVAR(hardcode_minus_L, $1)=yes + _LT_TAGVAR(allow_undefined_flag, $1)=unsupported + shrext_cmds=.dll + _LT_TAGVAR(archive_cmds, $1)='$ECHO "LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE" > $output_objdir/$libname.def~ + $ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~ + $ECHO "DATA MULTIPLE NONSHARED" >> $output_objdir/$libname.def~ + $ECHO EXPORTS >> $output_objdir/$libname.def~ + emxexp $libobjs | $SED /"_DLL_InitTerm"/d >> $output_objdir/$libname.def~ + $CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~ + emximp -o $lib $output_objdir/$libname.def' + _LT_TAGVAR(archive_expsym_cmds, $1)='$ECHO "LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE" > $output_objdir/$libname.def~ + $ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~ + $ECHO "DATA MULTIPLE NONSHARED" >> $output_objdir/$libname.def~ + $ECHO EXPORTS >> $output_objdir/$libname.def~ + prefix_cmds="$SED"~ + if test EXPORTS = "`$SED 1q $export_symbols`"; then + prefix_cmds="$prefix_cmds -e 1d"; + fi~ + prefix_cmds="$prefix_cmds -e \"s/^\(.*\)$/_\1/g\""~ + cat $export_symbols | $prefix_cmds >> $output_objdir/$libname.def~ + $CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~ + emximp -o $lib $output_objdir/$libname.def' + _LT_TAGVAR(old_archive_From_new_cmds, $1)='emximp -o $output_objdir/${libname}_dll.a $output_objdir/$libname.def' + _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes + ;; + interix[[3-9]]*) _LT_TAGVAR(hardcode_direct, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=no - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' - _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath,$libdir' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-E' # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc. # Instead, shared libraries are loaded at an image base (0x10000000 by # default) and relocated if they conflict, which is a slow very memory # consuming and fragmenting process. To avoid this, we pick a random, # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link # time. Moving up from 0x10000000 also allows more sbrk(2) space. - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' - _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' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-h,$soname $wl--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' + _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' ;; gnu* | linux* | tpf* | k*bsd*-gnu | kopensolaris*-gnu) tmp_diet=no - if test "$host_os" = linux-dietlibc; then + if test linux-dietlibc = "$host_os"; then case $cc_basename in diet\ *) tmp_diet=yes;; # linux-dietlibc with static linking (!diet-dyn) esac fi if $LD --help 2>&1 | $EGREP ': supported targets:.* elf' > /dev/null \ - && test "$tmp_diet" = no + && test no = "$tmp_diet" then tmp_addflag=' $pic_flag' tmp_sharedflag='-shared' case $cc_basename,$host_cpu in pgcc*) # Portland Group C compiler - _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' + _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` $wl--no-whole-archive' tmp_addflag=' $pic_flag' ;; pgf77* | pgf90* | pgf95* | pgfortran*) # Portland Group f77 and f90 compilers - _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' + _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` $wl--no-whole-archive' tmp_addflag=' $pic_flag -Mnomain' ;; ecc*,ia64* | icc*,ia64*) # Intel C compiler on ia64 tmp_addflag=' -i_dynamic' ;; @@ -4834,42 +5220,47 @@ lf95*) # Lahey Fortran 8.1 _LT_TAGVAR(whole_archive_flag_spec, $1)= tmp_sharedflag='--shared' ;; + nagfor*) # NAGFOR 5.3 + tmp_sharedflag='-Wl,-shared' ;; xl[[cC]]* | bgxl[[cC]]* | mpixl[[cC]]*) # IBM XL C 8.0 on PPC (deal with xlf below) tmp_sharedflag='-qmkshrobj' tmp_addflag= ;; nvcc*) # Cuda Compiler Driver 2.2 - _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' + _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` $wl--no-whole-archive' _LT_TAGVAR(compiler_needs_object, $1)=yes ;; esac case `$CC -V 2>&1 | sed 5q` in *Sun\ C*) # Sun C 5.9 - _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' + _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` $wl--no-whole-archive' _LT_TAGVAR(compiler_needs_object, $1)=yes tmp_sharedflag='-G' ;; *Sun\ F*) # Sun Fortran 8.3 tmp_sharedflag='-G' ;; esac - _LT_TAGVAR(archive_cmds, $1)='$CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + _LT_TAGVAR(archive_cmds, $1)='$CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' - if test "x$supports_anon_versioning" = xyes; then + if test yes = "$supports_anon_versioning"; then _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $output_objdir/$libname.ver~ - cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ - echo "local: *; };" >> $output_objdir/$libname.ver~ - $CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script ${wl}$output_objdir/$libname.ver -o $lib' + cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ + echo "local: *; };" >> $output_objdir/$libname.ver~ + $CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-version-script $wl$output_objdir/$libname.ver -o $lib' fi case $cc_basename in + tcc*) + _LT_TAGVAR(export_dynamic_flag_spec, $1)='-rdynamic' + ;; xlf* | bgf* | bgxlf* | mpixlf*) # IBM XL Fortran 10.1 on PPC cannot create shared libs itself _LT_TAGVAR(whole_archive_flag_spec, $1)='--whole-archive$convenience --no-whole-archive' - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir' _LT_TAGVAR(archive_cmds, $1)='$LD -shared $libobjs $deplibs $linker_flags -soname $soname -o $lib' - if test "x$supports_anon_versioning" = xyes; then + if test yes = "$supports_anon_versioning"; then _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $output_objdir/$libname.ver~ - cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ - echo "local: *; };" >> $output_objdir/$libname.ver~ - $LD -shared $libobjs $deplibs $linker_flags -soname $soname -version-script $output_objdir/$libname.ver -o $lib' + cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ + echo "local: *; };" >> $output_objdir/$libname.ver~ + $LD -shared $libobjs $deplibs $linker_flags -soname $soname -version-script $output_objdir/$libname.ver -o $lib' fi ;; esac @@ -4883,8 +5274,8 @@ _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable $libobjs $deplibs $linker_flags -o $lib' wlarc= else - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' fi ;; @@ -4902,8 +5293,8 @@ _LT_EOF elif $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' else _LT_TAGVAR(ld_shlibs, $1)=no fi @@ -4915,7 +5306,7 @@ _LT_TAGVAR(ld_shlibs, $1)=no cat <<_LT_EOF 1>&2 -*** Warning: Releases of the GNU linker prior to 2.16.91.0.3 can not +*** Warning: Releases of the GNU linker prior to 2.16.91.0.3 cannot *** reliably create shared libraries on SCO systems. Therefore, libtool *** is disabling shared libraries support. We urge you to upgrade GNU *** binutils to release 2.16.91.0.3 or newer. Another option is to modify @@ -4930,9 +5321,9 @@ # DT_RUNPATH tag from executables and libraries. But doing so # requires that you compile everything twice, which is a pain. if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' else _LT_TAGVAR(ld_shlibs, $1)=no fi @@ -4949,15 +5340,15 @@ *) if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' else _LT_TAGVAR(ld_shlibs, $1)=no fi ;; esac - if test "$_LT_TAGVAR(ld_shlibs, $1)" = no; then + if test no = "$_LT_TAGVAR(ld_shlibs, $1)"; then runpath_var= _LT_TAGVAR(hardcode_libdir_flag_spec, $1)= _LT_TAGVAR(export_dynamic_flag_spec, $1)= @@ -4973,7 +5364,7 @@ # Note: this linker hardcodes the directories in LIBPATH if there # are no directories specified by -L. _LT_TAGVAR(hardcode_minus_L, $1)=yes - if test "$GCC" = yes && test -z "$lt_prog_compiler_static"; then + if test yes = "$GCC" && test -z "$lt_prog_compiler_static"; then # Neither direct hardcoding nor static linking is supported with a # broken collect2. _LT_TAGVAR(hardcode_direct, $1)=unsupported @@ -4981,34 +5372,57 @@ ;; aix[[4-9]]*) - if test "$host_cpu" = ia64; then + if test ia64 = "$host_cpu"; then # On IA64, the linker does run time linking by default, so we don't # have to do anything special. aix_use_runtimelinking=no exp_sym_flag='-Bexport' - no_entry_flag="" + no_entry_flag= else # If we're using GNU nm, then we don't want the "-C" option. - # -C means demangle to AIX nm, but means don't demangle with GNU nm - # Also, AIX nm treats weak defined symbols like other global - # defined symbols, whereas GNU nm marks them as "W". + # -C means demangle to GNU nm, but means don't demangle to AIX nm. + # Without the "-l" option, or with the "-B" option, AIX nm treats + # weak defined symbols like other global defined symbols, whereas + # GNU nm marks them as "W". + # While the 'weak' keyword is ignored in the Export File, we need + # it in the Import File for the 'aix-soname' feature, so we have + # to replace the "-B" option with "-P" for AIX nm. if $NM -V 2>&1 | $GREP 'GNU' > /dev/null; then - _LT_TAGVAR(export_symbols_cmds, $1)='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W")) && ([substr](\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols' + _LT_TAGVAR(export_symbols_cmds, $1)='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W")) && ([substr](\$ 3,1,1) != ".")) { if (\$ 2 == "W") { print \$ 3 " weak" } else { print \$ 3 } } }'\'' | sort -u > $export_symbols' else - _LT_TAGVAR(export_symbols_cmds, $1)='$NM -BCpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B")) && ([substr](\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols' + _LT_TAGVAR(export_symbols_cmds, $1)='`func_echo_all $NM | $SED -e '\''s/B\([[^B]]*\)$/P\1/'\''` -PCpgl $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W") || (\$ 2 == "V") || (\$ 2 == "Z")) && ([substr](\$ 1,1,1) != ".")) { if ((\$ 2 == "W") || (\$ 2 == "V") || (\$ 2 == "Z")) { print \$ 1 " weak" } else { print \$ 1 } } }'\'' | sort -u > $export_symbols' fi aix_use_runtimelinking=no # Test if we are trying to use run time linking or normal # AIX style linking. If -brtl is somewhere in LDFLAGS, we - # need to do runtime linking. + # have runtime linking enabled, and use it for executables. + # For shared libraries, we enable/disable runtime linking + # depending on the kind of the shared library created - + # when "with_aix_soname,aix_use_runtimelinking" is: + # "aix,no" lib.a(lib.so.V) shared, rtl:no, for executables + # "aix,yes" lib.so shared, rtl:yes, for executables + # lib.a static archive + # "both,no" lib.so.V(shr.o) shared, rtl:yes + # lib.a(lib.so.V) shared, rtl:no, for executables + # "both,yes" lib.so.V(shr.o) shared, rtl:yes, for executables + # lib.a(lib.so.V) shared, rtl:no + # "svr4,*" lib.so.V(shr.o) shared, rtl:yes, for executables + # lib.a static archive case $host_os in aix4.[[23]]|aix4.[[23]].*|aix[[5-9]]*) for ld_flag in $LDFLAGS; do - if (test $ld_flag = "-brtl" || test $ld_flag = "-Wl,-brtl"); then + if (test x-brtl = "x$ld_flag" || test x-Wl,-brtl = "x$ld_flag"); then aix_use_runtimelinking=yes break fi done + if test svr4,no = "$with_aix_soname,$aix_use_runtimelinking"; then + # With aix-soname=svr4, we create the lib.so.V shared archives only, + # so we don't have lib.a shared libs to link our executables. + # We have to force runtime linking in this case. + aix_use_runtimelinking=yes + LDFLAGS="$LDFLAGS -Wl,-brtl" + fi ;; esac @@ -5027,13 +5441,21 @@ _LT_TAGVAR(hardcode_direct_absolute, $1)=yes _LT_TAGVAR(hardcode_libdir_separator, $1)=':' _LT_TAGVAR(link_all_deplibs, $1)=yes - _LT_TAGVAR(file_list_spec, $1)='${wl}-f,' + _LT_TAGVAR(file_list_spec, $1)='$wl-f,' + case $with_aix_soname,$aix_use_runtimelinking in + aix,*) ;; # traditional, no import file + svr4,* | *,yes) # use import file + # The Import File defines what to hardcode. + _LT_TAGVAR(hardcode_direct, $1)=no + _LT_TAGVAR(hardcode_direct_absolute, $1)=no + ;; + esac - if test "$GCC" = yes; then + if test yes = "$GCC"; then case $host_os in aix4.[[012]]|aix4.[[012]].*) # We only want to do this on AIX 4.2 and lower, the check # below for broken collect2 doesn't work under 4.3+ - collect2name=`${CC} -print-prog-name=collect2` + collect2name=`$CC -print-prog-name=collect2` if test -f "$collect2name" && strings "$collect2name" | $GREP resolve_lib_name >/dev/null then @@ -5052,62 +5474,80 @@ ;; esac shared_flag='-shared' - if test "$aix_use_runtimelinking" = yes; then - shared_flag="$shared_flag "'${wl}-G' + if test yes = "$aix_use_runtimelinking"; then + shared_flag="$shared_flag "'$wl-G' fi - _LT_TAGVAR(link_all_deplibs, $1)=no + # Need to ensure runtime linking is disabled for the traditional + # shared library, or the linker may eventually find shared libraries + # /with/ Import File - we do not want to mix them. + shared_flag_aix='-shared' + shared_flag_svr4='-shared $wl-G' else # not using gcc - if test "$host_cpu" = ia64; then + if test ia64 = "$host_cpu"; then # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release # chokes on -Wl,-G. The following line is correct: shared_flag='-G' else - if test "$aix_use_runtimelinking" = yes; then - shared_flag='${wl}-G' + if test yes = "$aix_use_runtimelinking"; then + shared_flag='$wl-G' else - shared_flag='${wl}-bM:SRE' + shared_flag='$wl-bM:SRE' fi + shared_flag_aix='$wl-bM:SRE' + shared_flag_svr4='$wl-G' fi fi - _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-bexpall' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-bexpall' # It seems that -bexpall does not export symbols beginning with # underscore (_), so it is better to generate a list of symbols to export. _LT_TAGVAR(always_export_symbols, $1)=yes - if test "$aix_use_runtimelinking" = yes; then + if test aix,yes = "$with_aix_soname,$aix_use_runtimelinking"; then # Warning - without using the other runtime loading flags (-brtl), # -berok will link without error, but may produce a broken library. _LT_TAGVAR(allow_undefined_flag, $1)='-berok' # Determine the default libpath from the value encoded in an # empty executable. _LT_SYS_MODULE_PATH_AIX([$1]) - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath" - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then func_echo_all "${wl}${allow_undefined_flag}"; else :; fi` '"\${wl}$exp_sym_flag:\$export_symbols $shared_flag" + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-blibpath:$libdir:'"$aix_libpath" + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -o $output_objdir/$soname $libobjs $deplibs $wl'$no_entry_flag' $compiler_flags `if test -n "$allow_undefined_flag"; then func_echo_all "$wl$allow_undefined_flag"; else :; fi` $wl'$exp_sym_flag:\$export_symbols' '$shared_flag else - if test "$host_cpu" = ia64; then - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R $libdir:/usr/lib:/lib' + if test ia64 = "$host_cpu"; then + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-R $libdir:/usr/lib:/lib' _LT_TAGVAR(allow_undefined_flag, $1)="-z nodefs" - _LT_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags ${wl}${allow_undefined_flag} '"\${wl}$exp_sym_flag:\$export_symbols" + _LT_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\$wl$no_entry_flag"' $compiler_flags $wl$allow_undefined_flag '"\$wl$exp_sym_flag:\$export_symbols" else # Determine the default libpath from the value encoded in an # empty executable. _LT_SYS_MODULE_PATH_AIX([$1]) - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath" + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-blibpath:$libdir:'"$aix_libpath" # Warning - without using the other run time loading flags, # -berok will link without error, but may produce a broken library. - _LT_TAGVAR(no_undefined_flag, $1)=' ${wl}-bernotok' - _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-berok' - if test "$with_gnu_ld" = yes; then + _LT_TAGVAR(no_undefined_flag, $1)=' $wl-bernotok' + _LT_TAGVAR(allow_undefined_flag, $1)=' $wl-berok' + if test yes = "$with_gnu_ld"; then # We only use this code for GNU lds that support --whole-archive. - _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive$convenience ${wl}--no-whole-archive' + _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl--whole-archive$convenience $wl--no-whole-archive' else # Exported symbols can be pulled into shared objects from archives _LT_TAGVAR(whole_archive_flag_spec, $1)='$convenience' fi _LT_TAGVAR(archive_cmds_need_lc, $1)=yes - # This is similar to how AIX traditionally builds its shared libraries. - _LT_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs ${wl}-bnoentry $compiler_flags ${wl}-bE:$export_symbols${allow_undefined_flag}~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$soname' + _LT_TAGVAR(archive_expsym_cmds, $1)='$RM -r $output_objdir/$realname.d~$MKDIR $output_objdir/$realname.d' + # -brtl affects multiple linker settings, -berok does not and is overridden later + compiler_flags_filtered='`func_echo_all "$compiler_flags " | $SED -e "s%-brtl\\([[, ]]\\)%-berok\\1%g"`' + if test svr4 != "$with_aix_soname"; then + # This is similar to how AIX traditionally builds its shared libraries. + _LT_TAGVAR(archive_expsym_cmds, $1)="$_LT_TAGVAR(archive_expsym_cmds, $1)"'~$CC '$shared_flag_aix' -o $output_objdir/$realname.d/$soname $libobjs $deplibs $wl-bnoentry '$compiler_flags_filtered'$wl-bE:$export_symbols$allow_undefined_flag~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$realname.d/$soname' + fi + if test aix != "$with_aix_soname"; then + _LT_TAGVAR(archive_expsym_cmds, $1)="$_LT_TAGVAR(archive_expsym_cmds, $1)"'~$CC '$shared_flag_svr4' -o $output_objdir/$realname.d/$shared_archive_member_spec.o $libobjs $deplibs $wl-bnoentry '$compiler_flags_filtered'$wl-bE:$export_symbols$allow_undefined_flag~$STRIP -e $output_objdir/$realname.d/$shared_archive_member_spec.o~( func_echo_all "#! $soname($shared_archive_member_spec.o)"; if test shr_64 = "$shared_archive_member_spec"; then func_echo_all "# 64"; else func_echo_all "# 32"; fi; cat $export_symbols ) > $output_objdir/$realname.d/$shared_archive_member_spec.imp~$AR $AR_FLAGS $output_objdir/$soname $output_objdir/$realname.d/$shared_archive_member_spec.o $output_objdir/$realname.d/$shared_archive_member_spec.imp' + else + # used by -dlpreopen to get the symbols + _LT_TAGVAR(archive_expsym_cmds, $1)="$_LT_TAGVAR(archive_expsym_cmds, $1)"'~$MV $output_objdir/$realname.d/$soname $output_objdir' + fi + _LT_TAGVAR(archive_expsym_cmds, $1)="$_LT_TAGVAR(archive_expsym_cmds, $1)"'~$RM -r $output_objdir/$realname.d' fi fi ;; @@ -5116,7 +5556,7 @@ case $host_cpu in powerpc) # see comment about AmigaOS4 .so support - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='' ;; m68k) @@ -5146,16 +5586,17 @@ # Tell ltmain to make .lib files, not .a files. libext=lib # Tell ltmain to make .dll files, not .so files. - shrext_cmds=".dll" + shrext_cmds=.dll # FIXME: Setting linknames here is a bad hack. - _LT_TAGVAR(archive_cmds, $1)='$CC -o $output_objdir/$soname $libobjs $compiler_flags $deplibs -Wl,-dll~linknames=' - _LT_TAGVAR(archive_expsym_cmds, $1)='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then - sed -n -e 's/\\\\\\\(.*\\\\\\\)/-link\\\ -EXPORT:\\\\\\\1/' -e '1\\\!p' < $export_symbols > $output_objdir/$soname.exp; - else - sed -e 's/\\\\\\\(.*\\\\\\\)/-link\\\ -EXPORT:\\\\\\\1/' < $export_symbols > $output_objdir/$soname.exp; - fi~ - $CC -o $tool_output_objdir$soname $libobjs $compiler_flags $deplibs "@$tool_output_objdir$soname.exp" -Wl,-DLL,-IMPLIB:"$tool_output_objdir$libname.dll.lib"~ - linknames=' + _LT_TAGVAR(archive_cmds, $1)='$CC -o $output_objdir/$soname $libobjs $compiler_flags $deplibs -Wl,-DLL,-IMPLIB:"$tool_output_objdir$libname.dll.lib"~linknames=' + _LT_TAGVAR(archive_expsym_cmds, $1)='if _LT_DLL_DEF_P([$export_symbols]); then + cp "$export_symbols" "$output_objdir/$soname.def"; + echo "$tool_output_objdir$soname.def" > "$output_objdir/$soname.exp"; + else + $SED -e '\''s/^/-link -EXPORT:/'\'' < $export_symbols > $output_objdir/$soname.exp; + fi~ + $CC -o $tool_output_objdir$soname $libobjs $compiler_flags $deplibs "@$tool_output_objdir$soname.exp" -Wl,-DLL,-IMPLIB:"$tool_output_objdir$libname.dll.lib"~ + linknames=' # The linker will not automatically build a static lib if we build a DLL. # _LT_TAGVAR(old_archive_from_new_cmds, $1)='true' _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes @@ -5164,18 +5605,18 @@ # Don't use ranlib _LT_TAGVAR(old_postinstall_cmds, $1)='chmod 644 $oldlib' _LT_TAGVAR(postlink_cmds, $1)='lt_outputfile="@OUTPUT@"~ - lt_tool_outputfile="@TOOL_OUTPUT@"~ - case $lt_outputfile in - *.exe|*.EXE) ;; - *) - lt_outputfile="$lt_outputfile.exe" - lt_tool_outputfile="$lt_tool_outputfile.exe" - ;; - esac~ - if test "$MANIFEST_TOOL" != ":" && test -f "$lt_outputfile.manifest"; then - $MANIFEST_TOOL -manifest "$lt_tool_outputfile.manifest" -outputresource:"$lt_tool_outputfile" || exit 1; - $RM "$lt_outputfile.manifest"; - fi' + lt_tool_outputfile="@TOOL_OUTPUT@"~ + case $lt_outputfile in + *.exe|*.EXE) ;; + *) + lt_outputfile=$lt_outputfile.exe + lt_tool_outputfile=$lt_tool_outputfile.exe + ;; + esac~ + if test : != "$MANIFEST_TOOL" && test -f "$lt_outputfile.manifest"; then + $MANIFEST_TOOL -manifest "$lt_tool_outputfile.manifest" -outputresource:"$lt_tool_outputfile" || exit 1; + $RM "$lt_outputfile.manifest"; + fi' ;; *) # Assume MSVC wrapper @@ -5184,7 +5625,7 @@ # Tell ltmain to make .lib files, not .a files. libext=lib # Tell ltmain to make .dll files, not .so files. - shrext_cmds=".dll" + shrext_cmds=.dll # FIXME: Setting linknames here is a bad hack. _LT_TAGVAR(archive_cmds, $1)='$CC -o $lib $libobjs $compiler_flags `func_echo_all "$deplibs" | $SED '\''s/ -lc$//'\''` -link -dll~linknames=' # The linker will automatically build a .lib file if we build a DLL. @@ -5234,33 +5675,33 @@ ;; hpux9*) - if test "$GCC" = yes; then - _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$CC -shared $pic_flag ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $libobjs $deplibs $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' + if test yes = "$GCC"; then + _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$CC -shared $pic_flag $wl+b $wl$install_libdir -o $output_objdir/$soname $libobjs $deplibs $compiler_flags~test "x$output_objdir/$soname" = "x$lib" || mv $output_objdir/$soname $lib' else - _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$LD -b +b $install_libdir -o $output_objdir/$soname $libobjs $deplibs $linker_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' + _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$LD -b +b $install_libdir -o $output_objdir/$soname $libobjs $deplibs $linker_flags~test "x$output_objdir/$soname" = "x$lib" || mv $output_objdir/$soname $lib' fi - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl+b $wl$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: _LT_TAGVAR(hardcode_direct, $1)=yes # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. _LT_TAGVAR(hardcode_minus_L, $1)=yes - _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-E' ;; hpux10*) - if test "$GCC" = yes && test "$with_gnu_ld" = no; then - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' + if test yes,no = "$GCC,$with_gnu_ld"; then + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $wl+h $wl$soname $wl+b $wl$install_libdir -o $lib $libobjs $deplibs $compiler_flags' else _LT_TAGVAR(archive_cmds, $1)='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags' fi - if test "$with_gnu_ld" = no; then - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' + if test no = "$with_gnu_ld"; then + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl+b $wl$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_direct_absolute, $1)=yes - _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-E' # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. _LT_TAGVAR(hardcode_minus_L, $1)=yes @@ -5268,25 +5709,25 @@ ;; hpux11*) - if test "$GCC" = yes && test "$with_gnu_ld" = no; then + if test yes,no = "$GCC,$with_gnu_ld"; then case $host_cpu in hppa*64*) - _LT_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $wl+h $wl$soname -o $lib $libobjs $deplibs $compiler_flags' ;; ia64*) - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $wl+h $wl$soname $wl+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' ;; *) - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $wl+h $wl$soname $wl+b $wl$install_libdir -o $lib $libobjs $deplibs $compiler_flags' ;; esac else case $host_cpu in hppa*64*) - _LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_cmds, $1)='$CC -b $wl+h $wl$soname -o $lib $libobjs $deplibs $compiler_flags' ;; ia64*) - _LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_cmds, $1)='$CC -b $wl+h $wl$soname $wl+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' ;; *) m4_if($1, [], [ @@ -5294,14 +5735,14 @@ # (HP92453-01 A.11.01.20 doesn't, HP92453-01 B.11.X.35175-35176.GP does) _LT_LINKER_OPTION([if $CC understands -b], _LT_TAGVAR(lt_cv_prog_compiler__b, $1), [-b], - [_LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags'], + [_LT_TAGVAR(archive_cmds, $1)='$CC -b $wl+h $wl$soname $wl+b $wl$install_libdir -o $lib $libobjs $deplibs $compiler_flags'], [_LT_TAGVAR(archive_cmds, $1)='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags'])], - [_LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags']) + [_LT_TAGVAR(archive_cmds, $1)='$CC -b $wl+h $wl$soname $wl+b $wl$install_libdir -o $lib $libobjs $deplibs $compiler_flags']) ;; esac fi - if test "$with_gnu_ld" = no; then - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' + if test no = "$with_gnu_ld"; then + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl+b $wl$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: case $host_cpu in @@ -5312,7 +5753,7 @@ *) _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_direct_absolute, $1)=yes - _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-E' # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. @@ -5323,16 +5764,16 @@ ;; irix5* | irix6* | nonstopux*) - if test "$GCC" = yes; then - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' + if test yes = "$GCC"; then + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations -o $lib' # Try to use the -exported_symbol ld option, if it does not # work, assume that -exports_file does not work either and # implicitly export all symbols. # This should be the same for all languages, so no per-tag cache variable. AC_CACHE_CHECK([whether the $host_os linker accepts -exported_symbol], [lt_cv_irix_exported_symbol], - [save_LDFLAGS="$LDFLAGS" - LDFLAGS="$LDFLAGS -shared ${wl}-exported_symbol ${wl}foo ${wl}-update_registry ${wl}/dev/null" + [save_LDFLAGS=$LDFLAGS + LDFLAGS="$LDFLAGS -shared $wl-exported_symbol ${wl}foo $wl-update_registry $wl/dev/null" AC_LINK_IFELSE( [AC_LANG_SOURCE( [AC_LANG_CASE([C], [[int foo (void) { return 0; }]], @@ -5345,21 +5786,32 @@ end]])])], [lt_cv_irix_exported_symbol=yes], [lt_cv_irix_exported_symbol=no]) - LDFLAGS="$save_LDFLAGS"]) - if test "$lt_cv_irix_exported_symbol" = yes; then - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations ${wl}-exports_file ${wl}$export_symbols -o $lib' + LDFLAGS=$save_LDFLAGS]) + if test yes = "$lt_cv_irix_exported_symbol"; then + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations $wl-exports_file $wl$export_symbols -o $lib' fi + _LT_TAGVAR(link_all_deplibs, $1)=no else - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -exports_file $export_symbols -o $lib' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -exports_file $export_symbols -o $lib' fi _LT_TAGVAR(archive_cmds_need_lc, $1)='no' - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: _LT_TAGVAR(inherit_rpath, $1)=yes _LT_TAGVAR(link_all_deplibs, $1)=yes ;; + linux*) + case $cc_basename in + tcc*) + # Fabrice Bellard et al's Tiny C Compiler + _LT_TAGVAR(ld_shlibs, $1)=yes + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' + ;; + esac + ;; + netbsd* | netbsdelf*-gnu) if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' # a.out @@ -5374,7 +5826,7 @@ newsos6) _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_TAGVAR(hardcode_direct, $1)=yes - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; @@ -5382,27 +5834,19 @@ *nto* | *qnx*) ;; - openbsd*) + openbsd* | bitrig*) if test -f /usr/libexec/ld.so; then _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_shlibpath_var, $1)=no _LT_TAGVAR(hardcode_direct_absolute, $1)=yes - if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then + if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`"; then _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-retain-symbols-file,$export_symbols' - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' - _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags $wl-retain-symbols-file,$export_symbols' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath,$libdir' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-E' else - case $host_os in - openbsd[[01]].* | openbsd2.[[0-7]] | openbsd2.[[0-7]].*) - _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' - ;; - *) - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' - ;; - esac + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath,$libdir' fi else _LT_TAGVAR(ld_shlibs, $1)=no @@ -5413,33 +5857,53 @@ _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_TAGVAR(hardcode_minus_L, $1)=yes _LT_TAGVAR(allow_undefined_flag, $1)=unsupported - _LT_TAGVAR(archive_cmds, $1)='$ECHO "LIBRARY $libname INITINSTANCE" > $output_objdir/$libname.def~$ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~echo DATA >> $output_objdir/$libname.def~echo " SINGLE NONSHARED" >> $output_objdir/$libname.def~echo EXPORTS >> $output_objdir/$libname.def~emxexp $libobjs >> $output_objdir/$libname.def~$CC -Zdll -Zcrtdll -o $lib $libobjs $deplibs $compiler_flags $output_objdir/$libname.def' - _LT_TAGVAR(old_archive_from_new_cmds, $1)='emximp -o $output_objdir/$libname.a $output_objdir/$libname.def' + shrext_cmds=.dll + _LT_TAGVAR(archive_cmds, $1)='$ECHO "LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE" > $output_objdir/$libname.def~ + $ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~ + $ECHO "DATA MULTIPLE NONSHARED" >> $output_objdir/$libname.def~ + $ECHO EXPORTS >> $output_objdir/$libname.def~ + emxexp $libobjs | $SED /"_DLL_InitTerm"/d >> $output_objdir/$libname.def~ + $CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~ + emximp -o $lib $output_objdir/$libname.def' + _LT_TAGVAR(archive_expsym_cmds, $1)='$ECHO "LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE" > $output_objdir/$libname.def~ + $ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~ + $ECHO "DATA MULTIPLE NONSHARED" >> $output_objdir/$libname.def~ + $ECHO EXPORTS >> $output_objdir/$libname.def~ + prefix_cmds="$SED"~ + if test EXPORTS = "`$SED 1q $export_symbols`"; then + prefix_cmds="$prefix_cmds -e 1d"; + fi~ + prefix_cmds="$prefix_cmds -e \"s/^\(.*\)$/_\1/g\""~ + cat $export_symbols | $prefix_cmds >> $output_objdir/$libname.def~ + $CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~ + emximp -o $lib $output_objdir/$libname.def' + _LT_TAGVAR(old_archive_From_new_cmds, $1)='emximp -o $output_objdir/${libname}_dll.a $output_objdir/$libname.def' + _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes ;; osf3*) - if test "$GCC" = yes; then - _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*' - _LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' + if test yes = "$GCC"; then + _LT_TAGVAR(allow_undefined_flag, $1)=' $wl-expect_unresolved $wl\*' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared$allow_undefined_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations -o $lib' else _LT_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*' - _LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared$allow_undefined_flag $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib' fi _LT_TAGVAR(archive_cmds_need_lc, $1)='no' - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: ;; osf4* | osf5*) # as osf3* with the addition of -msym flag - if test "$GCC" = yes; then - _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*' - _LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $pic_flag $libobjs $deplibs $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' + if test yes = "$GCC"; then + _LT_TAGVAR(allow_undefined_flag, $1)=' $wl-expect_unresolved $wl\*' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared$allow_undefined_flag $pic_flag $libobjs $deplibs $compiler_flags $wl-msym $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations -o $lib' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir' else _LT_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*' - _LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags -msym -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared$allow_undefined_flag $libobjs $deplibs $compiler_flags -msym -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done; printf "%s\\n" "-hidden">> $lib.exp~ - $CC -shared${allow_undefined_flag} ${wl}-input ${wl}$lib.exp $compiler_flags $libobjs $deplibs -soname $soname `test -n "$verstring" && $ECHO "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib~$RM $lib.exp' + $CC -shared$allow_undefined_flag $wl-input $wl$lib.exp $compiler_flags $libobjs $deplibs -soname $soname `test -n "$verstring" && $ECHO "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib~$RM $lib.exp' # Both c and cxx compiler support -rpath directly _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir' @@ -5450,24 +5914,24 @@ solaris*) _LT_TAGVAR(no_undefined_flag, $1)=' -z defs' - if test "$GCC" = yes; then - wlarc='${wl}' - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag ${wl}-z ${wl}text ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' + if test yes = "$GCC"; then + wlarc='$wl' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $wl-z ${wl}text $wl-h $wl$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ - $CC -shared $pic_flag ${wl}-z ${wl}text ${wl}-M ${wl}$lib.exp ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp' + $CC -shared $pic_flag $wl-z ${wl}text $wl-M $wl$lib.exp $wl-h $wl$soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp' else case `$CC -V 2>&1` in *"Compilers 5.0"*) wlarc='' - _LT_TAGVAR(archive_cmds, $1)='$LD -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $linker_flags' + _LT_TAGVAR(archive_cmds, $1)='$LD -G$allow_undefined_flag -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ - $LD -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $linker_flags~$RM $lib.exp' + $LD -G$allow_undefined_flag -M $lib.exp -h $soname -o $lib $libobjs $deplibs $linker_flags~$RM $lib.exp' ;; *) - wlarc='${wl}' - _LT_TAGVAR(archive_cmds, $1)='$CC -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $compiler_flags' + wlarc='$wl' + _LT_TAGVAR(archive_cmds, $1)='$CC -G$allow_undefined_flag -h $soname -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ - $CC -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp' + $CC -G$allow_undefined_flag -M $lib.exp -h $soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp' ;; esac fi @@ -5477,11 +5941,11 @@ solaris2.[[0-5]] | solaris2.[[0-5]].*) ;; *) # The compiler driver will combine and reorder linker options, - # but understands `-z linker_flag'. GCC discards it without `$wl', + # but understands '-z linker_flag'. GCC discards it without '$wl', # but is careful enough not to reorder. # Supported since Solaris 2.6 (maybe 2.5.1?) - if test "$GCC" = yes; then - _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}-z ${wl}allextract$convenience ${wl}-z ${wl}defaultextract' + if test yes = "$GCC"; then + _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl-z ${wl}allextract$convenience $wl-z ${wl}defaultextract' else _LT_TAGVAR(whole_archive_flag_spec, $1)='-z allextract$convenience -z defaultextract' fi @@ -5491,10 +5955,10 @@ ;; sunos4*) - if test "x$host_vendor" = xsequent; then + if test sequent = "$host_vendor"; then # Use $CC to link under sequent, because it throws in some extra .o # files that make .init and .fini sections work. - _LT_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h $soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_cmds, $1)='$CC -G $wl-h $soname -o $lib $libobjs $deplibs $compiler_flags' else _LT_TAGVAR(archive_cmds, $1)='$LD -assert pure-text -Bstatic -o $lib $libobjs $deplibs $linker_flags' fi @@ -5543,43 +6007,43 @@ ;; sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[[01]].[[10]]* | unixware7* | sco3.2v5.0.[[024]]*) - _LT_TAGVAR(no_undefined_flag, $1)='${wl}-z,text' + _LT_TAGVAR(no_undefined_flag, $1)='$wl-z,text' _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=no runpath_var='LD_RUN_PATH' - if test "$GCC" = yes; then - _LT_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + if test yes = "$GCC"; then + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' else - _LT_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_cmds, $1)='$CC -G $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' fi ;; sysv5* | sco3.2v5* | sco5v6*) - # Note: We can NOT use -z defs as we might desire, because we do not + # Note: We CANNOT use -z defs as we might desire, because we do not # link with -lc, and that would cause any symbols used from libc to # always be unresolved, which means just about no library would # ever link correctly. If we're not using GNU ld we use -z text # though, which does catch some bad symbols but isn't as heavy-handed # as -z defs. - _LT_TAGVAR(no_undefined_flag, $1)='${wl}-z,text' - _LT_TAGVAR(allow_undefined_flag, $1)='${wl}-z,nodefs' + _LT_TAGVAR(no_undefined_flag, $1)='$wl-z,text' + _LT_TAGVAR(allow_undefined_flag, $1)='$wl-z,nodefs' _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=no - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R,$libdir' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-R,$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=':' _LT_TAGVAR(link_all_deplibs, $1)=yes - _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-Bexport' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-Bexport' runpath_var='LD_RUN_PATH' - if test "$GCC" = yes; then - _LT_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + if test yes = "$GCC"; then + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' else - _LT_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_cmds, $1)='$CC -G $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' fi ;; @@ -5594,17 +6058,17 @@ ;; esac - if test x$host_vendor = xsni; then + if test sni = "$host_vendor"; then case $host in sysv4 | sysv4.2uw2* | sysv4.3* | sysv5*) - _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-Blargedynsym' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-Blargedynsym' ;; esac fi fi ]) AC_MSG_RESULT([$_LT_TAGVAR(ld_shlibs, $1)]) -test "$_LT_TAGVAR(ld_shlibs, $1)" = no && can_build_shared=no +test no = "$_LT_TAGVAR(ld_shlibs, $1)" && can_build_shared=no _LT_TAGVAR(with_gnu_ld, $1)=$with_gnu_ld @@ -5621,7 +6085,7 @@ # Assume -lc should be added _LT_TAGVAR(archive_cmds_need_lc, $1)=yes - if test "$enable_shared" = yes && test "$GCC" = yes; then + if test yes,yes = "$GCC,$enable_shared"; then case $_LT_TAGVAR(archive_cmds, $1) in *'~'*) # FIXME: we may have to deal with multi-command sequences. @@ -5701,12 +6165,12 @@ _LT_TAGDECL([], [hardcode_libdir_separator], [1], [Whether we need a single "-rpath" flag with a separated argument]) _LT_TAGDECL([], [hardcode_direct], [0], - [Set to "yes" if using DIR/libNAME${shared_ext} during linking hardcodes + [Set to "yes" if using DIR/libNAME$shared_ext during linking hardcodes DIR into the resulting binary]) _LT_TAGDECL([], [hardcode_direct_absolute], [0], - [Set to "yes" if using DIR/libNAME${shared_ext} during linking hardcodes + [Set to "yes" if using DIR/libNAME$shared_ext during linking hardcodes DIR into the resulting binary and the resulting library dependency is - "absolute", i.e impossible to change by setting ${shlibpath_var} if the + "absolute", i.e impossible to change by setting $shlibpath_var if the library is relocated]) _LT_TAGDECL([], [hardcode_minus_L], [0], [Set to "yes" if using the -LDIR flag during linking hardcodes DIR @@ -5747,10 +6211,10 @@ # ------------------------ # Ensure that the configuration variables for a C compiler are suitably # defined. These variables are subsequently used by _LT_CONFIG to write -# the compiler configuration to `libtool'. +# the compiler configuration to 'libtool'. m4_defun([_LT_LANG_C_CONFIG], [m4_require([_LT_DECL_EGREP])dnl -lt_save_CC="$CC" +lt_save_CC=$CC AC_LANG_PUSH(C) # Source file extension for C test sources. @@ -5790,18 +6254,18 @@ LT_SYS_DLOPEN_SELF _LT_CMD_STRIPLIB - # Report which library types will actually be built + # Report what library types will actually be built AC_MSG_CHECKING([if libtool supports shared libraries]) AC_MSG_RESULT([$can_build_shared]) AC_MSG_CHECKING([whether to build shared libraries]) - test "$can_build_shared" = "no" && enable_shared=no + test no = "$can_build_shared" && enable_shared=no # On AIX, shared libraries and static libraries use the same namespace, and # are all built from PIC. case $host_os in aix3*) - test "$enable_shared" = yes && enable_static=no + test yes = "$enable_shared" && enable_static=no if test -n "$RANLIB"; then archive_cmds="$archive_cmds~\$RANLIB \$lib" postinstall_cmds='$RANLIB $lib' @@ -5809,8 +6273,12 @@ ;; aix[[4-9]]*) - if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then - test "$enable_shared" = yes && enable_static=no + if test ia64 != "$host_cpu"; then + case $enable_shared,$with_aix_soname,$aix_use_runtimelinking in + yes,aix,yes) ;; # shared object as lib.so file only + yes,svr4,*) ;; # shared object as lib.so archive member only + yes,*) enable_static=no ;; # shared object in lib.a archive as well + esac fi ;; esac @@ -5818,13 +6286,13 @@ AC_MSG_CHECKING([whether to build static libraries]) # Make sure either enable_shared or enable_static is yes. - test "$enable_shared" = yes || enable_static=yes + test yes = "$enable_shared" || enable_static=yes AC_MSG_RESULT([$enable_static]) _LT_CONFIG($1) fi AC_LANG_POP -CC="$lt_save_CC" +CC=$lt_save_CC ])# _LT_LANG_C_CONFIG @@ -5832,14 +6300,14 @@ # -------------------------- # Ensure that the configuration variables for a C++ compiler are suitably # defined. These variables are subsequently used by _LT_CONFIG to write -# the compiler configuration to `libtool'. +# the compiler configuration to 'libtool'. m4_defun([_LT_LANG_CXX_CONFIG], [m4_require([_LT_FILEUTILS_DEFAULTS])dnl m4_require([_LT_DECL_EGREP])dnl m4_require([_LT_PATH_MANIFEST_TOOL])dnl -if test -n "$CXX" && ( test "X$CXX" != "Xno" && - ( (test "X$CXX" = "Xg++" && `g++ -v >/dev/null 2>&1` ) || - (test "X$CXX" != "Xg++"))) ; then +if test -n "$CXX" && ( test no != "$CXX" && + ( (test g++ = "$CXX" && `g++ -v >/dev/null 2>&1` ) || + (test g++ != "$CXX"))); then AC_PROG_CXXCPP else _lt_caught_CXX_error=yes @@ -5881,7 +6349,7 @@ # the CXX compiler isn't working. Some variables (like enable_shared) # are currently assumed to apply to all compilers on this platform, # and will be corrupted by setting them based on a non-working compiler. -if test "$_lt_caught_CXX_error" != yes; then +if test yes != "$_lt_caught_CXX_error"; then # Code to be used in simple compile tests lt_simple_compile_test_code="int some_variable = 0;" @@ -5923,35 +6391,35 @@ if test -n "$compiler"; then # We don't want -fno-exception when compiling C++ code, so set the # no_builtin_flag separately - if test "$GXX" = yes; then + if test yes = "$GXX"; then _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=' -fno-builtin' else _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)= fi - if test "$GXX" = yes; then + if test yes = "$GXX"; then # Set up default GNU C++ configuration LT_PATH_LD # Check if GNU C++ uses GNU ld as the underlying linker, since the # archiving commands below assume that GNU ld is being used. - if test "$with_gnu_ld" = yes; then - _LT_TAGVAR(archive_cmds, $1)='$CC $pic_flag -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib' - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC $pic_flag -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' + if test yes = "$with_gnu_ld"; then + _LT_TAGVAR(archive_cmds, $1)='$CC $pic_flag -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC $pic_flag -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' - _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl--export-dynamic' # If archive_cmds runs LD, not CC, wlarc should be empty # XXX I think wlarc can be eliminated in ltcf-cxx, but I need to # investigate it a little bit more. (MM) - wlarc='${wl}' + wlarc='$wl' # ancient GNU ld didn't support --whole-archive et. al. if eval "`$CC -print-prog-name=ld` --help 2>&1" | $GREP 'no-whole-archive' > /dev/null; then - _LT_TAGVAR(whole_archive_flag_spec, $1)="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' + _LT_TAGVAR(whole_archive_flag_spec, $1)=$wlarc'--whole-archive$convenience '$wlarc'--no-whole-archive' else _LT_TAGVAR(whole_archive_flag_spec, $1)= fi @@ -5970,7 +6438,7 @@ # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. - output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP "\-L"' + output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP " \-L"' else GXX=no @@ -5987,18 +6455,30 @@ _LT_TAGVAR(ld_shlibs, $1)=no ;; aix[[4-9]]*) - if test "$host_cpu" = ia64; then + if test ia64 = "$host_cpu"; then # On IA64, the linker does run time linking by default, so we don't # have to do anything special. aix_use_runtimelinking=no exp_sym_flag='-Bexport' - no_entry_flag="" + no_entry_flag= else aix_use_runtimelinking=no # Test if we are trying to use run time linking or normal # AIX style linking. If -brtl is somewhere in LDFLAGS, we - # need to do runtime linking. + # have runtime linking enabled, and use it for executables. + # For shared libraries, we enable/disable runtime linking + # depending on the kind of the shared library created - + # when "with_aix_soname,aix_use_runtimelinking" is: + # "aix,no" lib.a(lib.so.V) shared, rtl:no, for executables + # "aix,yes" lib.so shared, rtl:yes, for executables + # lib.a static archive + # "both,no" lib.so.V(shr.o) shared, rtl:yes + # lib.a(lib.so.V) shared, rtl:no, for executables + # "both,yes" lib.so.V(shr.o) shared, rtl:yes, for executables + # lib.a(lib.so.V) shared, rtl:no + # "svr4,*" lib.so.V(shr.o) shared, rtl:yes, for executables + # lib.a static archive case $host_os in aix4.[[23]]|aix4.[[23]].*|aix[[5-9]]*) for ld_flag in $LDFLAGS; do case $ld_flag in @@ -6008,6 +6488,13 @@ ;; esac done + if test svr4,no = "$with_aix_soname,$aix_use_runtimelinking"; then + # With aix-soname=svr4, we create the lib.so.V shared archives only, + # so we don't have lib.a shared libs to link our executables. + # We have to force runtime linking in this case. + aix_use_runtimelinking=yes + LDFLAGS="$LDFLAGS -Wl,-brtl" + fi ;; esac @@ -6026,13 +6513,21 @@ _LT_TAGVAR(hardcode_direct_absolute, $1)=yes _LT_TAGVAR(hardcode_libdir_separator, $1)=':' _LT_TAGVAR(link_all_deplibs, $1)=yes - _LT_TAGVAR(file_list_spec, $1)='${wl}-f,' + _LT_TAGVAR(file_list_spec, $1)='$wl-f,' + case $with_aix_soname,$aix_use_runtimelinking in + aix,*) ;; # no import file + svr4,* | *,yes) # use import file + # The Import File defines what to hardcode. + _LT_TAGVAR(hardcode_direct, $1)=no + _LT_TAGVAR(hardcode_direct_absolute, $1)=no + ;; + esac - if test "$GXX" = yes; then + if test yes = "$GXX"; then case $host_os in aix4.[[012]]|aix4.[[012]].*) # We only want to do this on AIX 4.2 and lower, the check # below for broken collect2 doesn't work under 4.3+ - collect2name=`${CC} -print-prog-name=collect2` + collect2name=`$CC -print-prog-name=collect2` if test -f "$collect2name" && strings "$collect2name" | $GREP resolve_lib_name >/dev/null then @@ -6050,64 +6545,84 @@ fi esac shared_flag='-shared' - if test "$aix_use_runtimelinking" = yes; then - shared_flag="$shared_flag "'${wl}-G' + if test yes = "$aix_use_runtimelinking"; then + shared_flag=$shared_flag' $wl-G' fi + # Need to ensure runtime linking is disabled for the traditional + # shared library, or the linker may eventually find shared libraries + # /with/ Import File - we do not want to mix them. + shared_flag_aix='-shared' + shared_flag_svr4='-shared $wl-G' else # not using gcc - if test "$host_cpu" = ia64; then + if test ia64 = "$host_cpu"; then # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release # chokes on -Wl,-G. The following line is correct: shared_flag='-G' else - if test "$aix_use_runtimelinking" = yes; then - shared_flag='${wl}-G' + if test yes = "$aix_use_runtimelinking"; then + shared_flag='$wl-G' else - shared_flag='${wl}-bM:SRE' + shared_flag='$wl-bM:SRE' fi + shared_flag_aix='$wl-bM:SRE' + shared_flag_svr4='$wl-G' fi fi - _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-bexpall' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-bexpall' # It seems that -bexpall does not export symbols beginning with # underscore (_), so it is better to generate a list of symbols to # export. _LT_TAGVAR(always_export_symbols, $1)=yes - if test "$aix_use_runtimelinking" = yes; then + if test aix,yes = "$with_aix_soname,$aix_use_runtimelinking"; then # Warning - without using the other runtime loading flags (-brtl), # -berok will link without error, but may produce a broken library. - _LT_TAGVAR(allow_undefined_flag, $1)='-berok' + # The "-G" linker flag allows undefined symbols. + _LT_TAGVAR(no_undefined_flag, $1)='-bernotok' # Determine the default libpath from the value encoded in an empty # executable. _LT_SYS_MODULE_PATH_AIX([$1]) - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath" + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-blibpath:$libdir:'"$aix_libpath" - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then func_echo_all "${wl}${allow_undefined_flag}"; else :; fi` '"\${wl}$exp_sym_flag:\$export_symbols $shared_flag" + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -o $output_objdir/$soname $libobjs $deplibs $wl'$no_entry_flag' $compiler_flags `if test -n "$allow_undefined_flag"; then func_echo_all "$wl$allow_undefined_flag"; else :; fi` $wl'$exp_sym_flag:\$export_symbols' '$shared_flag else - if test "$host_cpu" = ia64; then - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R $libdir:/usr/lib:/lib' + if test ia64 = "$host_cpu"; then + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-R $libdir:/usr/lib:/lib' _LT_TAGVAR(allow_undefined_flag, $1)="-z nodefs" - _LT_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags ${wl}${allow_undefined_flag} '"\${wl}$exp_sym_flag:\$export_symbols" + _LT_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\$wl$no_entry_flag"' $compiler_flags $wl$allow_undefined_flag '"\$wl$exp_sym_flag:\$export_symbols" else # Determine the default libpath from the value encoded in an # empty executable. _LT_SYS_MODULE_PATH_AIX([$1]) - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath" + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-blibpath:$libdir:'"$aix_libpath" # Warning - without using the other run time loading flags, # -berok will link without error, but may produce a broken library. - _LT_TAGVAR(no_undefined_flag, $1)=' ${wl}-bernotok' - _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-berok' - if test "$with_gnu_ld" = yes; then + _LT_TAGVAR(no_undefined_flag, $1)=' $wl-bernotok' + _LT_TAGVAR(allow_undefined_flag, $1)=' $wl-berok' + if test yes = "$with_gnu_ld"; then # We only use this code for GNU lds that support --whole-archive. - _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive$convenience ${wl}--no-whole-archive' + _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl--whole-archive$convenience $wl--no-whole-archive' else # Exported symbols can be pulled into shared objects from archives _LT_TAGVAR(whole_archive_flag_spec, $1)='$convenience' fi _LT_TAGVAR(archive_cmds_need_lc, $1)=yes - # This is similar to how AIX traditionally builds its shared - # libraries. - _LT_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs ${wl}-bnoentry $compiler_flags ${wl}-bE:$export_symbols${allow_undefined_flag}~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$soname' + _LT_TAGVAR(archive_expsym_cmds, $1)='$RM -r $output_objdir/$realname.d~$MKDIR $output_objdir/$realname.d' + # -brtl affects multiple linker settings, -berok does not and is overridden later + compiler_flags_filtered='`func_echo_all "$compiler_flags " | $SED -e "s%-brtl\\([[, ]]\\)%-berok\\1%g"`' + if test svr4 != "$with_aix_soname"; then + # This is similar to how AIX traditionally builds its shared + # libraries. Need -bnortl late, we may have -brtl in LDFLAGS. + _LT_TAGVAR(archive_expsym_cmds, $1)="$_LT_TAGVAR(archive_expsym_cmds, $1)"'~$CC '$shared_flag_aix' -o $output_objdir/$realname.d/$soname $libobjs $deplibs $wl-bnoentry '$compiler_flags_filtered'$wl-bE:$export_symbols$allow_undefined_flag~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$realname.d/$soname' + fi + if test aix != "$with_aix_soname"; then + _LT_TAGVAR(archive_expsym_cmds, $1)="$_LT_TAGVAR(archive_expsym_cmds, $1)"'~$CC '$shared_flag_svr4' -o $output_objdir/$realname.d/$shared_archive_member_spec.o $libobjs $deplibs $wl-bnoentry '$compiler_flags_filtered'$wl-bE:$export_symbols$allow_undefined_flag~$STRIP -e $output_objdir/$realname.d/$shared_archive_member_spec.o~( func_echo_all "#! $soname($shared_archive_member_spec.o)"; if test shr_64 = "$shared_archive_member_spec"; then func_echo_all "# 64"; else func_echo_all "# 32"; fi; cat $export_symbols ) > $output_objdir/$realname.d/$shared_archive_member_spec.imp~$AR $AR_FLAGS $output_objdir/$soname $output_objdir/$realname.d/$shared_archive_member_spec.o $output_objdir/$realname.d/$shared_archive_member_spec.imp' + else + # used by -dlpreopen to get the symbols + _LT_TAGVAR(archive_expsym_cmds, $1)="$_LT_TAGVAR(archive_expsym_cmds, $1)"'~$MV $output_objdir/$realname.d/$soname $output_objdir' + fi + _LT_TAGVAR(archive_expsym_cmds, $1)="$_LT_TAGVAR(archive_expsym_cmds, $1)"'~$RM -r $output_objdir/$realname.d' fi fi ;; @@ -6117,7 +6632,7 @@ _LT_TAGVAR(allow_undefined_flag, $1)=unsupported # Joseph Beckenbach says some releases of gcc # support --undefined. This deserves some investigation. FIXME - _LT_TAGVAR(archive_cmds, $1)='$CC -nostart $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + _LT_TAGVAR(archive_cmds, $1)='$CC -nostart $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' else _LT_TAGVAR(ld_shlibs, $1)=no fi @@ -6145,57 +6660,58 @@ # Tell ltmain to make .lib files, not .a files. libext=lib # Tell ltmain to make .dll files, not .so files. - shrext_cmds=".dll" + shrext_cmds=.dll # FIXME: Setting linknames here is a bad hack. - _LT_TAGVAR(archive_cmds, $1)='$CC -o $output_objdir/$soname $libobjs $compiler_flags $deplibs -Wl,-dll~linknames=' - _LT_TAGVAR(archive_expsym_cmds, $1)='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then - $SED -n -e 's/\\\\\\\(.*\\\\\\\)/-link\\\ -EXPORT:\\\\\\\1/' -e '1\\\!p' < $export_symbols > $output_objdir/$soname.exp; - else - $SED -e 's/\\\\\\\(.*\\\\\\\)/-link\\\ -EXPORT:\\\\\\\1/' < $export_symbols > $output_objdir/$soname.exp; - fi~ - $CC -o $tool_output_objdir$soname $libobjs $compiler_flags $deplibs "@$tool_output_objdir$soname.exp" -Wl,-DLL,-IMPLIB:"$tool_output_objdir$libname.dll.lib"~ - linknames=' + _LT_TAGVAR(archive_cmds, $1)='$CC -o $output_objdir/$soname $libobjs $compiler_flags $deplibs -Wl,-DLL,-IMPLIB:"$tool_output_objdir$libname.dll.lib"~linknames=' + _LT_TAGVAR(archive_expsym_cmds, $1)='if _LT_DLL_DEF_P([$export_symbols]); then + cp "$export_symbols" "$output_objdir/$soname.def"; + echo "$tool_output_objdir$soname.def" > "$output_objdir/$soname.exp"; + else + $SED -e '\''s/^/-link -EXPORT:/'\'' < $export_symbols > $output_objdir/$soname.exp; + fi~ + $CC -o $tool_output_objdir$soname $libobjs $compiler_flags $deplibs "@$tool_output_objdir$soname.exp" -Wl,-DLL,-IMPLIB:"$tool_output_objdir$libname.dll.lib"~ + linknames=' # The linker will not automatically build a static lib if we build a DLL. # _LT_TAGVAR(old_archive_from_new_cmds, $1)='true' _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes # Don't use ranlib _LT_TAGVAR(old_postinstall_cmds, $1)='chmod 644 $oldlib' _LT_TAGVAR(postlink_cmds, $1)='lt_outputfile="@OUTPUT@"~ - lt_tool_outputfile="@TOOL_OUTPUT@"~ - case $lt_outputfile in - *.exe|*.EXE) ;; - *) - lt_outputfile="$lt_outputfile.exe" - lt_tool_outputfile="$lt_tool_outputfile.exe" - ;; - esac~ - func_to_tool_file "$lt_outputfile"~ - if test "$MANIFEST_TOOL" != ":" && test -f "$lt_outputfile.manifest"; then - $MANIFEST_TOOL -manifest "$lt_tool_outputfile.manifest" -outputresource:"$lt_tool_outputfile" || exit 1; - $RM "$lt_outputfile.manifest"; - fi' + lt_tool_outputfile="@TOOL_OUTPUT@"~ + case $lt_outputfile in + *.exe|*.EXE) ;; + *) + lt_outputfile=$lt_outputfile.exe + lt_tool_outputfile=$lt_tool_outputfile.exe + ;; + esac~ + func_to_tool_file "$lt_outputfile"~ + if test : != "$MANIFEST_TOOL" && test -f "$lt_outputfile.manifest"; then + $MANIFEST_TOOL -manifest "$lt_tool_outputfile.manifest" -outputresource:"$lt_tool_outputfile" || exit 1; + $RM "$lt_outputfile.manifest"; + fi' ;; *) # g++ # _LT_TAGVAR(hardcode_libdir_flag_spec, $1) is actually meaningless, # as there is no search path for DLLs. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' - _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-all-symbols' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl--export-all-symbols' _LT_TAGVAR(allow_undefined_flag, $1)=unsupported _LT_TAGVAR(always_export_symbols, $1)=no _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes if $LD --help 2>&1 | $GREP 'auto-import' > /dev/null; then - _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' - # If the export-symbols file already is a .def file (1st line - # is EXPORTS), use it as is; otherwise, prepend... - _LT_TAGVAR(archive_expsym_cmds, $1)='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then - cp $export_symbols $output_objdir/$soname.def; - else - echo EXPORTS > $output_objdir/$soname.def; - cat $export_symbols >> $output_objdir/$soname.def; - fi~ - $CC -shared -nostdlib $output_objdir/$soname.def $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $output_objdir/$soname $wl--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' + # If the export-symbols file already is a .def file, use it as + # is; otherwise, prepend EXPORTS... + _LT_TAGVAR(archive_expsym_cmds, $1)='if _LT_DLL_DEF_P([$export_symbols]); then + cp $export_symbols $output_objdir/$soname.def; + else + echo EXPORTS > $output_objdir/$soname.def; + cat $export_symbols >> $output_objdir/$soname.def; + fi~ + $CC -shared -nostdlib $output_objdir/$soname.def $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $output_objdir/$soname $wl--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' else _LT_TAGVAR(ld_shlibs, $1)=no fi @@ -6206,6 +6722,34 @@ _LT_DARWIN_LINKER_FEATURES($1) ;; + os2*) + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' + _LT_TAGVAR(hardcode_minus_L, $1)=yes + _LT_TAGVAR(allow_undefined_flag, $1)=unsupported + shrext_cmds=.dll + _LT_TAGVAR(archive_cmds, $1)='$ECHO "LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE" > $output_objdir/$libname.def~ + $ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~ + $ECHO "DATA MULTIPLE NONSHARED" >> $output_objdir/$libname.def~ + $ECHO EXPORTS >> $output_objdir/$libname.def~ + emxexp $libobjs | $SED /"_DLL_InitTerm"/d >> $output_objdir/$libname.def~ + $CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~ + emximp -o $lib $output_objdir/$libname.def' + _LT_TAGVAR(archive_expsym_cmds, $1)='$ECHO "LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE" > $output_objdir/$libname.def~ + $ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~ + $ECHO "DATA MULTIPLE NONSHARED" >> $output_objdir/$libname.def~ + $ECHO EXPORTS >> $output_objdir/$libname.def~ + prefix_cmds="$SED"~ + if test EXPORTS = "`$SED 1q $export_symbols`"; then + prefix_cmds="$prefix_cmds -e 1d"; + fi~ + prefix_cmds="$prefix_cmds -e \"s/^\(.*\)$/_\1/g\""~ + cat $export_symbols | $prefix_cmds >> $output_objdir/$libname.def~ + $CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~ + emximp -o $lib $output_objdir/$libname.def' + _LT_TAGVAR(old_archive_From_new_cmds, $1)='emximp -o $output_objdir/${libname}_dll.a $output_objdir/$libname.def' + _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes + ;; + dgux*) case $cc_basename in ec++*) @@ -6241,14 +6785,14 @@ ;; haiku*) - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' _LT_TAGVAR(link_all_deplibs, $1)=yes ;; hpux9*) - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl+b $wl$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: - _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-E' _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_minus_L, $1)=yes # Not in the search PATH, # but as the default @@ -6260,7 +6804,7 @@ _LT_TAGVAR(ld_shlibs, $1)=no ;; aCC*) - _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$CC -b ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' + _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$CC -b $wl+b $wl$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test "x$output_objdir/$soname" = "x$lib" || mv $output_objdir/$soname $lib' # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. @@ -6269,11 +6813,11 @@ # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. - output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | $EGREP "\-L"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' + output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | $EGREP " \-L"`; list= ; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' ;; *) - if test "$GXX" = yes; then - _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$CC -shared -nostdlib $pic_flag ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' + if test yes = "$GXX"; then + _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$CC -shared -nostdlib $pic_flag $wl+b $wl$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test "x$output_objdir/$soname" = "x$lib" || mv $output_objdir/$soname $lib' else # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no @@ -6283,15 +6827,15 @@ ;; hpux10*|hpux11*) - if test $with_gnu_ld = no; then - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' + if test no = "$with_gnu_ld"; then + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl+b $wl$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: case $host_cpu in hppa*64*|ia64*) ;; *) - _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-E' ;; esac fi @@ -6317,13 +6861,13 @@ aCC*) case $host_cpu in hppa*64*) - _LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' + _LT_TAGVAR(archive_cmds, $1)='$CC -b $wl+h $wl$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; ia64*) - _LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' + _LT_TAGVAR(archive_cmds, $1)='$CC -b $wl+h $wl$soname $wl+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; *) - _LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' + _LT_TAGVAR(archive_cmds, $1)='$CC -b $wl+h $wl$soname $wl+b $wl$install_libdir -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; esac # Commands to make compiler produce verbose output that lists @@ -6334,20 +6878,20 @@ # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. - output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | $GREP "\-L"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' + output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | $GREP " \-L"`; list= ; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' ;; *) - if test "$GXX" = yes; then - if test $with_gnu_ld = no; then + if test yes = "$GXX"; then + if test no = "$with_gnu_ld"; then case $host_cpu in hppa*64*) - _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib -fPIC ${wl}+h ${wl}$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib -fPIC $wl+h $wl$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; ia64*) - _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $pic_flag ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $pic_flag $wl+h $wl$soname $wl+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; *) - _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $pic_flag ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $pic_flag $wl+h $wl$soname $wl+b $wl$install_libdir -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; esac fi @@ -6362,22 +6906,22 @@ interix[[3-9]]*) _LT_TAGVAR(hardcode_direct, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=no - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' - _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath,$libdir' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-E' # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc. # Instead, shared libraries are loaded at an image base (0x10000000 by # default) and relocated if they conflict, which is a slow very memory # consuming and fragmenting process. To avoid this, we pick a random, # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link # time. Moving up from 0x10000000 also allows more sbrk(2) space. - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' - _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' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-h,$soname $wl--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' + _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' ;; irix5* | irix6*) case $cc_basename in CC*) # SGI C++ - _LT_TAGVAR(archive_cmds, $1)='$CC -shared -all -multigot $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared -all -multigot $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib' # Archives containing C++ object files must be created using # "CC -ar", where "CC" is the IRIX C++ compiler. This is @@ -6386,17 +6930,17 @@ _LT_TAGVAR(old_archive_cmds, $1)='$CC -ar -WR,-u -o $oldlib $oldobjs' ;; *) - if test "$GXX" = yes; then - if test "$with_gnu_ld" = no; then - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' + if test yes = "$GXX"; then + if test no = "$with_gnu_ld"; then + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations -o $lib' else - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` -o $lib' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` -o $lib' fi fi _LT_TAGVAR(link_all_deplibs, $1)=yes ;; esac - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: _LT_TAGVAR(inherit_rpath, $1)=yes ;; @@ -6409,8 +6953,8 @@ # KCC will only create a shared library if the output file # ends with ".so" (or ".sl" for HP-UX), so rename the library # to its proper name (with version) after linking. - _LT_TAGVAR(archive_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib' - _LT_TAGVAR(archive_expsym_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib ${wl}-retain-symbols-file,$export_symbols; mv \$templib $lib' + _LT_TAGVAR(archive_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\$tempext\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\$tempext\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib $wl-retain-symbols-file,$export_symbols; mv \$templib $lib' # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. @@ -6419,10 +6963,10 @@ # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. - output_verbose_link_cmd='templist=`$CC $CFLAGS -v conftest.$objext -o libconftest$shared_ext 2>&1 | $GREP "ld"`; rm -f libconftest$shared_ext; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' + output_verbose_link_cmd='templist=`$CC $CFLAGS -v conftest.$objext -o libconftest$shared_ext 2>&1 | $GREP "ld"`; rm -f libconftest$shared_ext; list= ; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' - _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath,$libdir' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl--export-dynamic' # Archives containing C++ object files must be created using # "CC -Bstatic", where "CC" is the KAI C++ compiler. @@ -6436,59 +6980,59 @@ # earlier do not add the objects themselves. case `$CC -V 2>&1` in *"Version 7."*) - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib' - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' ;; *) # Version 8.0 or newer tmp_idyn= case $host_cpu in ia64*) tmp_idyn=' -i_dynamic';; esac - _LT_TAGVAR(archive_cmds, $1)='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' ;; esac _LT_TAGVAR(archive_cmds_need_lc, $1)=no - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' - _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' - _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive$convenience ${wl}--no-whole-archive' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath,$libdir' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl--export-dynamic' + _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl--whole-archive$convenience $wl--no-whole-archive' ;; pgCC* | pgcpp*) # Portland Group C++ compiler case `$CC -V` in *pgCC\ [[1-5]].* | *pgcpp\ [[1-5]].*) _LT_TAGVAR(prelink_cmds, $1)='tpldir=Template.dir~ - rm -rf $tpldir~ - $CC --prelink_objects --instantiation_dir $tpldir $objs $libobjs $compile_deplibs~ - compile_command="$compile_command `find $tpldir -name \*.o | sort | $NL2SP`"' + rm -rf $tpldir~ + $CC --prelink_objects --instantiation_dir $tpldir $objs $libobjs $compile_deplibs~ + compile_command="$compile_command `find $tpldir -name \*.o | sort | $NL2SP`"' _LT_TAGVAR(old_archive_cmds, $1)='tpldir=Template.dir~ - rm -rf $tpldir~ - $CC --prelink_objects --instantiation_dir $tpldir $oldobjs$old_deplibs~ - $AR $AR_FLAGS $oldlib$oldobjs$old_deplibs `find $tpldir -name \*.o | sort | $NL2SP`~ - $RANLIB $oldlib' + rm -rf $tpldir~ + $CC --prelink_objects --instantiation_dir $tpldir $oldobjs$old_deplibs~ + $AR $AR_FLAGS $oldlib$oldobjs$old_deplibs `find $tpldir -name \*.o | sort | $NL2SP`~ + $RANLIB $oldlib' _LT_TAGVAR(archive_cmds, $1)='tpldir=Template.dir~ - rm -rf $tpldir~ - $CC --prelink_objects --instantiation_dir $tpldir $predep_objects $libobjs $deplibs $convenience $postdep_objects~ - $CC -shared $pic_flag $predep_objects $libobjs $deplibs `find $tpldir -name \*.o | sort | $NL2SP` $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname -o $lib' + rm -rf $tpldir~ + $CC --prelink_objects --instantiation_dir $tpldir $predep_objects $libobjs $deplibs $convenience $postdep_objects~ + $CC -shared $pic_flag $predep_objects $libobjs $deplibs `find $tpldir -name \*.o | sort | $NL2SP` $postdep_objects $compiler_flags $wl-soname $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='tpldir=Template.dir~ - rm -rf $tpldir~ - $CC --prelink_objects --instantiation_dir $tpldir $predep_objects $libobjs $deplibs $convenience $postdep_objects~ - $CC -shared $pic_flag $predep_objects $libobjs $deplibs `find $tpldir -name \*.o | sort | $NL2SP` $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname ${wl}-retain-symbols-file ${wl}$export_symbols -o $lib' + rm -rf $tpldir~ + $CC --prelink_objects --instantiation_dir $tpldir $predep_objects $libobjs $deplibs $convenience $postdep_objects~ + $CC -shared $pic_flag $predep_objects $libobjs $deplibs `find $tpldir -name \*.o | sort | $NL2SP` $postdep_objects $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' ;; *) # Version 6 and above use weak symbols - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname -o $lib' - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname ${wl}-retain-symbols-file ${wl}$export_symbols -o $lib' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' ;; esac - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}--rpath ${wl}$libdir' - _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' - _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl--rpath $wl$libdir' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl--export-dynamic' + _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` $wl--no-whole-archive' ;; cxx*) # Compaq C++ - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib' - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib ${wl}-retain-symbols-file $wl$export_symbols' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname -o $lib $wl-retain-symbols-file $wl$export_symbols' runpath_var=LD_RUN_PATH _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir' @@ -6502,18 +7046,18 @@ # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. - output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP "ld"`; templist=`func_echo_all "$templist" | $SED "s/\(^.*ld.*\)\( .*ld .*$\)/\1/"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "X$list" | $Xsed' + output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP "ld"`; templist=`func_echo_all "$templist" | $SED "s/\(^.*ld.*\)\( .*ld .*$\)/\1/"`; list= ; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "X$list" | $Xsed' ;; xl* | mpixl* | bgxl*) # IBM XL 8.0 on PPC, with GNU ld - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' - _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' - _LT_TAGVAR(archive_cmds, $1)='$CC -qmkshrobj $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' - if test "x$supports_anon_versioning" = xyes; then + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl--export-dynamic' + _LT_TAGVAR(archive_cmds, $1)='$CC -qmkshrobj $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' + if test yes = "$supports_anon_versioning"; then _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $output_objdir/$libname.ver~ - cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ - echo "local: *; };" >> $output_objdir/$libname.ver~ - $CC -qmkshrobj $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script ${wl}$output_objdir/$libname.ver -o $lib' + cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ + echo "local: *; };" >> $output_objdir/$libname.ver~ + $CC -qmkshrobj $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-version-script $wl$output_objdir/$libname.ver -o $lib' fi ;; *) @@ -6521,10 +7065,10 @@ *Sun\ C*) # Sun C++ 5.9 _LT_TAGVAR(no_undefined_flag, $1)=' -zdefs' - _LT_TAGVAR(archive_cmds, $1)='$CC -G${allow_undefined_flag} -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G${allow_undefined_flag} -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-retain-symbols-file ${wl}$export_symbols' + _LT_TAGVAR(archive_cmds, $1)='$CC -G$allow_undefined_flag -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G$allow_undefined_flag -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-retain-symbols-file $wl$export_symbols' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' - _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' + _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` $wl--no-whole-archive' _LT_TAGVAR(compiler_needs_object, $1)=yes # Not sure whether something based on @@ -6582,22 +7126,17 @@ _LT_TAGVAR(ld_shlibs, $1)=yes ;; - openbsd2*) - # C++ shared libraries are fairly broken - _LT_TAGVAR(ld_shlibs, $1)=no - ;; - - openbsd*) + openbsd* | bitrig*) if test -f /usr/libexec/ld.so; then _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_shlibpath_var, $1)=no _LT_TAGVAR(hardcode_direct_absolute, $1)=yes _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $lib' - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' - if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-retain-symbols-file,$export_symbols -o $lib' - _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' - _LT_TAGVAR(whole_archive_flag_spec, $1)="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath,$libdir' + if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`"; then + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-retain-symbols-file,$export_symbols -o $lib' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-E' + _LT_TAGVAR(whole_archive_flag_spec, $1)=$wlarc'--whole-archive$convenience '$wlarc'--no-whole-archive' fi output_verbose_link_cmd=func_echo_all else @@ -6613,9 +7152,9 @@ # KCC will only create a shared library if the output file # ends with ".so" (or ".sl" for HP-UX), so rename the library # to its proper name (with version) after linking. - _LT_TAGVAR(archive_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo "$lib" | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib' + _LT_TAGVAR(archive_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo "$lib" | $SED -e "s/\$tempext\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib' - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath,$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: # Archives containing C++ object files must be created using @@ -6633,17 +7172,17 @@ cxx*) case $host in osf3*) - _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*' - _LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $soname `test -n "$verstring" && func_echo_all "${wl}-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' + _LT_TAGVAR(allow_undefined_flag, $1)=' $wl-expect_unresolved $wl\*' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared$allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $soname `test -n "$verstring" && func_echo_all "$wl-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir' ;; *) _LT_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*' - _LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared$allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done~ - echo "-hidden">> $lib.exp~ - $CC -shared$allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname ${wl}-input ${wl}$lib.exp `test -n "$verstring" && $ECHO "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib~ - $RM $lib.exp' + echo "-hidden">> $lib.exp~ + $CC -shared$allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname $wl-input $wl$lib.exp `test -n "$verstring" && $ECHO "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib~ + $RM $lib.exp' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir' ;; esac @@ -6658,27 +7197,27 @@ # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. - output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP "ld" | $GREP -v "ld:"`; templist=`func_echo_all "$templist" | $SED "s/\(^.*ld.*\)\( .*ld.*$\)/\1/"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' + output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP "ld" | $GREP -v "ld:"`; templist=`func_echo_all "$templist" | $SED "s/\(^.*ld.*\)\( .*ld.*$\)/\1/"`; list= ; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' ;; *) - if test "$GXX" = yes && test "$with_gnu_ld" = no; then - _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*' + if test yes,no = "$GXX,$with_gnu_ld"; then + _LT_TAGVAR(allow_undefined_flag, $1)=' $wl-expect_unresolved $wl\*' case $host in osf3*) - _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib ${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations -o $lib' ;; *) - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -nostdlib ${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -nostdlib $allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-msym $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations -o $lib' ;; esac - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. - output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP "\-L"' + output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP " \-L"' else # FIXME: insert proper C++ library support @@ -6718,9 +7257,9 @@ # Sun C++ 4.2, 5.x and Centerline C++ _LT_TAGVAR(archive_cmds_need_lc,$1)=yes _LT_TAGVAR(no_undefined_flag, $1)=' -zdefs' - _LT_TAGVAR(archive_cmds, $1)='$CC -G${allow_undefined_flag} -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' + _LT_TAGVAR(archive_cmds, $1)='$CC -G$allow_undefined_flag -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ - $CC -G${allow_undefined_flag} ${wl}-M ${wl}$lib.exp -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp' + $CC -G$allow_undefined_flag $wl-M $wl$lib.exp -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' _LT_TAGVAR(hardcode_shlibpath_var, $1)=no @@ -6728,7 +7267,7 @@ solaris2.[[0-5]] | solaris2.[[0-5]].*) ;; *) # The compiler driver will combine and reorder linker options, - # but understands `-z linker_flag'. + # but understands '-z linker_flag'. # Supported since Solaris 2.6 (maybe 2.5.1?) _LT_TAGVAR(whole_archive_flag_spec, $1)='-z allextract$convenience -z defaultextract' ;; @@ -6745,42 +7284,42 @@ ;; gcx*) # Green Hills C++ Compiler - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-h $wl$soname -o $lib' # The C++ compiler must be used to create the archive. _LT_TAGVAR(old_archive_cmds, $1)='$CC $LDFLAGS -archive -o $oldlib $oldobjs' ;; *) # GNU C++ compiler with Solaris linker - if test "$GXX" = yes && test "$with_gnu_ld" = no; then - _LT_TAGVAR(no_undefined_flag, $1)=' ${wl}-z ${wl}defs' + if test yes,no = "$GXX,$with_gnu_ld"; then + _LT_TAGVAR(no_undefined_flag, $1)=' $wl-z ${wl}defs' if $CC --version | $GREP -v '^2\.7' > /dev/null; then - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -nostdlib $LDFLAGS $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-h $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ - $CC -shared $pic_flag -nostdlib ${wl}-M $wl$lib.exp -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp' + $CC -shared $pic_flag -nostdlib $wl-M $wl$lib.exp $wl-h $wl$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp' # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. - output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP "\-L"' + output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP " \-L"' else - # g++ 2.7 appears to require `-G' NOT `-shared' on this + # g++ 2.7 appears to require '-G' NOT '-shared' on this # platform. - _LT_TAGVAR(archive_cmds, $1)='$CC -G -nostdlib $LDFLAGS $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib' + _LT_TAGVAR(archive_cmds, $1)='$CC -G -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-h $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ - $CC -G -nostdlib ${wl}-M $wl$lib.exp -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp' + $CC -G -nostdlib $wl-M $wl$lib.exp $wl-h $wl$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp' # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. - output_verbose_link_cmd='$CC -G $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP "\-L"' + output_verbose_link_cmd='$CC -G $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP " \-L"' fi - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R $wl$libdir' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-R $wl$libdir' case $host_os in solaris2.[[0-5]] | solaris2.[[0-5]].*) ;; *) - _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}-z ${wl}allextract$convenience ${wl}-z ${wl}defaultextract' + _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl-z ${wl}allextract$convenience $wl-z ${wl}defaultextract' ;; esac fi @@ -6789,52 +7328,52 @@ ;; sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[[01]].[[10]]* | unixware7* | sco3.2v5.0.[[024]]*) - _LT_TAGVAR(no_undefined_flag, $1)='${wl}-z,text' + _LT_TAGVAR(no_undefined_flag, $1)='$wl-z,text' _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=no runpath_var='LD_RUN_PATH' case $cc_basename in CC*) - _LT_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_cmds, $1)='$CC -G $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' ;; *) - _LT_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' ;; esac ;; sysv5* | sco3.2v5* | sco5v6*) - # Note: We can NOT use -z defs as we might desire, because we do not + # Note: We CANNOT use -z defs as we might desire, because we do not # link with -lc, and that would cause any symbols used from libc to # always be unresolved, which means just about no library would # ever link correctly. If we're not using GNU ld we use -z text # though, which does catch some bad symbols but isn't as heavy-handed # as -z defs. - _LT_TAGVAR(no_undefined_flag, $1)='${wl}-z,text' - _LT_TAGVAR(allow_undefined_flag, $1)='${wl}-z,nodefs' + _LT_TAGVAR(no_undefined_flag, $1)='$wl-z,text' + _LT_TAGVAR(allow_undefined_flag, $1)='$wl-z,nodefs' _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=no - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R,$libdir' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-R,$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=':' _LT_TAGVAR(link_all_deplibs, $1)=yes - _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-Bexport' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-Bexport' runpath_var='LD_RUN_PATH' case $cc_basename in CC*) - _LT_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_cmds, $1)='$CC -G $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(old_archive_cmds, $1)='$CC -Tprelink_objects $oldobjs~ - '"$_LT_TAGVAR(old_archive_cmds, $1)" + '"$_LT_TAGVAR(old_archive_cmds, $1)" _LT_TAGVAR(reload_cmds, $1)='$CC -Tprelink_objects $reload_objs~ - '"$_LT_TAGVAR(reload_cmds, $1)" + '"$_LT_TAGVAR(reload_cmds, $1)" ;; *) - _LT_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' ;; esac ;; @@ -6865,10 +7404,10 @@ esac AC_MSG_RESULT([$_LT_TAGVAR(ld_shlibs, $1)]) - test "$_LT_TAGVAR(ld_shlibs, $1)" = no && can_build_shared=no + test no = "$_LT_TAGVAR(ld_shlibs, $1)" && can_build_shared=no - _LT_TAGVAR(GCC, $1)="$GXX" - _LT_TAGVAR(LD, $1)="$LD" + _LT_TAGVAR(GCC, $1)=$GXX + _LT_TAGVAR(LD, $1)=$LD ## CAVEAT EMPTOR: ## There is no encapsulation within the following macros, do not change @@ -6895,7 +7434,7 @@ lt_cv_path_LD=$lt_save_path_LD lt_cv_prog_gnu_ldcxx=$lt_cv_prog_gnu_ld lt_cv_prog_gnu_ld=$lt_save_with_gnu_ld -fi # test "$_lt_caught_CXX_error" != yes +fi # test yes != "$_lt_caught_CXX_error" AC_LANG_POP ])# _LT_LANG_CXX_CONFIG @@ -6917,13 +7456,14 @@ AC_REQUIRE([_LT_PROG_ECHO_BACKSLASH]) func_stripname_cnf () { - case ${2} in - .*) func_stripname_result=`$ECHO "${3}" | $SED "s%^${1}%%; s%\\\\${2}\$%%"`;; - *) func_stripname_result=`$ECHO "${3}" | $SED "s%^${1}%%; s%${2}\$%%"`;; + case @S|@2 in + .*) func_stripname_result=`$ECHO "@S|@3" | $SED "s%^@S|@1%%; s%\\\\@S|@2\$%%"`;; + *) func_stripname_result=`$ECHO "@S|@3" | $SED "s%^@S|@1%%; s%@S|@2\$%%"`;; esac } # func_stripname_cnf ])# _LT_FUNC_STRIPNAME_CNF + # _LT_SYS_HIDDEN_LIBDEPS([TAGNAME]) # --------------------------------- # Figure out "hidden" library dependencies from verbose @@ -7007,13 +7547,13 @@ pre_test_object_deps_done=no for p in `eval "$output_verbose_link_cmd"`; do - case ${prev}${p} in + case $prev$p in -L* | -R* | -l*) # Some compilers place space between "-{L,R}" and the path. # Remove the space. - if test $p = "-L" || - test $p = "-R"; then + if test x-L = "$p" || + test x-R = "$p"; then prev=$p continue fi @@ -7029,16 +7569,16 @@ case $p in =*) func_stripname_cnf '=' '' "$p"; p=$lt_sysroot$func_stripname_result ;; esac - if test "$pre_test_object_deps_done" = no; then - case ${prev} in + if test no = "$pre_test_object_deps_done"; then + case $prev in -L | -R) # Internal compiler library paths should come after those # provided the user. The postdeps already come after the # user supplied libs so there is no need to process them. if test -z "$_LT_TAGVAR(compiler_lib_search_path, $1)"; then - _LT_TAGVAR(compiler_lib_search_path, $1)="${prev}${p}" + _LT_TAGVAR(compiler_lib_search_path, $1)=$prev$p else - _LT_TAGVAR(compiler_lib_search_path, $1)="${_LT_TAGVAR(compiler_lib_search_path, $1)} ${prev}${p}" + _LT_TAGVAR(compiler_lib_search_path, $1)="${_LT_TAGVAR(compiler_lib_search_path, $1)} $prev$p" fi ;; # The "-l" case would never come before the object being @@ -7046,9 +7586,9 @@ esac else if test -z "$_LT_TAGVAR(postdeps, $1)"; then - _LT_TAGVAR(postdeps, $1)="${prev}${p}" + _LT_TAGVAR(postdeps, $1)=$prev$p else - _LT_TAGVAR(postdeps, $1)="${_LT_TAGVAR(postdeps, $1)} ${prev}${p}" + _LT_TAGVAR(postdeps, $1)="${_LT_TAGVAR(postdeps, $1)} $prev$p" fi fi prev= @@ -7063,15 +7603,15 @@ continue fi - if test "$pre_test_object_deps_done" = no; then + if test no = "$pre_test_object_deps_done"; then if test -z "$_LT_TAGVAR(predep_objects, $1)"; then - _LT_TAGVAR(predep_objects, $1)="$p" + _LT_TAGVAR(predep_objects, $1)=$p else _LT_TAGVAR(predep_objects, $1)="$_LT_TAGVAR(predep_objects, $1) $p" fi else if test -z "$_LT_TAGVAR(postdep_objects, $1)"; then - _LT_TAGVAR(postdep_objects, $1)="$p" + _LT_TAGVAR(postdep_objects, $1)=$p else _LT_TAGVAR(postdep_objects, $1)="$_LT_TAGVAR(postdep_objects, $1) $p" fi @@ -7102,51 +7642,6 @@ _LT_TAGVAR(postdep_objects,$1)= _LT_TAGVAR(postdeps,$1)= ;; - -linux*) - case `$CC -V 2>&1 | sed 5q` in - *Sun\ C*) - # Sun C++ 5.9 - - # The more standards-conforming stlport4 library is - # incompatible with the Cstd library. Avoid specifying - # it if it's in CXXFLAGS. Ignore libCrun as - # -library=stlport4 depends on it. - case " $CXX $CXXFLAGS " in - *" -library=stlport4 "*) - solaris_use_stlport4=yes - ;; - esac - - if test "$solaris_use_stlport4" != yes; then - _LT_TAGVAR(postdeps,$1)='-library=Cstd -library=Crun' - fi - ;; - esac - ;; - -solaris*) - case $cc_basename in - CC* | sunCC*) - # The more standards-conforming stlport4 library is - # incompatible with the Cstd library. Avoid specifying - # it if it's in CXXFLAGS. Ignore libCrun as - # -library=stlport4 depends on it. - case " $CXX $CXXFLAGS " in - *" -library=stlport4 "*) - solaris_use_stlport4=yes - ;; - esac - - # Adding this requires a known-good setup of shared libraries for - # Sun compiler versions before 5.6, else PIC objects from an old - # archive will be linked into the output, leading to subtle bugs. - if test "$solaris_use_stlport4" != yes; then - _LT_TAGVAR(postdeps,$1)='-library=Cstd -library=Crun' - fi - ;; - esac - ;; esac ]) @@ -7155,7 +7650,7 @@ esac _LT_TAGVAR(compiler_lib_search_dirs, $1)= if test -n "${_LT_TAGVAR(compiler_lib_search_path, $1)}"; then - _LT_TAGVAR(compiler_lib_search_dirs, $1)=`echo " ${_LT_TAGVAR(compiler_lib_search_path, $1)}" | ${SED} -e 's! -L! !g' -e 's!^ !!'` + _LT_TAGVAR(compiler_lib_search_dirs, $1)=`echo " ${_LT_TAGVAR(compiler_lib_search_path, $1)}" | $SED -e 's! -L! !g' -e 's!^ !!'` fi _LT_TAGDECL([], [compiler_lib_search_dirs], [1], [The directories searched by this compiler when creating a shared library]) @@ -7175,10 +7670,10 @@ # -------------------------- # Ensure that the configuration variables for a Fortran 77 compiler are # suitably defined. These variables are subsequently used by _LT_CONFIG -# to write the compiler configuration to `libtool'. +# to write the compiler configuration to 'libtool'. m4_defun([_LT_LANG_F77_CONFIG], [AC_LANG_PUSH(Fortran 77) -if test -z "$F77" || test "X$F77" = "Xno"; then +if test -z "$F77" || test no = "$F77"; then _lt_disable_F77=yes fi @@ -7215,7 +7710,7 @@ # the F77 compiler isn't working. Some variables (like enable_shared) # are currently assumed to apply to all compilers on this platform, # and will be corrupted by setting them based on a non-working compiler. -if test "$_lt_disable_F77" != yes; then +if test yes != "$_lt_disable_F77"; then # Code to be used in simple compile tests lt_simple_compile_test_code="\ subroutine t @@ -7237,7 +7732,7 @@ _LT_LINKER_BOILERPLATE # Allow CC to be a program name with arguments. - lt_save_CC="$CC" + lt_save_CC=$CC lt_save_GCC=$GCC lt_save_CFLAGS=$CFLAGS CC=${F77-"f77"} @@ -7251,21 +7746,25 @@ AC_MSG_RESULT([$can_build_shared]) AC_MSG_CHECKING([whether to build shared libraries]) - test "$can_build_shared" = "no" && enable_shared=no + test no = "$can_build_shared" && enable_shared=no # On AIX, shared libraries and static libraries use the same namespace, and # are all built from PIC. case $host_os in aix3*) - test "$enable_shared" = yes && enable_static=no + test yes = "$enable_shared" && enable_static=no if test -n "$RANLIB"; then archive_cmds="$archive_cmds~\$RANLIB \$lib" postinstall_cmds='$RANLIB $lib' fi ;; aix[[4-9]]*) - if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then - test "$enable_shared" = yes && enable_static=no + if test ia64 != "$host_cpu"; then + case $enable_shared,$with_aix_soname,$aix_use_runtimelinking in + yes,aix,yes) ;; # shared object as lib.so file only + yes,svr4,*) ;; # shared object as lib.so archive member only + yes,*) enable_static=no ;; # shared object in lib.a archive as well + esac fi ;; esac @@ -7273,11 +7772,11 @@ AC_MSG_CHECKING([whether to build static libraries]) # Make sure either enable_shared or enable_static is yes. - test "$enable_shared" = yes || enable_static=yes + test yes = "$enable_shared" || enable_static=yes AC_MSG_RESULT([$enable_static]) - _LT_TAGVAR(GCC, $1)="$G77" - _LT_TAGVAR(LD, $1)="$LD" + _LT_TAGVAR(GCC, $1)=$G77 + _LT_TAGVAR(LD, $1)=$LD ## CAVEAT EMPTOR: ## There is no encapsulation within the following macros, do not change @@ -7294,9 +7793,9 @@ fi # test -n "$compiler" GCC=$lt_save_GCC - CC="$lt_save_CC" - CFLAGS="$lt_save_CFLAGS" -fi # test "$_lt_disable_F77" != yes + CC=$lt_save_CC + CFLAGS=$lt_save_CFLAGS +fi # test yes != "$_lt_disable_F77" AC_LANG_POP ])# _LT_LANG_F77_CONFIG @@ -7306,11 +7805,11 @@ # ------------------------- # Ensure that the configuration variables for a Fortran compiler are # suitably defined. These variables are subsequently used by _LT_CONFIG -# to write the compiler configuration to `libtool'. +# to write the compiler configuration to 'libtool'. m4_defun([_LT_LANG_FC_CONFIG], [AC_LANG_PUSH(Fortran) -if test -z "$FC" || test "X$FC" = "Xno"; then +if test -z "$FC" || test no = "$FC"; then _lt_disable_FC=yes fi @@ -7347,7 +7846,7 @@ # the FC compiler isn't working. Some variables (like enable_shared) # are currently assumed to apply to all compilers on this platform, # and will be corrupted by setting them based on a non-working compiler. -if test "$_lt_disable_FC" != yes; then +if test yes != "$_lt_disable_FC"; then # Code to be used in simple compile tests lt_simple_compile_test_code="\ subroutine t @@ -7369,7 +7868,7 @@ _LT_LINKER_BOILERPLATE # Allow CC to be a program name with arguments. - lt_save_CC="$CC" + lt_save_CC=$CC lt_save_GCC=$GCC lt_save_CFLAGS=$CFLAGS CC=${FC-"f95"} @@ -7385,21 +7884,25 @@ AC_MSG_RESULT([$can_build_shared]) AC_MSG_CHECKING([whether to build shared libraries]) - test "$can_build_shared" = "no" && enable_shared=no + test no = "$can_build_shared" && enable_shared=no # On AIX, shared libraries and static libraries use the same namespace, and # are all built from PIC. case $host_os in aix3*) - test "$enable_shared" = yes && enable_static=no + test yes = "$enable_shared" && enable_static=no if test -n "$RANLIB"; then archive_cmds="$archive_cmds~\$RANLIB \$lib" postinstall_cmds='$RANLIB $lib' fi ;; aix[[4-9]]*) - if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then - test "$enable_shared" = yes && enable_static=no + if test ia64 != "$host_cpu"; then + case $enable_shared,$with_aix_soname,$aix_use_runtimelinking in + yes,aix,yes) ;; # shared object as lib.so file only + yes,svr4,*) ;; # shared object as lib.so archive member only + yes,*) enable_static=no ;; # shared object in lib.a archive as well + esac fi ;; esac @@ -7407,11 +7910,11 @@ AC_MSG_CHECKING([whether to build static libraries]) # Make sure either enable_shared or enable_static is yes. - test "$enable_shared" = yes || enable_static=yes + test yes = "$enable_shared" || enable_static=yes AC_MSG_RESULT([$enable_static]) - _LT_TAGVAR(GCC, $1)="$ac_cv_fc_compiler_gnu" - _LT_TAGVAR(LD, $1)="$LD" + _LT_TAGVAR(GCC, $1)=$ac_cv_fc_compiler_gnu + _LT_TAGVAR(LD, $1)=$LD ## CAVEAT EMPTOR: ## There is no encapsulation within the following macros, do not change @@ -7431,7 +7934,7 @@ GCC=$lt_save_GCC CC=$lt_save_CC CFLAGS=$lt_save_CFLAGS -fi # test "$_lt_disable_FC" != yes +fi # test yes != "$_lt_disable_FC" AC_LANG_POP ])# _LT_LANG_FC_CONFIG @@ -7441,7 +7944,7 @@ # -------------------------- # Ensure that the configuration variables for the GNU Java Compiler compiler # are suitably defined. These variables are subsequently used by _LT_CONFIG -# to write the compiler configuration to `libtool'. +# to write the compiler configuration to 'libtool'. m4_defun([_LT_LANG_GCJ_CONFIG], [AC_REQUIRE([LT_PROG_GCJ])dnl AC_LANG_SAVE @@ -7475,7 +7978,7 @@ CFLAGS=$GCJFLAGS compiler=$CC _LT_TAGVAR(compiler, $1)=$CC -_LT_TAGVAR(LD, $1)="$LD" +_LT_TAGVAR(LD, $1)=$LD _LT_CC_BASENAME([$compiler]) # GCJ did not exist at the time GCC didn't implicitly link libc in. @@ -7512,7 +8015,7 @@ # -------------------------- # Ensure that the configuration variables for the GNU Go compiler # are suitably defined. These variables are subsequently used by _LT_CONFIG -# to write the compiler configuration to `libtool'. +# to write the compiler configuration to 'libtool'. m4_defun([_LT_LANG_GO_CONFIG], [AC_REQUIRE([LT_PROG_GO])dnl AC_LANG_SAVE @@ -7546,7 +8049,7 @@ CFLAGS=$GOFLAGS compiler=$CC _LT_TAGVAR(compiler, $1)=$CC -_LT_TAGVAR(LD, $1)="$LD" +_LT_TAGVAR(LD, $1)=$LD _LT_CC_BASENAME([$compiler]) # Go did not exist at the time GCC didn't implicitly link libc in. @@ -7583,7 +8086,7 @@ # ------------------------- # Ensure that the configuration variables for the Windows resource compiler # are suitably defined. These variables are subsequently used by _LT_CONFIG -# to write the compiler configuration to `libtool'. +# to write the compiler configuration to 'libtool'. m4_defun([_LT_LANG_RC_CONFIG], [AC_REQUIRE([LT_PROG_RC])dnl AC_LANG_SAVE @@ -7599,7 +8102,7 @@ lt_simple_compile_test_code='sample MENU { MENUITEM "&Soup", 100, CHECKED }' # Code to be used in simple link tests -lt_simple_link_test_code="$lt_simple_compile_test_code" +lt_simple_link_test_code=$lt_simple_compile_test_code # ltmain only uses $CC for tagged configurations so make sure $CC is set. _LT_TAG_COMPILER @@ -7609,7 +8112,7 @@ _LT_LINKER_BOILERPLATE # Allow CC to be a program name with arguments. -lt_save_CC="$CC" +lt_save_CC=$CC lt_save_CFLAGS=$CFLAGS lt_save_GCC=$GCC GCC= @@ -7638,7 +8141,7 @@ [m4_ifdef([AC_PROG_GCJ], [AC_PROG_GCJ], [m4_ifdef([A][M_PROG_GCJ], [A][M_PROG_GCJ], [AC_CHECK_TOOL(GCJ, gcj,) - test "x${GCJFLAGS+set}" = xset || GCJFLAGS="-g -O2" + test set = "${GCJFLAGS+set}" || GCJFLAGS="-g -O2" AC_SUBST(GCJFLAGS)])])[]dnl ]) @@ -7749,7 +8252,7 @@ # Add /usr/xpg4/bin/sed as it is typically found on Solaris # along with /bin/sed that truncates output. for lt_ac_sed in $lt_ac_sed_list /usr/xpg4/bin/sed; do - test ! -f $lt_ac_sed && continue + test ! -f "$lt_ac_sed" && continue cat /dev/null > conftest.in lt_ac_count=0 echo $ECHO_N "0123456789$ECHO_C" >conftest.in @@ -7766,9 +8269,9 @@ $lt_ac_sed -e 's/a$//' < conftest.nl >conftest.out || break cmp -s conftest.out conftest.nl || break # 10000 chars as input seems more than enough - test $lt_ac_count -gt 10 && break + test 10 -lt "$lt_ac_count" && break lt_ac_count=`expr $lt_ac_count + 1` - if test $lt_ac_count -gt $lt_ac_max; then + if test "$lt_ac_count" -gt "$lt_ac_max"; then lt_ac_max=$lt_ac_count lt_cv_path_SED=$lt_ac_sed fi @@ -7792,27 +8295,7 @@ # Find out whether the shell is Bourne or XSI compatible, # or has some other useful features. m4_defun([_LT_CHECK_SHELL_FEATURES], -[AC_MSG_CHECKING([whether the shell understands some XSI constructs]) -# Try some XSI features -xsi_shell=no -( _lt_dummy="a/b/c" - test "${_lt_dummy##*/},${_lt_dummy%/*},${_lt_dummy#??}"${_lt_dummy%"$_lt_dummy"}, \ - = c,a/b,b/c, \ - && eval 'test $(( 1 + 1 )) -eq 2 \ - && test "${#_lt_dummy}" -eq 5' ) >/dev/null 2>&1 \ - && xsi_shell=yes -AC_MSG_RESULT([$xsi_shell]) -_LT_CONFIG_LIBTOOL_INIT([xsi_shell='$xsi_shell']) - -AC_MSG_CHECKING([whether the shell understands "+="]) -lt_shell_append=no -( foo=bar; set foo baz; eval "$[1]+=\$[2]" && test "$foo" = barbaz ) \ - >/dev/null 2>&1 \ - && lt_shell_append=yes -AC_MSG_RESULT([$lt_shell_append]) -_LT_CONFIG_LIBTOOL_INIT([lt_shell_append='$lt_shell_append']) - -if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then +[if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then lt_unset=unset else lt_unset=false @@ -7836,102 +8319,9 @@ ])# _LT_CHECK_SHELL_FEATURES -# _LT_PROG_FUNCTION_REPLACE (FUNCNAME, REPLACEMENT-BODY) -# ------------------------------------------------------ -# In `$cfgfile', look for function FUNCNAME delimited by `^FUNCNAME ()$' and -# '^} FUNCNAME ', and replace its body with REPLACEMENT-BODY. -m4_defun([_LT_PROG_FUNCTION_REPLACE], -[dnl { -sed -e '/^$1 ()$/,/^} # $1 /c\ -$1 ()\ -{\ -m4_bpatsubsts([$2], [$], [\\], [^\([ ]\)], [\\\1]) -} # Extended-shell $1 implementation' "$cfgfile" > $cfgfile.tmp \ - && mv -f "$cfgfile.tmp" "$cfgfile" \ - || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") -test 0 -eq $? || _lt_function_replace_fail=: -]) - - -# _LT_PROG_REPLACE_SHELLFNS -# ------------------------- -# Replace existing portable implementations of several shell functions with -# equivalent extended shell implementations where those features are available.. -m4_defun([_LT_PROG_REPLACE_SHELLFNS], -[if test x"$xsi_shell" = xyes; then - _LT_PROG_FUNCTION_REPLACE([func_dirname], [dnl - case ${1} in - */*) func_dirname_result="${1%/*}${2}" ;; - * ) func_dirname_result="${3}" ;; - esac]) - - _LT_PROG_FUNCTION_REPLACE([func_basename], [dnl - func_basename_result="${1##*/}"]) - - _LT_PROG_FUNCTION_REPLACE([func_dirname_and_basename], [dnl - case ${1} in - */*) func_dirname_result="${1%/*}${2}" ;; - * ) func_dirname_result="${3}" ;; - esac - func_basename_result="${1##*/}"]) - - _LT_PROG_FUNCTION_REPLACE([func_stripname], [dnl - # pdksh 5.2.14 does not do ${X%$Y} correctly if both X and Y are - # positional parameters, so assign one to ordinary parameter first. - func_stripname_result=${3} - func_stripname_result=${func_stripname_result#"${1}"} - func_stripname_result=${func_stripname_result%"${2}"}]) - - _LT_PROG_FUNCTION_REPLACE([func_split_long_opt], [dnl - func_split_long_opt_name=${1%%=*} - func_split_long_opt_arg=${1#*=}]) - - _LT_PROG_FUNCTION_REPLACE([func_split_short_opt], [dnl - func_split_short_opt_arg=${1#??} - func_split_short_opt_name=${1%"$func_split_short_opt_arg"}]) - - _LT_PROG_FUNCTION_REPLACE([func_lo2o], [dnl - case ${1} in - *.lo) func_lo2o_result=${1%.lo}.${objext} ;; - *) func_lo2o_result=${1} ;; - esac]) - - _LT_PROG_FUNCTION_REPLACE([func_xform], [ func_xform_result=${1%.*}.lo]) - - _LT_PROG_FUNCTION_REPLACE([func_arith], [ func_arith_result=$(( $[*] ))]) - - _LT_PROG_FUNCTION_REPLACE([func_len], [ func_len_result=${#1}]) -fi - -if test x"$lt_shell_append" = xyes; then - _LT_PROG_FUNCTION_REPLACE([func_append], [ eval "${1}+=\\${2}"]) - - _LT_PROG_FUNCTION_REPLACE([func_append_quoted], [dnl - func_quote_for_eval "${2}" -dnl m4 expansion turns \\\\ into \\, and then the shell eval turns that into \ - eval "${1}+=\\\\ \\$func_quote_for_eval_result"]) - - # Save a `func_append' function call where possible by direct use of '+=' - sed -e 's%func_append \([[a-zA-Z_]]\{1,\}\) "%\1+="%g' $cfgfile > $cfgfile.tmp \ - && mv -f "$cfgfile.tmp" "$cfgfile" \ - || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") - test 0 -eq $? || _lt_function_replace_fail=: -else - # Save a `func_append' function call even when '+=' is not available - sed -e 's%func_append \([[a-zA-Z_]]\{1,\}\) "%\1="$\1%g' $cfgfile > $cfgfile.tmp \ - && mv -f "$cfgfile.tmp" "$cfgfile" \ - || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") - test 0 -eq $? || _lt_function_replace_fail=: -fi - -if test x"$_lt_function_replace_fail" = x":"; then - AC_MSG_WARN([Unable to substitute extended shell functions in $ofile]) -fi -]) - # _LT_PATH_CONVERSION_FUNCTIONS # ----------------------------- -# Determine which file name conversion functions should be used by +# Determine what file name conversion functions should be used by # func_to_host_file (and, implicitly, by func_to_host_path). These are needed # for certain cross-compile configurations and native mingw. m4_defun([_LT_PATH_CONVERSION_FUNCTIONS], diff -Nru atkmm1.6-2.24.2/build/ltmain.sh atkmm1.6-2.28.0/build/ltmain.sh --- atkmm1.6-2.24.2/build/ltmain.sh 2015-11-29 20:04:44.456300339 +0000 +++ atkmm1.6-2.28.0/build/ltmain.sh 2018-11-04 11:44:43.919481756 +0000 @@ -1,9 +1,12 @@ +#! /bin/sh +## DO NOT EDIT - This file generated from ./build-aux/ltmain.in +## by inline-source v2014-01-03.01 -# libtool (GNU libtool) 2.4.2 +# libtool (GNU libtool) 2.4.6 +# Provide generalized library-building support services. # Written by Gordon Matzigkeit , 1996 -# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005, 2006, -# 2007, 2008, 2009, 2010, 2011 Free Software Foundation, Inc. +# Copyright (C) 1996-2015 Free Software Foundation, Inc. # This is free software; see the source for copying conditions. There is NO # warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. @@ -23,881 +26,2281 @@ # General Public License for more details. # # You should have received a copy of the GNU General Public License -# along with GNU Libtool; see the file COPYING. If not, a copy -# can be downloaded from http://www.gnu.org/licenses/gpl.html, -# or obtained by writing to the Free Software Foundation, Inc., -# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +# along with this program. If not, see . -# Usage: $progname [OPTION]... [MODE-ARG]... -# -# Provide generalized library-building support services. -# -# --config show all configuration variables -# --debug enable verbose shell tracing -# -n, --dry-run display commands without modifying any files -# --features display basic configuration information and exit -# --mode=MODE use operation mode MODE -# --preserve-dup-deps don't remove duplicate dependency libraries -# --quiet, --silent don't print informational messages -# --no-quiet, --no-silent -# print informational messages (default) -# --no-warn don't display warning messages -# --tag=TAG use configuration variables from tag TAG -# -v, --verbose print more informational messages than default -# --no-verbose don't print the extra informational messages -# --version print version information -# -h, --help, --help-all print short, long, or detailed help message -# -# MODE must be one of the following: -# -# clean remove files from the build directory -# compile compile a source file into a libtool object -# execute automatically set library path, then run a program -# finish complete the installation of libtool libraries -# install install libraries or executables -# link create a library or an executable -# uninstall remove libraries from an installed directory -# -# MODE-ARGS vary depending on the MODE. When passed as first option, -# `--mode=MODE' may be abbreviated as `MODE' or a unique abbreviation of that. -# Try `$progname --help --mode=MODE' for a more detailed description of MODE. -# -# When reporting a bug, please describe a test case to reproduce it and -# include the following information: -# -# host-triplet: $host -# shell: $SHELL -# compiler: $LTCC -# compiler flags: $LTCFLAGS -# linker: $LD (gnu? $with_gnu_ld) -# $progname: (GNU libtool) 2.4.2 Debian-2.4.2-1.11 -# automake: $automake_version -# autoconf: $autoconf_version -# -# Report bugs to . -# GNU libtool home page: . -# General help using GNU software: . PROGRAM=libtool PACKAGE=libtool -VERSION="2.4.2 Debian-2.4.2-1.11" -TIMESTAMP="" -package_revision=1.3337 +VERSION="2.4.6 Debian-2.4.6-4" +package_revision=2.4.6 -# Be Bourne compatible -if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then + +## ------ ## +## Usage. ## +## ------ ## + +# Run './libtool --help' for help with using this script from the +# command line. + + +## ------------------------------- ## +## User overridable command paths. ## +## ------------------------------- ## + +# After configure completes, it has a better idea of some of the +# shell tools we need than the defaults used by the functions shared +# with bootstrap, so set those here where they can still be over- +# ridden by the user, but otherwise take precedence. + +: ${AUTOCONF="autoconf"} +: ${AUTOMAKE="automake"} + + +## -------------------------- ## +## Source external libraries. ## +## -------------------------- ## + +# Much of our low-level functionality needs to be sourced from external +# libraries, which are installed to $pkgauxdir. + +# Set a version string for this script. +scriptversion=2015-10-12.13; # UTC + +# General shell script boiler plate, and helper functions. +# Written by Gary V. Vaughan, 2004 + +# Copyright (C) 2004-2015 Free Software Foundation, Inc. +# This is free software; see the source for copying conditions. There is NO +# warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 3 of the License, or +# (at your option) any later version. + +# As a special exception to the GNU General Public License, if you distribute +# this file as part of a program or library that is built using GNU Libtool, +# you may include this file under the same distribution terms that you use +# for the rest of that program. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNES FOR A PARTICULAR PURPOSE. See the GNU +# General Public License for more details. + +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . + +# Please report bugs or propose patches to gary@gnu.org. + + +## ------ ## +## Usage. ## +## ------ ## + +# Evaluate this file near the top of your script to gain access to +# the functions and variables defined here: +# +# . `echo "$0" | ${SED-sed} 's|[^/]*$||'`/build-aux/funclib.sh +# +# If you need to override any of the default environment variable +# settings, do that before evaluating this file. + + +## -------------------- ## +## Shell normalisation. ## +## -------------------- ## + +# Some shells need a little help to be as Bourne compatible as possible. +# Before doing anything else, make sure all that help has been provided! + +DUALCASE=1; export DUALCASE # for MKS sh +if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then : emulate sh NULLCMD=: - # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which + # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which # is contrary to our usage. Disable this feature. alias -g '${1+"$@"}'='"$@"' setopt NO_GLOB_SUBST else - case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac + case `(set -o) 2>/dev/null` in *posix*) set -o posix ;; esac fi -BIN_SH=xpg4; export BIN_SH # for Tru64 -DUALCASE=1; export DUALCASE # for MKS sh - -# A function that is used when there is no print builtin or printf. -func_fallback_echo () -{ - eval 'cat <<_LTECHO_EOF -$1 -_LTECHO_EOF' -} -# NLS nuisances: We save the old values to restore during execute mode. -lt_user_locale= -lt_safe_locale= -for lt_var in LANG LANGUAGE LC_ALL LC_CTYPE LC_COLLATE LC_MESSAGES +# NLS nuisances: We save the old values in case they are required later. +_G_user_locale= +_G_safe_locale= +for _G_var in LANG LANGUAGE LC_ALL LC_CTYPE LC_COLLATE LC_MESSAGES do - eval "if test \"\${$lt_var+set}\" = set; then - save_$lt_var=\$$lt_var - $lt_var=C - export $lt_var - lt_user_locale=\"$lt_var=\\\$save_\$lt_var; \$lt_user_locale\" - lt_safe_locale=\"$lt_var=C; \$lt_safe_locale\" + eval "if test set = \"\${$_G_var+set}\"; then + save_$_G_var=\$$_G_var + $_G_var=C + export $_G_var + _G_user_locale=\"$_G_var=\\\$save_\$_G_var; \$_G_user_locale\" + _G_safe_locale=\"$_G_var=C; \$_G_safe_locale\" fi" done -LC_ALL=C -LANGUAGE=C -export LANGUAGE LC_ALL -$lt_unset CDPATH +# CDPATH. +(unset CDPATH) >/dev/null 2>&1 && unset CDPATH + +# Make sure IFS has a sensible default +sp=' ' +nl=' +' +IFS="$sp $nl" +# There are apparently some retarded systems that use ';' as a PATH separator! +if test "${PATH_SEPARATOR+set}" != set; then + PATH_SEPARATOR=: + (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && { + (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 || + PATH_SEPARATOR=';' + } +fi -# Work around backward compatibility issue on IRIX 6.5. On IRIX 6.4+, sh -# is ksh but when the shell is invoked as "sh" and the current value of -# the _XPG environment variable is not equal to 1 (one), the special -# positional parameter $0, within a function call, is the name of the -# function. -progpath="$0" +## ------------------------- ## +## Locate command utilities. ## +## ------------------------- ## + + +# func_executable_p FILE +# ---------------------- +# Check that FILE is an executable regular file. +func_executable_p () +{ + test -f "$1" && test -x "$1" +} + + +# func_path_progs PROGS_LIST CHECK_FUNC [PATH] +# -------------------------------------------- +# Search for either a program that responds to --version with output +# containing "GNU", or else returned by CHECK_FUNC otherwise, by +# trying all the directories in PATH with each of the elements of +# PROGS_LIST. +# +# CHECK_FUNC should accept the path to a candidate program, and +# set $func_check_prog_result if it truncates its output less than +# $_G_path_prog_max characters. +func_path_progs () +{ + _G_progs_list=$1 + _G_check_func=$2 + _G_PATH=${3-"$PATH"} + + _G_path_prog_max=0 + _G_path_prog_found=false + _G_save_IFS=$IFS; IFS=${PATH_SEPARATOR-:} + for _G_dir in $_G_PATH; do + IFS=$_G_save_IFS + test -z "$_G_dir" && _G_dir=. + for _G_prog_name in $_G_progs_list; do + for _exeext in '' .EXE; do + _G_path_prog=$_G_dir/$_G_prog_name$_exeext + func_executable_p "$_G_path_prog" || continue + case `"$_G_path_prog" --version 2>&1` in + *GNU*) func_path_progs_result=$_G_path_prog _G_path_prog_found=: ;; + *) $_G_check_func $_G_path_prog + func_path_progs_result=$func_check_prog_result + ;; + esac + $_G_path_prog_found && break 3 + done + done + done + IFS=$_G_save_IFS + test -z "$func_path_progs_result" && { + echo "no acceptable sed could be found in \$PATH" >&2 + exit 1 + } +} + + +# We want to be able to use the functions in this file before configure +# has figured out where the best binaries are kept, which means we have +# to search for them ourselves - except when the results are already set +# where we skip the searches. + +# Unless the user overrides by setting SED, search the path for either GNU +# sed, or the sed that truncates its output the least. +test -z "$SED" && { + _G_sed_script=s/aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb/ + for _G_i in 1 2 3 4 5 6 7; do + _G_sed_script=$_G_sed_script$nl$_G_sed_script + done + echo "$_G_sed_script" 2>/dev/null | sed 99q >conftest.sed + _G_sed_script= + + func_check_prog_sed () + { + _G_path_prog=$1 + + _G_count=0 + printf 0123456789 >conftest.in + while : + do + cat conftest.in conftest.in >conftest.tmp + mv conftest.tmp conftest.in + cp conftest.in conftest.nl + echo '' >> conftest.nl + "$_G_path_prog" -f conftest.sed conftest.out 2>/dev/null || break + diff conftest.out conftest.nl >/dev/null 2>&1 || break + _G_count=`expr $_G_count + 1` + if test "$_G_count" -gt "$_G_path_prog_max"; then + # Best one so far, save it but keep looking for a better one + func_check_prog_result=$_G_path_prog + _G_path_prog_max=$_G_count + fi + # 10*(2^10) chars as input seems more than enough + test 10 -lt "$_G_count" && break + done + rm -f conftest.in conftest.tmp conftest.nl conftest.out + } + + func_path_progs "sed gsed" func_check_prog_sed $PATH:/usr/xpg4/bin + rm -f conftest.sed + SED=$func_path_progs_result +} + + +# Unless the user overrides by setting GREP, search the path for either GNU +# grep, or the grep that truncates its output the least. +test -z "$GREP" && { + func_check_prog_grep () + { + _G_path_prog=$1 + + _G_count=0 + _G_path_prog_max=0 + printf 0123456789 >conftest.in + while : + do + cat conftest.in conftest.in >conftest.tmp + mv conftest.tmp conftest.in + cp conftest.in conftest.nl + echo 'GREP' >> conftest.nl + "$_G_path_prog" -e 'GREP$' -e '-(cannot match)-' conftest.out 2>/dev/null || break + diff conftest.out conftest.nl >/dev/null 2>&1 || break + _G_count=`expr $_G_count + 1` + if test "$_G_count" -gt "$_G_path_prog_max"; then + # Best one so far, save it but keep looking for a better one + func_check_prog_result=$_G_path_prog + _G_path_prog_max=$_G_count + fi + # 10*(2^10) chars as input seems more than enough + test 10 -lt "$_G_count" && break + done + rm -f conftest.in conftest.tmp conftest.nl conftest.out + } + + func_path_progs "grep ggrep" func_check_prog_grep $PATH:/usr/xpg4/bin + GREP=$func_path_progs_result +} + + +## ------------------------------- ## +## User overridable command paths. ## +## ------------------------------- ## + +# All uppercase variable names are used for environment variables. These +# variables can be overridden by the user before calling a script that +# uses them if a suitable command of that name is not already available +# in the command search PATH. : ${CP="cp -f"} -test "${ECHO+set}" = set || ECHO=${as_echo-'printf %s\n'} +: ${ECHO="printf %s\n"} +: ${EGREP="$GREP -E"} +: ${FGREP="$GREP -F"} +: ${LN_S="ln -s"} : ${MAKE="make"} : ${MKDIR="mkdir"} : ${MV="mv -f"} : ${RM="rm -f"} : ${SHELL="${CONFIG_SHELL-/bin/sh}"} -: ${Xsed="$SED -e 1s/^X//"} - -# Global variables: -EXIT_SUCCESS=0 -EXIT_FAILURE=1 -EXIT_MISMATCH=63 # $? = 63 is used to indicate version mismatch to missing. -EXIT_SKIP=77 # $? = 77 is used to indicate a skipped test to automake. - -exit_status=$EXIT_SUCCESS - -# Make sure IFS has a sensible default -lt_nl=' -' -IFS=" $lt_nl" -dirname="s,/[^/]*$,," -basename="s,^.*/,," -# func_dirname file append nondir_replacement -# Compute the dirname of FILE. If nonempty, add APPEND to the result, -# otherwise set result to NONDIR_REPLACEMENT. -func_dirname () -{ - func_dirname_result=`$ECHO "${1}" | $SED "$dirname"` - if test "X$func_dirname_result" = "X${1}"; then - func_dirname_result="${3}" - else - func_dirname_result="$func_dirname_result${2}" - fi -} # func_dirname may be replaced by extended shell implementation +## -------------------- ## +## Useful sed snippets. ## +## -------------------- ## +sed_dirname='s|/[^/]*$||' +sed_basename='s|^.*/||' -# func_basename file -func_basename () -{ - func_basename_result=`$ECHO "${1}" | $SED "$basename"` -} # func_basename may be replaced by extended shell implementation +# Sed substitution that helps us do robust quoting. It backslashifies +# metacharacters that are still active within double-quoted strings. +sed_quote_subst='s|\([`"$\\]\)|\\\1|g' +# Same as above, but do not quote variable references. +sed_double_quote_subst='s/\(["`\\]\)/\\\1/g' -# func_dirname_and_basename file append nondir_replacement -# perform func_basename and func_dirname in a single function -# call: -# dirname: Compute the dirname of FILE. If nonempty, -# add APPEND to the result, otherwise set result -# to NONDIR_REPLACEMENT. -# value returned in "$func_dirname_result" -# basename: Compute filename of FILE. -# value retuned in "$func_basename_result" -# Implementation must be kept synchronized with func_dirname -# and func_basename. For efficiency, we do not delegate to -# those functions but instead duplicate the functionality here. -func_dirname_and_basename () -{ - # Extract subdirectory from the argument. - func_dirname_result=`$ECHO "${1}" | $SED -e "$dirname"` - if test "X$func_dirname_result" = "X${1}"; then - func_dirname_result="${3}" - else - func_dirname_result="$func_dirname_result${2}" - fi - func_basename_result=`$ECHO "${1}" | $SED -e "$basename"` -} # func_dirname_and_basename may be replaced by extended shell implementation +# Sed substitution that turns a string into a regex matching for the +# string literally. +sed_make_literal_regex='s|[].[^$\\*\/]|\\&|g' +# Sed substitution that converts a w32 file name or path +# that contains forward slashes, into one that contains +# (escaped) backslashes. A very naive implementation. +sed_naive_backslashify='s|\\\\*|\\|g;s|/|\\|g;s|\\|\\\\|g' -# func_stripname prefix suffix name -# strip PREFIX and SUFFIX off of NAME. -# PREFIX and SUFFIX must not contain globbing or regex special -# characters, hashes, percent signs, but SUFFIX may contain a leading -# dot (in which case that matches only a dot). -# func_strip_suffix prefix name -func_stripname () -{ - case ${2} in - .*) func_stripname_result=`$ECHO "${3}" | $SED "s%^${1}%%; s%\\\\${2}\$%%"`;; - *) func_stripname_result=`$ECHO "${3}" | $SED "s%^${1}%%; s%${2}\$%%"`;; - esac -} # func_stripname may be replaced by extended shell implementation +# Re-'\' parameter expansions in output of sed_double_quote_subst that +# were '\'-ed in input to the same. If an odd number of '\' preceded a +# '$' in input to sed_double_quote_subst, that '$' was protected from +# expansion. Since each input '\' is now two '\'s, look for any number +# of runs of four '\'s followed by two '\'s and then a '$'. '\' that '$'. +_G_bs='\\' +_G_bs2='\\\\' +_G_bs4='\\\\\\\\' +_G_dollar='\$' +sed_double_backslash="\ + s/$_G_bs4/&\\ +/g + s/^$_G_bs2$_G_dollar/$_G_bs&/ + s/\\([^$_G_bs]\\)$_G_bs2$_G_dollar/\\1$_G_bs2$_G_bs$_G_dollar/g + s/\n//g" -# These SED scripts presuppose an absolute path with a trailing slash. -pathcar='s,^/\([^/]*\).*$,\1,' -pathcdr='s,^/[^/]*,,' -removedotparts=':dotsl - s@/\./@/@g - t dotsl - s,/\.$,/,' -collapseslashes='s@/\{1,\}@/@g' -finalslash='s,/*$,/,' +## ----------------- ## +## Global variables. ## +## ----------------- ## + +# Except for the global variables explicitly listed below, the following +# functions in the '^func_' namespace, and the '^require_' namespace +# variables initialised in the 'Resource management' section, sourcing +# this file will not pollute your global namespace with anything +# else. There's no portable way to scope variables in Bourne shell +# though, so actually running these functions will sometimes place +# results into a variable named after the function, and often use +# temporary variables in the '^_G_' namespace. If you are careful to +# avoid using those namespaces casually in your sourcing script, things +# should continue to work as you expect. And, of course, you can freely +# overwrite any of the functions or variables defined here before +# calling anything to customize them. -# func_normal_abspath PATH -# Remove doubled-up and trailing slashes, "." path components, -# and cancel out any ".." path components in PATH after making -# it an absolute path. -# value returned in "$func_normal_abspath_result" -func_normal_abspath () -{ - # Start from root dir and reassemble the path. - func_normal_abspath_result= - func_normal_abspath_tpath=$1 - func_normal_abspath_altnamespace= - case $func_normal_abspath_tpath in - "") - # Empty path, that just means $cwd. - func_stripname '' '/' "`pwd`" - func_normal_abspath_result=$func_stripname_result - return - ;; - # The next three entries are used to spot a run of precisely - # two leading slashes without using negated character classes; - # we take advantage of case's first-match behaviour. - ///*) - # Unusual form of absolute path, do nothing. - ;; - //*) - # Not necessarily an ordinary path; POSIX reserves leading '//' - # and for example Cygwin uses it to access remote file shares - # over CIFS/SMB, so we conserve a leading double slash if found. - func_normal_abspath_altnamespace=/ - ;; - /*) - # Absolute path, do nothing. - ;; - *) - # Relative path, prepend $cwd. - func_normal_abspath_tpath=`pwd`/$func_normal_abspath_tpath - ;; - esac - # Cancel out all the simple stuff to save iterations. We also want - # the path to end with a slash for ease of parsing, so make sure - # there is one (and only one) here. - func_normal_abspath_tpath=`$ECHO "$func_normal_abspath_tpath" | $SED \ - -e "$removedotparts" -e "$collapseslashes" -e "$finalslash"` - while :; do - # Processed it all yet? - if test "$func_normal_abspath_tpath" = / ; then - # If we ascended to the root using ".." the result may be empty now. - if test -z "$func_normal_abspath_result" ; then - func_normal_abspath_result=/ - fi - break - fi - func_normal_abspath_tcomponent=`$ECHO "$func_normal_abspath_tpath" | $SED \ - -e "$pathcar"` - func_normal_abspath_tpath=`$ECHO "$func_normal_abspath_tpath" | $SED \ - -e "$pathcdr"` - # Figure out what to do with it - case $func_normal_abspath_tcomponent in - "") - # Trailing empty path component, ignore it. - ;; - ..) - # Parent dir; strip last assembled component from result. - func_dirname "$func_normal_abspath_result" - func_normal_abspath_result=$func_dirname_result - ;; - *) - # Actual path component, append it. - func_normal_abspath_result=$func_normal_abspath_result/$func_normal_abspath_tcomponent - ;; - esac - done - # Restore leading double-slash if one was found on entry. - func_normal_abspath_result=$func_normal_abspath_altnamespace$func_normal_abspath_result -} +EXIT_SUCCESS=0 +EXIT_FAILURE=1 +EXIT_MISMATCH=63 # $? = 63 is used to indicate version mismatch to missing. +EXIT_SKIP=77 # $? = 77 is used to indicate a skipped test to automake. -# func_relative_path SRCDIR DSTDIR -# generates a relative path from SRCDIR to DSTDIR, with a trailing -# slash if non-empty, suitable for immediately appending a filename -# without needing to append a separator. -# value returned in "$func_relative_path_result" -func_relative_path () -{ - func_relative_path_result= - func_normal_abspath "$1" - func_relative_path_tlibdir=$func_normal_abspath_result - func_normal_abspath "$2" - func_relative_path_tbindir=$func_normal_abspath_result - - # Ascend the tree starting from libdir - while :; do - # check if we have found a prefix of bindir - case $func_relative_path_tbindir in - $func_relative_path_tlibdir) - # found an exact match - func_relative_path_tcancelled= - break - ;; - $func_relative_path_tlibdir*) - # found a matching prefix - func_stripname "$func_relative_path_tlibdir" '' "$func_relative_path_tbindir" - func_relative_path_tcancelled=$func_stripname_result - if test -z "$func_relative_path_result"; then - func_relative_path_result=. - fi - break - ;; - *) - func_dirname $func_relative_path_tlibdir - func_relative_path_tlibdir=${func_dirname_result} - if test "x$func_relative_path_tlibdir" = x ; then - # Have to descend all the way to the root! - func_relative_path_result=../$func_relative_path_result - func_relative_path_tcancelled=$func_relative_path_tbindir - break - fi - func_relative_path_result=../$func_relative_path_result - ;; - esac - done +# Allow overriding, eg assuming that you follow the convention of +# putting '$debug_cmd' at the start of all your functions, you can get +# bash to show function call trace with: +# +# debug_cmd='eval echo "${FUNCNAME[0]} $*" >&2' bash your-script-name +debug_cmd=${debug_cmd-":"} +exit_cmd=: - # Now calculate path; take care to avoid doubling-up slashes. - func_stripname '' '/' "$func_relative_path_result" - func_relative_path_result=$func_stripname_result - func_stripname '/' '/' "$func_relative_path_tcancelled" - if test "x$func_stripname_result" != x ; then - func_relative_path_result=${func_relative_path_result}/${func_stripname_result} - fi +# By convention, finish your script with: +# +# exit $exit_status +# +# so that you can set exit_status to non-zero if you want to indicate +# something went wrong during execution without actually bailing out at +# the point of failure. +exit_status=$EXIT_SUCCESS - # Normalisation. If bindir is libdir, return empty string, - # else relative path ending with a slash; either way, target - # file name can be directly appended. - if test ! -z "$func_relative_path_result"; then - func_stripname './' '' "$func_relative_path_result/" - func_relative_path_result=$func_stripname_result - fi -} +# Work around backward compatibility issue on IRIX 6.5. On IRIX 6.4+, sh +# is ksh but when the shell is invoked as "sh" and the current value of +# the _XPG environment variable is not equal to 1 (one), the special +# positional parameter $0, within a function call, is the name of the +# function. +progpath=$0 -# The name of this program: -func_dirname_and_basename "$progpath" -progname=$func_basename_result +# The name of this program. +progname=`$ECHO "$progpath" |$SED "$sed_basename"` -# Make sure we have an absolute path for reexecution: +# Make sure we have an absolute progpath for reexecution: case $progpath in [\\/]*|[A-Za-z]:\\*) ;; *[\\/]*) - progdir=$func_dirname_result + progdir=`$ECHO "$progpath" |$SED "$sed_dirname"` progdir=`cd "$progdir" && pwd` - progpath="$progdir/$progname" + progpath=$progdir/$progname ;; *) - save_IFS="$IFS" + _G_IFS=$IFS IFS=${PATH_SEPARATOR-:} for progdir in $PATH; do - IFS="$save_IFS" + IFS=$_G_IFS test -x "$progdir/$progname" && break done - IFS="$save_IFS" + IFS=$_G_IFS test -n "$progdir" || progdir=`pwd` - progpath="$progdir/$progname" + progpath=$progdir/$progname ;; esac -# Sed substitution that helps us do robust quoting. It backslashifies -# metacharacters that are still active within double-quoted strings. -Xsed="${SED}"' -e 1s/^X//' -sed_quote_subst='s/\([`"$\\]\)/\\\1/g' - -# Same as above, but do not quote variable references. -double_quote_subst='s/\(["`\\]\)/\\\1/g' - -# Sed substitution that turns a string into a regex matching for the -# string literally. -sed_make_literal_regex='s,[].[^$\\*\/],\\&,g' - -# Sed substitution that converts a w32 file name or path -# which contains forward slashes, into one that contains -# (escaped) backslashes. A very naive implementation. -lt_sed_naive_backslashify='s|\\\\*|\\|g;s|/|\\|g;s|\\|\\\\|g' -# Re-`\' parameter expansions in output of double_quote_subst that were -# `\'-ed in input to the same. If an odd number of `\' preceded a '$' -# in input to double_quote_subst, that '$' was protected from expansion. -# Since each input `\' is now two `\'s, look for any number of runs of -# four `\'s followed by two `\'s and then a '$'. `\' that '$'. -bs='\\' -bs2='\\\\' -bs4='\\\\\\\\' -dollar='\$' -sed_double_backslash="\ - s/$bs4/&\\ -/g - s/^$bs2$dollar/$bs&/ - s/\\([^$bs]\\)$bs2$dollar/\\1$bs2$bs$dollar/g - s/\n//g" +## ----------------- ## +## Standard options. ## +## ----------------- ## + +# The following options affect the operation of the functions defined +# below, and should be set appropriately depending on run-time para- +# meters passed on the command line. -# Standard options: opt_dry_run=false -opt_help=false opt_quiet=false opt_verbose=false -opt_warning=: -# func_echo arg... -# Echo program name prefixed message, along with the current mode -# name if it has been set yet. -func_echo () -{ - $ECHO "$progname: ${opt_mode+$opt_mode: }$*" +# Categories 'all' and 'none' are always available. Append any others +# you will pass as the first argument to func_warning from your own +# code. +warning_categories= + +# By default, display warnings according to 'opt_warning_types'. Set +# 'warning_func' to ':' to elide all warnings, or func_fatal_error to +# treat the next displayed warning as a fatal error. +warning_func=func_warn_and_continue + +# Set to 'all' to display all warnings, 'none' to suppress all +# warnings, or a space delimited list of some subset of +# 'warning_categories' to display only the listed warnings. +opt_warning_types=all + + +## -------------------- ## +## Resource management. ## +## -------------------- ## + +# This section contains definitions for functions that each ensure a +# particular resource (a file, or a non-empty configuration variable for +# example) is available, and if appropriate to extract default values +# from pertinent package files. Call them using their associated +# 'require_*' variable to ensure that they are executed, at most, once. +# +# It's entirely deliberate that calling these functions can set +# variables that don't obey the namespace limitations obeyed by the rest +# of this file, in order that that they be as useful as possible to +# callers. + + +# require_term_colors +# ------------------- +# Allow display of bold text on terminals that support it. +require_term_colors=func_require_term_colors +func_require_term_colors () +{ + $debug_cmd + + test -t 1 && { + # COLORTERM and USE_ANSI_COLORS environment variables take + # precedence, because most terminfo databases neglect to describe + # whether color sequences are supported. + test -n "${COLORTERM+set}" && : ${USE_ANSI_COLORS="1"} + + if test 1 = "$USE_ANSI_COLORS"; then + # Standard ANSI escape sequences + tc_reset='' + tc_bold=''; tc_standout='' + tc_red=''; tc_green='' + tc_blue=''; tc_cyan='' + else + # Otherwise trust the terminfo database after all. + test -n "`tput sgr0 2>/dev/null`" && { + tc_reset=`tput sgr0` + test -n "`tput bold 2>/dev/null`" && tc_bold=`tput bold` + tc_standout=$tc_bold + test -n "`tput smso 2>/dev/null`" && tc_standout=`tput smso` + test -n "`tput setaf 1 2>/dev/null`" && tc_red=`tput setaf 1` + test -n "`tput setaf 2 2>/dev/null`" && tc_green=`tput setaf 2` + test -n "`tput setaf 4 2>/dev/null`" && tc_blue=`tput setaf 4` + test -n "`tput setaf 5 2>/dev/null`" && tc_cyan=`tput setaf 5` + } + fi + } + + require_term_colors=: } -# func_verbose arg... -# Echo program name prefixed message in verbose mode only. -func_verbose () -{ - $opt_verbose && func_echo ${1+"$@"} - # A bug in bash halts the script if the last line of a function - # fails when set -e is in force, so we need another command to - # work around that: - : -} +## ----------------- ## +## Function library. ## +## ----------------- ## -# func_echo_all arg... -# Invoke $ECHO with all args, space-separated. -func_echo_all () -{ - $ECHO "$*" -} +# This section contains a variety of useful functions to call in your +# scripts. Take note of the portable wrappers for features provided by +# some modern shells, which will fall back to slower equivalents on +# less featureful shells. -# func_error arg... -# Echo program name prefixed message to standard error. -func_error () -{ - $ECHO "$progname: ${opt_mode+$opt_mode: }"${1+"$@"} 1>&2 -} -# func_warning arg... -# Echo program name prefixed warning message to standard error. -func_warning () -{ - $opt_warning && $ECHO "$progname: ${opt_mode+$opt_mode: }warning: "${1+"$@"} 1>&2 +# func_append VAR VALUE +# --------------------- +# Append VALUE onto the existing contents of VAR. - # bash bug again: - : -} + # We should try to minimise forks, especially on Windows where they are + # unreasonably slow, so skip the feature probes when bash or zsh are + # being used: + if test set = "${BASH_VERSION+set}${ZSH_VERSION+set}"; then + : ${_G_HAVE_ARITH_OP="yes"} + : ${_G_HAVE_XSI_OPS="yes"} + # The += operator was introduced in bash 3.1 + case $BASH_VERSION in + [12].* | 3.0 | 3.0*) ;; + *) + : ${_G_HAVE_PLUSEQ_OP="yes"} + ;; + esac + fi -# func_fatal_error arg... -# Echo program name prefixed message to standard error, and exit. -func_fatal_error () -{ - func_error ${1+"$@"} - exit $EXIT_FAILURE -} + # _G_HAVE_PLUSEQ_OP + # Can be empty, in which case the shell is probed, "yes" if += is + # useable or anything else if it does not work. + test -z "$_G_HAVE_PLUSEQ_OP" \ + && (eval 'x=a; x+=" b"; test "a b" = "$x"') 2>/dev/null \ + && _G_HAVE_PLUSEQ_OP=yes + +if test yes = "$_G_HAVE_PLUSEQ_OP" +then + # This is an XSI compatible shell, allowing a faster implementation... + eval 'func_append () + { + $debug_cmd -# func_fatal_help arg... -# Echo program name prefixed message to standard error, followed by -# a help hint, and exit. -func_fatal_help () -{ - func_error ${1+"$@"} - func_fatal_error "$help" + eval "$1+=\$2" + }' +else + # ...otherwise fall back to using expr, which is often a shell builtin. + func_append () + { + $debug_cmd + + eval "$1=\$$1\$2" + } +fi + + +# func_append_quoted VAR VALUE +# ---------------------------- +# Quote VALUE and append to the end of shell variable VAR, separated +# by a space. +if test yes = "$_G_HAVE_PLUSEQ_OP"; then + eval 'func_append_quoted () + { + $debug_cmd + + func_quote_arg pretty "$2" + eval "$1+=\\ \$func_quote_arg_result" + }' +else + func_append_quoted () + { + $debug_cmd + + func_quote_arg pretty "$2" + eval "$1=\$$1\\ \$func_quote_arg_result" + } +fi + + +# func_append_uniq VAR VALUE +# -------------------------- +# Append unique VALUE onto the existing contents of VAR, assuming +# entries are delimited by the first character of VALUE. For example: +# +# func_append_uniq options " --another-option option-argument" +# +# will only append to $options if " --another-option option-argument " +# is not already present somewhere in $options already (note spaces at +# each end implied by leading space in second argument). +func_append_uniq () +{ + $debug_cmd + + eval _G_current_value='`$ECHO $'$1'`' + _G_delim=`expr "$2" : '\(.\)'` + + case $_G_delim$_G_current_value$_G_delim in + *"$2$_G_delim"*) ;; + *) func_append "$@" ;; + esac } -help="Try \`$progname --help' for more information." ## default -# func_grep expression filename +# func_arith TERM... +# ------------------ +# Set func_arith_result to the result of evaluating TERMs. + test -z "$_G_HAVE_ARITH_OP" \ + && (eval 'test 2 = $(( 1 + 1 ))') 2>/dev/null \ + && _G_HAVE_ARITH_OP=yes + +if test yes = "$_G_HAVE_ARITH_OP"; then + eval 'func_arith () + { + $debug_cmd + + func_arith_result=$(( $* )) + }' +else + func_arith () + { + $debug_cmd + + func_arith_result=`expr "$@"` + } +fi + + +# func_basename FILE +# ------------------ +# Set func_basename_result to FILE with everything up to and including +# the last / stripped. +if test yes = "$_G_HAVE_XSI_OPS"; then + # If this shell supports suffix pattern removal, then use it to avoid + # forking. Hide the definitions single quotes in case the shell chokes + # on unsupported syntax... + _b='func_basename_result=${1##*/}' + _d='case $1 in + */*) func_dirname_result=${1%/*}$2 ;; + * ) func_dirname_result=$3 ;; + esac' + +else + # ...otherwise fall back to using sed. + _b='func_basename_result=`$ECHO "$1" |$SED "$sed_basename"`' + _d='func_dirname_result=`$ECHO "$1" |$SED "$sed_dirname"` + if test "X$func_dirname_result" = "X$1"; then + func_dirname_result=$3 + else + func_append func_dirname_result "$2" + fi' +fi + +eval 'func_basename () +{ + $debug_cmd + + '"$_b"' +}' + + +# func_dirname FILE APPEND NONDIR_REPLACEMENT +# ------------------------------------------- +# Compute the dirname of FILE. If nonempty, add APPEND to the result, +# otherwise set result to NONDIR_REPLACEMENT. +eval 'func_dirname () +{ + $debug_cmd + + '"$_d"' +}' + + +# func_dirname_and_basename FILE APPEND NONDIR_REPLACEMENT +# -------------------------------------------------------- +# Perform func_basename and func_dirname in a single function +# call: +# dirname: Compute the dirname of FILE. If nonempty, +# add APPEND to the result, otherwise set result +# to NONDIR_REPLACEMENT. +# value returned in "$func_dirname_result" +# basename: Compute filename of FILE. +# value retuned in "$func_basename_result" +# For efficiency, we do not delegate to the functions above but instead +# duplicate the functionality here. +eval 'func_dirname_and_basename () +{ + $debug_cmd + + '"$_b"' + '"$_d"' +}' + + +# func_echo ARG... +# ---------------- +# Echo program name prefixed message. +func_echo () +{ + $debug_cmd + + _G_message=$* + + func_echo_IFS=$IFS + IFS=$nl + for _G_line in $_G_message; do + IFS=$func_echo_IFS + $ECHO "$progname: $_G_line" + done + IFS=$func_echo_IFS +} + + +# func_echo_all ARG... +# -------------------- +# Invoke $ECHO with all args, space-separated. +func_echo_all () +{ + $ECHO "$*" +} + + +# func_echo_infix_1 INFIX ARG... +# ------------------------------ +# Echo program name, followed by INFIX on the first line, with any +# additional lines not showing INFIX. +func_echo_infix_1 () +{ + $debug_cmd + + $require_term_colors + + _G_infix=$1; shift + _G_indent=$_G_infix + _G_prefix="$progname: $_G_infix: " + _G_message=$* + + # Strip color escape sequences before counting printable length + for _G_tc in "$tc_reset" "$tc_bold" "$tc_standout" "$tc_red" "$tc_green" "$tc_blue" "$tc_cyan" + do + test -n "$_G_tc" && { + _G_esc_tc=`$ECHO "$_G_tc" | $SED "$sed_make_literal_regex"` + _G_indent=`$ECHO "$_G_indent" | $SED "s|$_G_esc_tc||g"` + } + done + _G_indent="$progname: "`echo "$_G_indent" | $SED 's|.| |g'`" " ## exclude from sc_prohibit_nested_quotes + + func_echo_infix_1_IFS=$IFS + IFS=$nl + for _G_line in $_G_message; do + IFS=$func_echo_infix_1_IFS + $ECHO "$_G_prefix$tc_bold$_G_line$tc_reset" >&2 + _G_prefix=$_G_indent + done + IFS=$func_echo_infix_1_IFS +} + + +# func_error ARG... +# ----------------- +# Echo program name prefixed message to standard error. +func_error () +{ + $debug_cmd + + $require_term_colors + + func_echo_infix_1 " $tc_standout${tc_red}error$tc_reset" "$*" >&2 +} + + +# func_fatal_error ARG... +# ----------------------- +# Echo program name prefixed message to standard error, and exit. +func_fatal_error () +{ + $debug_cmd + + func_error "$*" + exit $EXIT_FAILURE +} + + +# func_grep EXPRESSION FILENAME +# ----------------------------- # Check whether EXPRESSION matches any line of FILENAME, without output. func_grep () { + $debug_cmd + $GREP "$1" "$2" >/dev/null 2>&1 } -# func_mkdir_p directory-path +# func_len STRING +# --------------- +# Set func_len_result to the length of STRING. STRING may not +# start with a hyphen. + test -z "$_G_HAVE_XSI_OPS" \ + && (eval 'x=a/b/c; + test 5aa/bb/cc = "${#x}${x%%/*}${x%/*}${x#*/}${x##*/}"') 2>/dev/null \ + && _G_HAVE_XSI_OPS=yes + +if test yes = "$_G_HAVE_XSI_OPS"; then + eval 'func_len () + { + $debug_cmd + + func_len_result=${#1} + }' +else + func_len () + { + $debug_cmd + + func_len_result=`expr "$1" : ".*" 2>/dev/null || echo $max_cmd_len` + } +fi + + +# func_mkdir_p DIRECTORY-PATH +# --------------------------- # Make sure the entire path to DIRECTORY-PATH is available. func_mkdir_p () { - my_directory_path="$1" - my_dir_list= + $debug_cmd + + _G_directory_path=$1 + _G_dir_list= - if test -n "$my_directory_path" && test "$opt_dry_run" != ":"; then + if test -n "$_G_directory_path" && test : != "$opt_dry_run"; then - # Protect directory names starting with `-' - case $my_directory_path in - -*) my_directory_path="./$my_directory_path" ;; + # Protect directory names starting with '-' + case $_G_directory_path in + -*) _G_directory_path=./$_G_directory_path ;; esac # While some portion of DIR does not yet exist... - while test ! -d "$my_directory_path"; do + while test ! -d "$_G_directory_path"; do # ...make a list in topmost first order. Use a colon delimited # list incase some portion of path contains whitespace. - my_dir_list="$my_directory_path:$my_dir_list" + _G_dir_list=$_G_directory_path:$_G_dir_list # If the last portion added has no slash in it, the list is done - case $my_directory_path in */*) ;; *) break ;; esac + case $_G_directory_path in */*) ;; *) break ;; esac # ...otherwise throw away the child directory and loop - my_directory_path=`$ECHO "$my_directory_path" | $SED -e "$dirname"` + _G_directory_path=`$ECHO "$_G_directory_path" | $SED -e "$sed_dirname"` done - my_dir_list=`$ECHO "$my_dir_list" | $SED 's,:*$,,'` + _G_dir_list=`$ECHO "$_G_dir_list" | $SED 's|:*$||'` - save_mkdir_p_IFS="$IFS"; IFS=':' - for my_dir in $my_dir_list; do - IFS="$save_mkdir_p_IFS" - # mkdir can fail with a `File exist' error if two processes + func_mkdir_p_IFS=$IFS; IFS=: + for _G_dir in $_G_dir_list; do + IFS=$func_mkdir_p_IFS + # mkdir can fail with a 'File exist' error if two processes # try to create one of the directories concurrently. Don't # stop in that case! - $MKDIR "$my_dir" 2>/dev/null || : + $MKDIR "$_G_dir" 2>/dev/null || : done - IFS="$save_mkdir_p_IFS" + IFS=$func_mkdir_p_IFS # Bail out if we (or some other process) failed to create a directory. - test -d "$my_directory_path" || \ - func_fatal_error "Failed to create \`$1'" + test -d "$_G_directory_path" || \ + func_fatal_error "Failed to create '$1'" fi } -# func_mktempdir [string] +# func_mktempdir [BASENAME] +# ------------------------- # Make a temporary directory that won't clash with other running # libtool processes, and avoids race conditions if possible. If -# given, STRING is the basename for that directory. +# given, BASENAME is the basename for that directory. func_mktempdir () { - my_template="${TMPDIR-/tmp}/${1-$progname}" + $debug_cmd + + _G_template=${TMPDIR-/tmp}/${1-$progname} - if test "$opt_dry_run" = ":"; then + if test : = "$opt_dry_run"; then # Return a directory name, but don't create it in dry-run mode - my_tmpdir="${my_template}-$$" + _G_tmpdir=$_G_template-$$ else - # If mktemp works, use that first and foremost - my_tmpdir=`mktemp -d "${my_template}-XXXXXXXX" 2>/dev/null` + # If mktemp works, use that first and foremost + _G_tmpdir=`mktemp -d "$_G_template-XXXXXXXX" 2>/dev/null` + + if test ! -d "$_G_tmpdir"; then + # Failing that, at least try and use $RANDOM to avoid a race + _G_tmpdir=$_G_template-${RANDOM-0}$$ + + func_mktempdir_umask=`umask` + umask 0077 + $MKDIR "$_G_tmpdir" + umask $func_mktempdir_umask + fi + + # If we're not in dry-run mode, bomb out on failure + test -d "$_G_tmpdir" || \ + func_fatal_error "cannot create temporary directory '$_G_tmpdir'" + fi + + $ECHO "$_G_tmpdir" +} + + +# func_normal_abspath PATH +# ------------------------ +# Remove doubled-up and trailing slashes, "." path components, +# and cancel out any ".." path components in PATH after making +# it an absolute path. +func_normal_abspath () +{ + $debug_cmd + + # These SED scripts presuppose an absolute path with a trailing slash. + _G_pathcar='s|^/\([^/]*\).*$|\1|' + _G_pathcdr='s|^/[^/]*||' + _G_removedotparts=':dotsl + s|/\./|/|g + t dotsl + s|/\.$|/|' + _G_collapseslashes='s|/\{1,\}|/|g' + _G_finalslash='s|/*$|/|' + + # Start from root dir and reassemble the path. + func_normal_abspath_result= + func_normal_abspath_tpath=$1 + func_normal_abspath_altnamespace= + case $func_normal_abspath_tpath in + "") + # Empty path, that just means $cwd. + func_stripname '' '/' "`pwd`" + func_normal_abspath_result=$func_stripname_result + return + ;; + # The next three entries are used to spot a run of precisely + # two leading slashes without using negated character classes; + # we take advantage of case's first-match behaviour. + ///*) + # Unusual form of absolute path, do nothing. + ;; + //*) + # Not necessarily an ordinary path; POSIX reserves leading '//' + # and for example Cygwin uses it to access remote file shares + # over CIFS/SMB, so we conserve a leading double slash if found. + func_normal_abspath_altnamespace=/ + ;; + /*) + # Absolute path, do nothing. + ;; + *) + # Relative path, prepend $cwd. + func_normal_abspath_tpath=`pwd`/$func_normal_abspath_tpath + ;; + esac + + # Cancel out all the simple stuff to save iterations. We also want + # the path to end with a slash for ease of parsing, so make sure + # there is one (and only one) here. + func_normal_abspath_tpath=`$ECHO "$func_normal_abspath_tpath" | $SED \ + -e "$_G_removedotparts" -e "$_G_collapseslashes" -e "$_G_finalslash"` + while :; do + # Processed it all yet? + if test / = "$func_normal_abspath_tpath"; then + # If we ascended to the root using ".." the result may be empty now. + if test -z "$func_normal_abspath_result"; then + func_normal_abspath_result=/ + fi + break + fi + func_normal_abspath_tcomponent=`$ECHO "$func_normal_abspath_tpath" | $SED \ + -e "$_G_pathcar"` + func_normal_abspath_tpath=`$ECHO "$func_normal_abspath_tpath" | $SED \ + -e "$_G_pathcdr"` + # Figure out what to do with it + case $func_normal_abspath_tcomponent in + "") + # Trailing empty path component, ignore it. + ;; + ..) + # Parent dir; strip last assembled component from result. + func_dirname "$func_normal_abspath_result" + func_normal_abspath_result=$func_dirname_result + ;; + *) + # Actual path component, append it. + func_append func_normal_abspath_result "/$func_normal_abspath_tcomponent" + ;; + esac + done + # Restore leading double-slash if one was found on entry. + func_normal_abspath_result=$func_normal_abspath_altnamespace$func_normal_abspath_result +} + + +# func_notquiet ARG... +# -------------------- +# Echo program name prefixed message only when not in quiet mode. +func_notquiet () +{ + $debug_cmd + + $opt_quiet || func_echo ${1+"$@"} + + # A bug in bash halts the script if the last line of a function + # fails when set -e is in force, so we need another command to + # work around that: + : +} + + +# func_relative_path SRCDIR DSTDIR +# -------------------------------- +# Set func_relative_path_result to the relative path from SRCDIR to DSTDIR. +func_relative_path () +{ + $debug_cmd + + func_relative_path_result= + func_normal_abspath "$1" + func_relative_path_tlibdir=$func_normal_abspath_result + func_normal_abspath "$2" + func_relative_path_tbindir=$func_normal_abspath_result + + # Ascend the tree starting from libdir + while :; do + # check if we have found a prefix of bindir + case $func_relative_path_tbindir in + $func_relative_path_tlibdir) + # found an exact match + func_relative_path_tcancelled= + break + ;; + $func_relative_path_tlibdir*) + # found a matching prefix + func_stripname "$func_relative_path_tlibdir" '' "$func_relative_path_tbindir" + func_relative_path_tcancelled=$func_stripname_result + if test -z "$func_relative_path_result"; then + func_relative_path_result=. + fi + break + ;; + *) + func_dirname $func_relative_path_tlibdir + func_relative_path_tlibdir=$func_dirname_result + if test -z "$func_relative_path_tlibdir"; then + # Have to descend all the way to the root! + func_relative_path_result=../$func_relative_path_result + func_relative_path_tcancelled=$func_relative_path_tbindir + break + fi + func_relative_path_result=../$func_relative_path_result + ;; + esac + done + + # Now calculate path; take care to avoid doubling-up slashes. + func_stripname '' '/' "$func_relative_path_result" + func_relative_path_result=$func_stripname_result + func_stripname '/' '/' "$func_relative_path_tcancelled" + if test -n "$func_stripname_result"; then + func_append func_relative_path_result "/$func_stripname_result" + fi + + # Normalisation. If bindir is libdir, return '.' else relative path. + if test -n "$func_relative_path_result"; then + func_stripname './' '' "$func_relative_path_result" + func_relative_path_result=$func_stripname_result + fi + + test -n "$func_relative_path_result" || func_relative_path_result=. + + : +} + + +# func_quote_portable EVAL ARG +# ---------------------------- +# Internal function to portably implement func_quote_arg. Note that we still +# keep attention to performance here so we as much as possible try to avoid +# calling sed binary (so far O(N) complexity as long as func_append is O(1)). +func_quote_portable () +{ + $debug_cmd + + func_quote_portable_result=$2 + + # one-time-loop (easy break) + while true + do + if $1; then + func_quote_portable_result=`$ECHO "$2" | $SED \ + -e "$sed_double_quote_subst" -e "$sed_double_backslash"` + break + fi + + # Quote for eval. + case $func_quote_portable_result in + *[\\\`\"\$]*) + case $func_quote_portable_result in + *[\[\*\?]*) + func_quote_portable_result=`$ECHO "$func_quote_portable_result" | $SED "$sed_quote_subst"` + break + ;; + esac + + func_quote_portable_old_IFS=$IFS + for _G_char in '\' '`' '"' '$' + do + # STATE($1) PREV($2) SEPARATOR($3) + set start "" "" + func_quote_portable_result=dummy"$_G_char$func_quote_portable_result$_G_char"dummy + IFS=$_G_char + for _G_part in $func_quote_portable_result + do + case $1 in + quote) + func_append func_quote_portable_result "$3$2" + set quote "$_G_part" "\\$_G_char" + ;; + start) + set first "" "" + func_quote_portable_result= + ;; + first) + set quote "$_G_part" "" + ;; + esac + done + done + IFS=$func_quote_portable_old_IFS + ;; + *) ;; + esac + break + done + + func_quote_portable_unquoted_result=$func_quote_portable_result + case $func_quote_portable_result in + # double-quote args containing shell metacharacters to delay + # word splitting, command substitution and variable expansion + # for a subsequent eval. + # many bourne shells cannot handle close brackets correctly + # in scan sets, so we specify it separately. + *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") + func_quote_portable_result=\"$func_quote_portable_result\" + ;; + esac +} + + +# func_quotefast_eval ARG +# ----------------------- +# Quote one ARG (internal). This is equivalent to 'func_quote_arg eval ARG', +# but optimized for speed. Result is stored in $func_quotefast_eval. +if test xyes = `(x=; printf -v x %q yes; echo x"$x") 2>/dev/null`; then + func_quotefast_eval () + { + printf -v func_quotefast_eval_result %q "$1" + } +else + func_quotefast_eval () + { + func_quote_portable false "$1" + func_quotefast_eval_result=$func_quote_portable_result + } +fi + + +# func_quote_arg MODEs ARG +# ------------------------ +# Quote one ARG to be evaled later. MODEs argument may contain zero ore more +# specifiers listed below separated by ',' character. This function returns two +# values: +# i) func_quote_arg_result +# double-quoted (when needed), suitable for a subsequent eval +# ii) func_quote_arg_unquoted_result +# has all characters that are still active within double +# quotes backslashified. Available only if 'unquoted' is specified. +# +# Available modes: +# ---------------- +# 'eval' (default) +# - escape shell special characters +# 'expand' +# - the same as 'eval'; but do not quote variable references +# 'pretty' +# - request aesthetic output, i.e. '"a b"' instead of 'a\ b'. This might +# later used in func_quote to get output like: 'echo "a b"' instead of +# 'echo a\ b'. This is slower than default on some shells. +# 'unquoted' +# - produce also $func_quote_arg_unquoted_result which does not contain +# wrapping double-quotes. +# +# Examples for 'func_quote_arg pretty,unquoted string': +# +# string | *_result | *_unquoted_result +# ------------+-----------------------+------------------- +# " | \" | \" +# a b | "a b" | a b +# "a b" | "\"a b\"" | \"a b\" +# * | "*" | * +# z="${x-$y}" | "z=\"\${x-\$y}\"" | z=\"\${x-\$y}\" +# +# Examples for 'func_quote_arg pretty,unquoted,expand string': +# +# string | *_result | *_unquoted_result +# --------------+---------------------+-------------------- +# z="${x-$y}" | "z=\"${x-$y}\"" | z=\"${x-$y}\" +func_quote_arg () +{ + _G_quote_expand=false + case ,$1, in + *,expand,*) + _G_quote_expand=: + ;; + esac + + case ,$1, in + *,pretty,*|*,expand,*|*,unquoted,*) + func_quote_portable $_G_quote_expand "$2" + func_quote_arg_result=$func_quote_portable_result + func_quote_arg_unquoted_result=$func_quote_portable_unquoted_result + ;; + *) + # Faster quote-for-eval for some shells. + func_quotefast_eval "$2" + func_quote_arg_result=$func_quotefast_eval_result + ;; + esac +} + + +# func_quote MODEs ARGs... +# ------------------------ +# Quote all ARGs to be evaled later and join them into single command. See +# func_quote_arg's description for more info. +func_quote () +{ + $debug_cmd + _G_func_quote_mode=$1 ; shift + func_quote_result= + while test 0 -lt $#; do + func_quote_arg "$_G_func_quote_mode" "$1" + if test -n "$func_quote_result"; then + func_append func_quote_result " $func_quote_arg_result" + else + func_append func_quote_result "$func_quote_arg_result" + fi + shift + done +} + + +# func_stripname PREFIX SUFFIX NAME +# --------------------------------- +# strip PREFIX and SUFFIX from NAME, and store in func_stripname_result. +# PREFIX and SUFFIX must not contain globbing or regex special +# characters, hashes, percent signs, but SUFFIX may contain a leading +# dot (in which case that matches only a dot). +if test yes = "$_G_HAVE_XSI_OPS"; then + eval 'func_stripname () + { + $debug_cmd + + # pdksh 5.2.14 does not do ${X%$Y} correctly if both X and Y are + # positional parameters, so assign one to ordinary variable first. + func_stripname_result=$3 + func_stripname_result=${func_stripname_result#"$1"} + func_stripname_result=${func_stripname_result%"$2"} + }' +else + func_stripname () + { + $debug_cmd + + case $2 in + .*) func_stripname_result=`$ECHO "$3" | $SED -e "s%^$1%%" -e "s%\\\\$2\$%%"`;; + *) func_stripname_result=`$ECHO "$3" | $SED -e "s%^$1%%" -e "s%$2\$%%"`;; + esac + } +fi + + +# func_show_eval CMD [FAIL_EXP] +# ----------------------------- +# Unless opt_quiet is true, then output CMD. Then, if opt_dryrun is +# not true, evaluate CMD. If the evaluation of CMD fails, and FAIL_EXP +# is given, then evaluate it. +func_show_eval () +{ + $debug_cmd + + _G_cmd=$1 + _G_fail_exp=${2-':'} + + func_quote_arg pretty,expand "$_G_cmd" + eval "func_notquiet $func_quote_arg_result" + + $opt_dry_run || { + eval "$_G_cmd" + _G_status=$? + if test 0 -ne "$_G_status"; then + eval "(exit $_G_status); $_G_fail_exp" + fi + } +} + + +# func_show_eval_locale CMD [FAIL_EXP] +# ------------------------------------ +# Unless opt_quiet is true, then output CMD. Then, if opt_dryrun is +# not true, evaluate CMD. If the evaluation of CMD fails, and FAIL_EXP +# is given, then evaluate it. Use the saved locale for evaluation. +func_show_eval_locale () +{ + $debug_cmd + + _G_cmd=$1 + _G_fail_exp=${2-':'} + + $opt_quiet || { + func_quote_arg expand,pretty "$_G_cmd" + eval "func_echo $func_quote_arg_result" + } + + $opt_dry_run || { + eval "$_G_user_locale + $_G_cmd" + _G_status=$? + eval "$_G_safe_locale" + if test 0 -ne "$_G_status"; then + eval "(exit $_G_status); $_G_fail_exp" + fi + } +} + + +# func_tr_sh +# ---------- +# Turn $1 into a string suitable for a shell variable name. +# Result is stored in $func_tr_sh_result. All characters +# not in the set a-zA-Z0-9_ are replaced with '_'. Further, +# if $1 begins with a digit, a '_' is prepended as well. +func_tr_sh () +{ + $debug_cmd + + case $1 in + [0-9]* | *[!a-zA-Z0-9_]*) + func_tr_sh_result=`$ECHO "$1" | $SED -e 's/^\([0-9]\)/_\1/' -e 's/[^a-zA-Z0-9_]/_/g'` + ;; + * ) + func_tr_sh_result=$1 + ;; + esac +} + + +# func_verbose ARG... +# ------------------- +# Echo program name prefixed message in verbose mode only. +func_verbose () +{ + $debug_cmd + + $opt_verbose && func_echo "$*" + + : +} + + +# func_warn_and_continue ARG... +# ----------------------------- +# Echo program name prefixed warning message to standard error. +func_warn_and_continue () +{ + $debug_cmd + + $require_term_colors + + func_echo_infix_1 "${tc_red}warning$tc_reset" "$*" >&2 +} + + +# func_warning CATEGORY ARG... +# ---------------------------- +# Echo program name prefixed warning message to standard error. Warning +# messages can be filtered according to CATEGORY, where this function +# elides messages where CATEGORY is not listed in the global variable +# 'opt_warning_types'. +func_warning () +{ + $debug_cmd + + # CATEGORY must be in the warning_categories list! + case " $warning_categories " in + *" $1 "*) ;; + *) func_internal_error "invalid warning category '$1'" ;; + esac + + _G_category=$1 + shift + + case " $opt_warning_types " in + *" $_G_category "*) $warning_func ${1+"$@"} ;; + esac +} + + +# func_sort_ver VER1 VER2 +# ----------------------- +# 'sort -V' is not generally available. +# Note this deviates from the version comparison in automake +# in that it treats 1.5 < 1.5.0, and treats 1.4.4a < 1.4-p3a +# but this should suffice as we won't be specifying old +# version formats or redundant trailing .0 in bootstrap.conf. +# If we did want full compatibility then we should probably +# use m4_version_compare from autoconf. +func_sort_ver () +{ + $debug_cmd + + printf '%s\n%s\n' "$1" "$2" \ + | sort -t. -k 1,1n -k 2,2n -k 3,3n -k 4,4n -k 5,5n -k 6,6n -k 7,7n -k 8,8n -k 9,9n +} + +# func_lt_ver PREV CURR +# --------------------- +# Return true if PREV and CURR are in the correct order according to +# func_sort_ver, otherwise false. Use it like this: +# +# func_lt_ver "$prev_ver" "$proposed_ver" || func_fatal_error "..." +func_lt_ver () +{ + $debug_cmd + + test "x$1" = x`func_sort_ver "$1" "$2" | $SED 1q` +} + + +# Local variables: +# mode: shell-script +# sh-indentation: 2 +# eval: (add-hook 'before-save-hook 'time-stamp) +# time-stamp-pattern: "10/scriptversion=%:y-%02m-%02d.%02H; # UTC" +# time-stamp-time-zone: "UTC" +# End: +#! /bin/sh + +# Set a version string for this script. +scriptversion=2015-10-12.13; # UTC + +# A portable, pluggable option parser for Bourne shell. +# Written by Gary V. Vaughan, 2010 + +# Copyright (C) 2010-2015 Free Software Foundation, Inc. +# This is free software; see the source for copying conditions. There is NO +# warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. + +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . + +# Please report bugs or propose patches to gary@gnu.org. + + +## ------ ## +## Usage. ## +## ------ ## + +# This file is a library for parsing options in your shell scripts along +# with assorted other useful supporting features that you can make use +# of too. +# +# For the simplest scripts you might need only: +# +# #!/bin/sh +# . relative/path/to/funclib.sh +# . relative/path/to/options-parser +# scriptversion=1.0 +# func_options ${1+"$@"} +# eval set dummy "$func_options_result"; shift +# ...rest of your script... +# +# In order for the '--version' option to work, you will need to have a +# suitably formatted comment like the one at the top of this file +# starting with '# Written by ' and ending with '# warranty; '. +# +# For '-h' and '--help' to work, you will also need a one line +# description of your script's purpose in a comment directly above the +# '# Written by ' line, like the one at the top of this file. +# +# The default options also support '--debug', which will turn on shell +# execution tracing (see the comment above debug_cmd below for another +# use), and '--verbose' and the func_verbose function to allow your script +# to display verbose messages only when your user has specified +# '--verbose'. +# +# After sourcing this file, you can plug processing for additional +# options by amending the variables from the 'Configuration' section +# below, and following the instructions in the 'Option parsing' +# section further down. + +## -------------- ## +## Configuration. ## +## -------------- ## + +# You should override these variables in your script after sourcing this +# file so that they reflect the customisations you have added to the +# option parser. + +# The usage line for option parsing errors and the start of '-h' and +# '--help' output messages. You can embed shell variables for delayed +# expansion at the time the message is displayed, but you will need to +# quote other shell meta-characters carefully to prevent them being +# expanded when the contents are evaled. +usage='$progpath [OPTION]...' + +# Short help message in response to '-h' and '--help'. Add to this or +# override it after sourcing this library to reflect the full set of +# options your script accepts. +usage_message="\ + --debug enable verbose shell tracing + -W, --warnings=CATEGORY + report the warnings falling in CATEGORY [all] + -v, --verbose verbosely report processing + --version print version information and exit + -h, --help print short or long help message and exit +" + +# Additional text appended to 'usage_message' in response to '--help'. +long_help_message=" +Warning categories include: + 'all' show all warnings + 'none' turn off all the warnings + 'error' warnings are treated as fatal errors" + +# Help message printed before fatal option parsing errors. +fatal_help="Try '\$progname --help' for more information." + + + +## ------------------------- ## +## Hook function management. ## +## ------------------------- ## + +# This section contains functions for adding, removing, and running hooks +# to the main code. A hook is just a named list of of function, that can +# be run in order later on. + +# func_hookable FUNC_NAME +# ----------------------- +# Declare that FUNC_NAME will run hooks added with +# 'func_add_hook FUNC_NAME ...'. +func_hookable () +{ + $debug_cmd + + func_append hookable_fns " $1" +} + + +# func_add_hook FUNC_NAME HOOK_FUNC +# --------------------------------- +# Request that FUNC_NAME call HOOK_FUNC before it returns. FUNC_NAME must +# first have been declared "hookable" by a call to 'func_hookable'. +func_add_hook () +{ + $debug_cmd + + case " $hookable_fns " in + *" $1 "*) ;; + *) func_fatal_error "'$1' does not accept hook functions." ;; + esac + + eval func_append ${1}_hooks '" $2"' +} + + +# func_remove_hook FUNC_NAME HOOK_FUNC +# ------------------------------------ +# Remove HOOK_FUNC from the list of functions called by FUNC_NAME. +func_remove_hook () +{ + $debug_cmd + + eval ${1}_hooks='`$ECHO "\$'$1'_hooks" |$SED "s| '$2'||"`' +} + + +# func_run_hooks FUNC_NAME [ARG]... +# --------------------------------- +# Run all hook functions registered to FUNC_NAME. +# It is assumed that the list of hook functions contains nothing more +# than a whitespace-delimited list of legal shell function names, and +# no effort is wasted trying to catch shell meta-characters or preserve +# whitespace. +func_run_hooks () +{ + $debug_cmd + + _G_rc_run_hooks=false + + case " $hookable_fns " in + *" $1 "*) ;; + *) func_fatal_error "'$1' does not support hook funcions.n" ;; + esac + + eval _G_hook_fns=\$$1_hooks; shift + + for _G_hook in $_G_hook_fns; do + if eval $_G_hook '"$@"'; then + # store returned options list back into positional + # parameters for next 'cmd' execution. + eval _G_hook_result=\$${_G_hook}_result + eval set dummy "$_G_hook_result"; shift + _G_rc_run_hooks=: + fi + done + + $_G_rc_run_hooks && func_run_hooks_result=$_G_hook_result +} + + + +## --------------- ## +## Option parsing. ## +## --------------- ## + +# In order to add your own option parsing hooks, you must accept the +# full positional parameter list in your hook function, you may remove/edit +# any options that you action, and then pass back the remaining unprocessed +# options in '_result', escaped suitably for +# 'eval'. In this case you also must return $EXIT_SUCCESS to let the +# hook's caller know that it should pay attention to +# '_result'. Returning $EXIT_FAILURE signalizes that +# arguments are left untouched by the hook and therefore caller will ignore the +# result variable. +# +# Like this: +# +# my_options_prep () +# { +# $debug_cmd +# +# # Extend the existing usage message. +# usage_message=$usage_message' +# -s, --silent don'\''t print informational messages +# ' +# # No change in '$@' (ignored completely by this hook). There is +# # no need to do the equivalent (but slower) action: +# # func_quote eval ${1+"$@"} +# # my_options_prep_result=$func_quote_result +# false +# } +# func_add_hook func_options_prep my_options_prep +# +# +# my_silent_option () +# { +# $debug_cmd +# +# args_changed=false +# +# # Note that for efficiency, we parse as many options as we can +# # recognise in a loop before passing the remainder back to the +# # caller on the first unrecognised argument we encounter. +# while test $# -gt 0; do +# opt=$1; shift +# case $opt in +# --silent|-s) opt_silent=: +# args_changed=: +# ;; +# # Separate non-argument short options: +# -s*) func_split_short_opt "$_G_opt" +# set dummy "$func_split_short_opt_name" \ +# "-$func_split_short_opt_arg" ${1+"$@"} +# shift +# args_changed=: +# ;; +# *) # Make sure the first unrecognised option "$_G_opt" +# # is added back to "$@", we could need that later +# # if $args_changed is true. +# set dummy "$_G_opt" ${1+"$@"}; shift; break ;; +# esac +# done +# +# if $args_changed; then +# func_quote eval ${1+"$@"} +# my_silent_option_result=$func_quote_result +# fi +# +# $args_changed +# } +# func_add_hook func_parse_options my_silent_option +# +# +# my_option_validation () +# { +# $debug_cmd +# +# $opt_silent && $opt_verbose && func_fatal_help "\ +# '--silent' and '--verbose' options are mutually exclusive." +# +# false +# } +# func_add_hook func_validate_options my_option_validation +# +# You'll also need to manually amend $usage_message to reflect the extra +# options you parse. It's preferable to append if you can, so that +# multiple option parsing hooks can be added safely. + + +# func_options_finish [ARG]... +# ---------------------------- +# Finishing the option parse loop (call 'func_options' hooks ATM). +func_options_finish () +{ + $debug_cmd + + _G_func_options_finish_exit=false + if func_run_hooks func_options ${1+"$@"}; then + func_options_finish_result=$func_run_hooks_result + _G_func_options_finish_exit=: + fi + + $_G_func_options_finish_exit +} + - if test ! -d "$my_tmpdir"; then - # Failing that, at least try and use $RANDOM to avoid a race - my_tmpdir="${my_template}-${RANDOM-0}$$" +# func_options [ARG]... +# --------------------- +# All the functions called inside func_options are hookable. See the +# individual implementations for details. +func_hookable func_options +func_options () +{ + $debug_cmd - save_mktempdir_umask=`umask` - umask 0077 - $MKDIR "$my_tmpdir" - umask $save_mktempdir_umask + _G_rc_options=false + + for my_func in options_prep parse_options validate_options options_finish + do + if eval func_$my_func '${1+"$@"}'; then + eval _G_res_var='$'"func_${my_func}_result" + eval set dummy "$_G_res_var" ; shift + _G_rc_options=: fi + done - # If we're not in dry-run mode, bomb out on failure - test -d "$my_tmpdir" || \ - func_fatal_error "cannot create temporary directory \`$my_tmpdir'" + # Save modified positional parameters for caller. As a top-level + # options-parser function we always need to set the 'func_options_result' + # variable (regardless the $_G_rc_options value). + if $_G_rc_options; then + func_options_result=$_G_res_var + else + func_quote eval ${1+"$@"} + func_options_result=$func_quote_result fi - $ECHO "$my_tmpdir" + $_G_rc_options } -# func_quote_for_eval arg -# Aesthetically quote ARG to be evaled later. -# This function returns two values: FUNC_QUOTE_FOR_EVAL_RESULT -# is double-quoted, suitable for a subsequent eval, whereas -# FUNC_QUOTE_FOR_EVAL_UNQUOTED_RESULT has merely all characters -# which are still active within double quotes backslashified. -func_quote_for_eval () +# func_options_prep [ARG]... +# -------------------------- +# All initialisations required before starting the option parse loop. +# Note that when calling hook functions, we pass through the list of +# positional parameters. If a hook function modifies that list, and +# needs to propagate that back to rest of this script, then the complete +# modified list must be put in 'func_run_hooks_result' before +# returning $EXIT_SUCCESS (otherwise $EXIT_FAILURE is returned). +func_hookable func_options_prep +func_options_prep () { - case $1 in - *[\\\`\"\$]*) - func_quote_for_eval_unquoted_result=`$ECHO "$1" | $SED "$sed_quote_subst"` ;; - *) - func_quote_for_eval_unquoted_result="$1" ;; - esac + $debug_cmd - case $func_quote_for_eval_unquoted_result in - # Double-quote args containing shell metacharacters to delay - # word splitting, command substitution and and variable - # expansion for a subsequent eval. - # Many Bourne shells cannot handle close brackets correctly - # in scan sets, so we specify it separately. - *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") - func_quote_for_eval_result="\"$func_quote_for_eval_unquoted_result\"" - ;; - *) - func_quote_for_eval_result="$func_quote_for_eval_unquoted_result" - esac + # Option defaults: + opt_verbose=false + opt_warning_types= + + _G_rc_options_prep=false + if func_run_hooks func_options_prep ${1+"$@"}; then + _G_rc_options_prep=: + # save modified positional parameters for caller + func_options_prep_result=$func_run_hooks_result + fi + + $_G_rc_options_prep } -# func_quote_for_expand arg -# Aesthetically quote ARG to be evaled later; same as above, -# but do not quote variable references. -func_quote_for_expand () +# func_parse_options [ARG]... +# --------------------------- +# The main option parsing loop. +func_hookable func_parse_options +func_parse_options () { - case $1 in - *[\\\`\"]*) - my_arg=`$ECHO "$1" | $SED \ - -e "$double_quote_subst" -e "$sed_double_backslash"` ;; - *) - my_arg="$1" ;; - esac + $debug_cmd - case $my_arg in - # Double-quote args containing shell metacharacters to delay - # word splitting and command substitution for a subsequent eval. - # Many Bourne shells cannot handle close brackets correctly - # in scan sets, so we specify it separately. - *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") - my_arg="\"$my_arg\"" - ;; - esac + func_parse_options_result= - func_quote_for_expand_result="$my_arg" -} + _G_rc_parse_options=false + # this just eases exit handling + while test $# -gt 0; do + # Defer to hook functions for initial option parsing, so they + # get priority in the event of reusing an option name. + if func_run_hooks func_parse_options ${1+"$@"}; then + eval set dummy "$func_run_hooks_result"; shift + _G_rc_parse_options=: + fi + # Break out of the loop if we already parsed every option. + test $# -gt 0 || break -# func_show_eval cmd [fail_exp] -# Unless opt_silent is true, then output CMD. Then, if opt_dryrun is -# not true, evaluate CMD. If the evaluation of CMD fails, and FAIL_EXP -# is given, then evaluate it. -func_show_eval () -{ - my_cmd="$1" - my_fail_exp="${2-:}" + _G_match_parse_options=: + _G_opt=$1 + shift + case $_G_opt in + --debug|-x) debug_cmd='set -x' + func_echo "enabling shell trace mode" + $debug_cmd + ;; + + --no-warnings|--no-warning|--no-warn) + set dummy --warnings none ${1+"$@"} + shift + ;; - ${opt_silent-false} || { - func_quote_for_expand "$my_cmd" - eval "func_echo $func_quote_for_expand_result" - } + --warnings|--warning|-W) + if test $# = 0 && func_missing_arg $_G_opt; then + _G_rc_parse_options=: + break + fi + case " $warning_categories $1" in + *" $1 "*) + # trailing space prevents matching last $1 above + func_append_uniq opt_warning_types " $1" + ;; + *all) + opt_warning_types=$warning_categories + ;; + *none) + opt_warning_types=none + warning_func=: + ;; + *error) + opt_warning_types=$warning_categories + warning_func=func_fatal_error + ;; + *) + func_fatal_error \ + "unsupported warning category: '$1'" + ;; + esac + shift + ;; + + --verbose|-v) opt_verbose=: ;; + --version) func_version ;; + -\?|-h) func_usage ;; + --help) func_help ;; + + # Separate optargs to long options (plugins may need this): + --*=*) func_split_equals "$_G_opt" + set dummy "$func_split_equals_lhs" \ + "$func_split_equals_rhs" ${1+"$@"} + shift + ;; + + # Separate optargs to short options: + -W*) + func_split_short_opt "$_G_opt" + set dummy "$func_split_short_opt_name" \ + "$func_split_short_opt_arg" ${1+"$@"} + shift + ;; + + # Separate non-argument short options: + -\?*|-h*|-v*|-x*) + func_split_short_opt "$_G_opt" + set dummy "$func_split_short_opt_name" \ + "-$func_split_short_opt_arg" ${1+"$@"} + shift + ;; + + --) _G_rc_parse_options=: ; break ;; + -*) func_fatal_help "unrecognised option: '$_G_opt'" ;; + *) set dummy "$_G_opt" ${1+"$@"}; shift + _G_match_parse_options=false + break + ;; + esac - if ${opt_dry_run-false}; then :; else - eval "$my_cmd" - my_status=$? - if test "$my_status" -eq 0; then :; else - eval "(exit $my_status); $my_fail_exp" - fi + $_G_match_parse_options && _G_rc_parse_options=: + done + + + if $_G_rc_parse_options; then + # save modified positional parameters for caller + func_quote eval ${1+"$@"} + func_parse_options_result=$func_quote_result fi + + $_G_rc_parse_options } -# func_show_eval_locale cmd [fail_exp] -# Unless opt_silent is true, then output CMD. Then, if opt_dryrun is -# not true, evaluate CMD. If the evaluation of CMD fails, and FAIL_EXP -# is given, then evaluate it. Use the saved locale for evaluation. -func_show_eval_locale () +# func_validate_options [ARG]... +# ------------------------------ +# Perform any sanity checks on option settings and/or unconsumed +# arguments. +func_hookable func_validate_options +func_validate_options () { - my_cmd="$1" - my_fail_exp="${2-:}" + $debug_cmd - ${opt_silent-false} || { - func_quote_for_expand "$my_cmd" - eval "func_echo $func_quote_for_expand_result" - } + _G_rc_validate_options=false - if ${opt_dry_run-false}; then :; else - eval "$lt_user_locale - $my_cmd" - my_status=$? - eval "$lt_safe_locale" - if test "$my_status" -eq 0; then :; else - eval "(exit $my_status); $my_fail_exp" - fi + # Display all warnings if -W was not given. + test -n "$opt_warning_types" || opt_warning_types=" $warning_categories" + + if func_run_hooks func_validate_options ${1+"$@"}; then + # save modified positional parameters for caller + func_validate_options_result=$func_run_hooks_result + _G_rc_validate_options=: fi -} -# func_tr_sh -# Turn $1 into a string suitable for a shell variable name. -# Result is stored in $func_tr_sh_result. All characters -# not in the set a-zA-Z0-9_ are replaced with '_'. Further, -# if $1 begins with a digit, a '_' is prepended as well. -func_tr_sh () -{ - case $1 in - [0-9]* | *[!a-zA-Z0-9_]*) - func_tr_sh_result=`$ECHO "$1" | $SED 's/^\([0-9]\)/_\1/; s/[^a-zA-Z0-9_]/_/g'` - ;; - * ) - func_tr_sh_result=$1 - ;; - esac + # Bail if the options were screwed! + $exit_cmd $EXIT_FAILURE + + $_G_rc_validate_options } -# func_version -# Echo version message to standard output and exit. -func_version () -{ - $opt_debug - $SED -n '/(C)/!b go - :more - /\./!{ - N - s/\n# / / - b more - } - :go - /^# '$PROGRAM' (GNU /,/# warranty; / { - s/^# // - s/^# *$// - s/\((C)\)[ 0-9,-]*\( [1-9][0-9]*\)/\1\2/ - p - }' < "$progpath" - exit $? -} +## ----------------- ## +## Helper functions. ## +## ----------------- ## -# func_usage -# Echo short help message to standard output and exit. -func_usage () +# This section contains the helper functions used by the rest of the +# hookable option parser framework in ascii-betical order. + + +# func_fatal_help ARG... +# ---------------------- +# Echo program name prefixed message to standard error, followed by +# a help hint, and exit. +func_fatal_help () { - $opt_debug + $debug_cmd - $SED -n '/^# Usage:/,/^# *.*--help/ { - s/^# // - s/^# *$// - s/\$progname/'$progname'/ - p - }' < "$progpath" - echo - $ECHO "run \`$progname --help | more' for full usage" - exit $? + eval \$ECHO \""Usage: $usage"\" + eval \$ECHO \""$fatal_help"\" + func_error ${1+"$@"} + exit $EXIT_FAILURE } -# func_help [NOEXIT] -# Echo long help message to standard output and exit, -# unless 'noexit' is passed as argument. + +# func_help +# --------- +# Echo long help message to standard output and exit. func_help () { - $opt_debug + $debug_cmd - $SED -n '/^# Usage:/,/# Report bugs to/ { - :print - s/^# // - s/^# *$// - s*\$progname*'$progname'* - s*\$host*'"$host"'* - s*\$SHELL*'"$SHELL"'* - s*\$LTCC*'"$LTCC"'* - s*\$LTCFLAGS*'"$LTCFLAGS"'* - s*\$LD*'"$LD"'* - s/\$with_gnu_ld/'"$with_gnu_ld"'/ - s/\$automake_version/'"`(${AUTOMAKE-automake} --version) 2>/dev/null |$SED 1q`"'/ - s/\$autoconf_version/'"`(${AUTOCONF-autoconf} --version) 2>/dev/null |$SED 1q`"'/ - p - d - } - /^# .* home page:/b print - /^# General help using/b print - ' < "$progpath" - ret=$? - if test -z "$1"; then - exit $ret - fi + func_usage_message + $ECHO "$long_help_message" + exit 0 } -# func_missing_arg argname + +# func_missing_arg ARGNAME +# ------------------------ # Echo program name prefixed message to standard error and set global # exit_cmd. func_missing_arg () { - $opt_debug + $debug_cmd - func_error "missing argument for $1." + func_error "Missing argument for '$1'." exit_cmd=exit } -# func_split_short_opt shortopt +# func_split_equals STRING +# ------------------------ +# Set func_split_equals_lhs and func_split_equals_rhs shell variables after +# splitting STRING at the '=' sign. +test -z "$_G_HAVE_XSI_OPS" \ + && (eval 'x=a/b/c; + test 5aa/bb/cc = "${#x}${x%%/*}${x%/*}${x#*/}${x##*/}"') 2>/dev/null \ + && _G_HAVE_XSI_OPS=yes + +if test yes = "$_G_HAVE_XSI_OPS" +then + # This is an XSI compatible shell, allowing a faster implementation... + eval 'func_split_equals () + { + $debug_cmd + + func_split_equals_lhs=${1%%=*} + func_split_equals_rhs=${1#*=} + test "x$func_split_equals_lhs" = "x$1" \ + && func_split_equals_rhs= + }' +else + # ...otherwise fall back to using expr, which is often a shell builtin. + func_split_equals () + { + $debug_cmd + + func_split_equals_lhs=`expr "x$1" : 'x\([^=]*\)'` + func_split_equals_rhs= + test "x$func_split_equals_lhs" = "x$1" \ + || func_split_equals_rhs=`expr "x$1" : 'x[^=]*=\(.*\)$'` + } +fi #func_split_equals + + +# func_split_short_opt SHORTOPT +# ----------------------------- # Set func_split_short_opt_name and func_split_short_opt_arg shell # variables after splitting SHORTOPT after the 2nd character. -func_split_short_opt () +if test yes = "$_G_HAVE_XSI_OPS" +then + # This is an XSI compatible shell, allowing a faster implementation... + eval 'func_split_short_opt () + { + $debug_cmd + + func_split_short_opt_arg=${1#??} + func_split_short_opt_name=${1%"$func_split_short_opt_arg"} + }' +else + # ...otherwise fall back to using expr, which is often a shell builtin. + func_split_short_opt () + { + $debug_cmd + + func_split_short_opt_name=`expr "x$1" : 'x-\(.\)'` + func_split_short_opt_arg=`expr "x$1" : 'x-.\(.*\)$'` + } +fi #func_split_short_opt + + +# func_usage +# ---------- +# Echo short help message to standard output and exit. +func_usage () { - my_sed_short_opt='1s/^\(..\).*$/\1/;q' - my_sed_short_rest='1s/^..\(.*\)$/\1/;q' + $debug_cmd - func_split_short_opt_name=`$ECHO "$1" | $SED "$my_sed_short_opt"` - func_split_short_opt_arg=`$ECHO "$1" | $SED "$my_sed_short_rest"` -} # func_split_short_opt may be replaced by extended shell implementation + func_usage_message + $ECHO "Run '$progname --help |${PAGER-more}' for full usage" + exit 0 +} -# func_split_long_opt longopt -# Set func_split_long_opt_name and func_split_long_opt_arg shell -# variables after splitting LONGOPT at the `=' sign. -func_split_long_opt () +# func_usage_message +# ------------------ +# Echo short help message to standard output. +func_usage_message () { - my_sed_long_opt='1s/^\(--[^=]*\)=.*/\1/;q' - my_sed_long_arg='1s/^--[^=]*=//' + $debug_cmd - func_split_long_opt_name=`$ECHO "$1" | $SED "$my_sed_long_opt"` - func_split_long_opt_arg=`$ECHO "$1" | $SED "$my_sed_long_arg"` -} # func_split_long_opt may be replaced by extended shell implementation + eval \$ECHO \""Usage: $usage"\" + echo + $SED -n 's|^# || + /^Written by/{ + x;p;x + } + h + /^Written by/q' < "$progpath" + echo + eval \$ECHO \""$usage_message"\" +} -exit_cmd=: +# func_version +# ------------ +# Echo version message to standard output and exit. +func_version () +{ + $debug_cmd + printf '%s\n' "$progname $scriptversion" + $SED -n ' + /(C)/!b go + :more + /\./!{ + N + s|\n# | | + b more + } + :go + /^# Written by /,/# warranty; / { + s|^# || + s|^# *$|| + s|\((C)\)[ 0-9,-]*[ ,-]\([1-9][0-9]* \)|\1 \2| + p + } + /^# Written by / { + s|^# || + p + } + /^warranty; /q' < "$progpath" + exit $? +} -magic="%%%MAGIC variable%%%" -magic_exe="%%%MAGIC EXE variable%%%" +# Local variables: +# mode: shell-script +# sh-indentation: 2 +# eval: (add-hook 'before-save-hook 'time-stamp) +# time-stamp-pattern: "10/scriptversion=%:y-%02m-%02d.%02H; # UTC" +# time-stamp-time-zone: "UTC" +# End: -# Global variables. -nonopt= -preserve_args= -lo2o="s/\\.lo\$/.${objext}/" -o2lo="s/\\.${objext}\$/.lo/" -extracted_archives= -extracted_serial=0 +# Set a version string. +scriptversion='(GNU libtool) 2.4.6' -# If this variable is set in any of the actions, the command in it -# will be execed at the end. This prevents here-documents from being -# left over by shells. -exec_cmd= -# func_append var value -# Append VALUE to the end of shell variable VAR. -func_append () +# func_echo ARG... +# ---------------- +# Libtool also displays the current mode in messages, so override +# funclib.sh func_echo with this custom definition. +func_echo () { - eval "${1}=\$${1}\${2}" -} # func_append may be replaced by extended shell implementation + $debug_cmd -# func_append_quoted var value -# Quote VALUE and append to the end of shell variable VAR, separated -# by a space. -func_append_quoted () -{ - func_quote_for_eval "${2}" - eval "${1}=\$${1}\\ \$func_quote_for_eval_result" -} # func_append_quoted may be replaced by extended shell implementation + _G_message=$* + + func_echo_IFS=$IFS + IFS=$nl + for _G_line in $_G_message; do + IFS=$func_echo_IFS + $ECHO "$progname${opt_mode+: $opt_mode}: $_G_line" + done + IFS=$func_echo_IFS +} -# func_arith arithmetic-term... -func_arith () +# func_warning ARG... +# ------------------- +# Libtool warnings are not categorized, so override funclib.sh +# func_warning with this simpler definition. +func_warning () { - func_arith_result=`expr "${@}"` -} # func_arith may be replaced by extended shell implementation + $debug_cmd + $warning_func ${1+"$@"} +} -# func_len string -# STRING may not start with a hyphen. -func_len () -{ - func_len_result=`expr "${1}" : ".*" 2>/dev/null || echo $max_cmd_len` -} # func_len may be replaced by extended shell implementation +## ---------------- ## +## Options parsing. ## +## ---------------- ## + +# Hook in the functions to make sure our own options are parsed during +# the option parsing loop. + +usage='$progpath [OPTION]... [MODE-ARG]...' + +# Short help message in response to '-h'. +usage_message="Options: + --config show all configuration variables + --debug enable verbose shell tracing + -n, --dry-run display commands without modifying any files + --features display basic configuration information and exit + --mode=MODE use operation mode MODE + --no-warnings equivalent to '-Wnone' + --preserve-dup-deps don't remove duplicate dependency libraries + --quiet, --silent don't print informational messages + --tag=TAG use configuration variables from tag TAG + -v, --verbose print more informational messages than default + --version print version information + -W, --warnings=CATEGORY report the warnings falling in CATEGORY [all] + -h, --help, --help-all print short, long, or detailed help message +" -# func_lo2o object -func_lo2o () +# Additional text appended to 'usage_message' in response to '--help'. +func_help () { - func_lo2o_result=`$ECHO "${1}" | $SED "$lo2o"` -} # func_lo2o may be replaced by extended shell implementation + $debug_cmd + func_usage_message + $ECHO "$long_help_message -# func_xform libobj-or-source -func_xform () -{ - func_xform_result=`$ECHO "${1}" | $SED 's/\.[^.]*$/.lo/'` -} # func_xform may be replaced by extended shell implementation +MODE must be one of the following: + + clean remove files from the build directory + compile compile a source file into a libtool object + execute automatically set library path, then run a program + finish complete the installation of libtool libraries + install install libraries or executables + link create a library or an executable + uninstall remove libraries from an installed directory + +MODE-ARGS vary depending on the MODE. When passed as first option, +'--mode=MODE' may be abbreviated as 'MODE' or a unique abbreviation of that. +Try '$progname --help --mode=MODE' for a more detailed description of MODE. + +When reporting a bug, please describe a test case to reproduce it and +include the following information: + + host-triplet: $host + shell: $SHELL + compiler: $LTCC + compiler flags: $LTCFLAGS + linker: $LD (gnu? $with_gnu_ld) + version: $progname $scriptversion Debian-2.4.6-4 + automake: `($AUTOMAKE --version) 2>/dev/null |$SED 1q` + autoconf: `($AUTOCONF --version) 2>/dev/null |$SED 1q` + +Report bugs to . +GNU libtool home page: . +General help using GNU software: ." + exit 0 +} + + +# func_lo2o OBJECT-NAME +# --------------------- +# Transform OBJECT-NAME from a '.lo' suffix to the platform specific +# object suffix. + +lo2o=s/\\.lo\$/.$objext/ +o2lo=s/\\.$objext\$/.lo/ +if test yes = "$_G_HAVE_XSI_OPS"; then + eval 'func_lo2o () + { + case $1 in + *.lo) func_lo2o_result=${1%.lo}.$objext ;; + * ) func_lo2o_result=$1 ;; + esac + }' + + # func_xform LIBOBJ-OR-SOURCE + # --------------------------- + # Transform LIBOBJ-OR-SOURCE from a '.o' or '.c' (or otherwise) + # suffix to a '.lo' libtool-object suffix. + eval 'func_xform () + { + func_xform_result=${1%.*}.lo + }' +else + # ...otherwise fall back to using sed. + func_lo2o () + { + func_lo2o_result=`$ECHO "$1" | $SED "$lo2o"` + } -# func_fatal_configuration arg... + func_xform () + { + func_xform_result=`$ECHO "$1" | $SED 's|\.[^.]*$|.lo|'` + } +fi + + +# func_fatal_configuration ARG... +# ------------------------------- # Echo program name prefixed message to standard error, followed by # a configuration failure hint, and exit. func_fatal_configuration () { - func_error ${1+"$@"} - func_error "See the $PACKAGE documentation for more information." - func_fatal_error "Fatal configuration error." + func__fatal_error ${1+"$@"} \ + "See the $PACKAGE documentation for more information." \ + "Fatal configuration error." } # func_config +# ----------- # Display the configuration for all the tags in this script. func_config () { @@ -915,17 +2318,19 @@ exit $? } + # func_features +# ------------- # Display the features supported by this script. func_features () { echo "host: $host" - if test "$build_libtool_libs" = yes; then + if test yes = "$build_libtool_libs"; then echo "enable shared libraries" else echo "disable shared libraries" fi - if test "$build_old_libs" = yes; then + if test yes = "$build_old_libs"; then echo "enable static libraries" else echo "disable static libraries" @@ -934,289 +2339,316 @@ exit $? } -# func_enable_tag tagname + +# func_enable_tag TAGNAME +# ----------------------- # Verify that TAGNAME is valid, and either flag an error and exit, or # enable the TAGNAME tag. We also add TAGNAME to the global $taglist # variable here. func_enable_tag () { - # Global variable: - tagname="$1" + # Global variable: + tagname=$1 - re_begincf="^# ### BEGIN LIBTOOL TAG CONFIG: $tagname\$" - re_endcf="^# ### END LIBTOOL TAG CONFIG: $tagname\$" - sed_extractcf="/$re_begincf/,/$re_endcf/p" - - # Validate tagname. - case $tagname in - *[!-_A-Za-z0-9,/]*) - func_fatal_error "invalid tag name: $tagname" - ;; - esac + re_begincf="^# ### BEGIN LIBTOOL TAG CONFIG: $tagname\$" + re_endcf="^# ### END LIBTOOL TAG CONFIG: $tagname\$" + sed_extractcf=/$re_begincf/,/$re_endcf/p + + # Validate tagname. + case $tagname in + *[!-_A-Za-z0-9,/]*) + func_fatal_error "invalid tag name: $tagname" + ;; + esac - # Don't test for the "default" C tag, as we know it's - # there but not specially marked. - case $tagname in - CC) ;; + # Don't test for the "default" C tag, as we know it's + # there but not specially marked. + case $tagname in + CC) ;; *) - if $GREP "$re_begincf" "$progpath" >/dev/null 2>&1; then - taglist="$taglist $tagname" + if $GREP "$re_begincf" "$progpath" >/dev/null 2>&1; then + taglist="$taglist $tagname" - # Evaluate the configuration. Be careful to quote the path - # and the sed script, to avoid splitting on whitespace, but - # also don't use non-portable quotes within backquotes within - # quotes we have to do it in 2 steps: - extractedcf=`$SED -n -e "$sed_extractcf" < "$progpath"` - eval "$extractedcf" - else - func_error "ignoring unknown tag $tagname" - fi - ;; - esac + # Evaluate the configuration. Be careful to quote the path + # and the sed script, to avoid splitting on whitespace, but + # also don't use non-portable quotes within backquotes within + # quotes we have to do it in 2 steps: + extractedcf=`$SED -n -e "$sed_extractcf" < "$progpath"` + eval "$extractedcf" + else + func_error "ignoring unknown tag $tagname" + fi + ;; + esac } + # func_check_version_match +# ------------------------ # Ensure that we are using m4 macros, and libtool script from the same # release of libtool. func_check_version_match () { - if test "$package_revision" != "$macro_revision"; then - if test "$VERSION" != "$macro_version"; then - if test -z "$macro_version"; then - cat >&2 <<_LT_EOF + if test "$package_revision" != "$macro_revision"; then + if test "$VERSION" != "$macro_version"; then + if test -z "$macro_version"; then + cat >&2 <<_LT_EOF $progname: Version mismatch error. This is $PACKAGE $VERSION, but the $progname: definition of this LT_INIT comes from an older release. $progname: You should recreate aclocal.m4 with macros from $PACKAGE $VERSION $progname: and run autoconf again. _LT_EOF - else - cat >&2 <<_LT_EOF + else + cat >&2 <<_LT_EOF $progname: Version mismatch error. This is $PACKAGE $VERSION, but the $progname: definition of this LT_INIT comes from $PACKAGE $macro_version. $progname: You should recreate aclocal.m4 with macros from $PACKAGE $VERSION $progname: and run autoconf again. _LT_EOF - fi - else - cat >&2 <<_LT_EOF + fi + else + cat >&2 <<_LT_EOF $progname: Version mismatch error. This is $PACKAGE $VERSION, revision $package_revision, $progname: but the definition of this LT_INIT comes from revision $macro_revision. $progname: You should recreate aclocal.m4 with macros from revision $package_revision $progname: of $PACKAGE $VERSION and run autoconf again. _LT_EOF - fi + fi - exit $EXIT_MISMATCH - fi + exit $EXIT_MISMATCH + fi } -# Shorthand for --mode=foo, only valid as the first argument -case $1 in -clean|clea|cle|cl) - shift; set dummy --mode clean ${1+"$@"}; shift - ;; -compile|compil|compi|comp|com|co|c) - shift; set dummy --mode compile ${1+"$@"}; shift - ;; -execute|execut|execu|exec|exe|ex|e) - shift; set dummy --mode execute ${1+"$@"}; shift - ;; -finish|finis|fini|fin|fi|f) - shift; set dummy --mode finish ${1+"$@"}; shift - ;; -install|instal|insta|inst|ins|in|i) - shift; set dummy --mode install ${1+"$@"}; shift - ;; -link|lin|li|l) - shift; set dummy --mode link ${1+"$@"}; shift - ;; -uninstall|uninstal|uninsta|uninst|unins|unin|uni|un|u) - shift; set dummy --mode uninstall ${1+"$@"}; shift - ;; -esac - +# libtool_options_prep [ARG]... +# ----------------------------- +# Preparation for options parsed by libtool. +libtool_options_prep () +{ + $debug_mode + # Option defaults: + opt_config=false + opt_dlopen= + opt_dry_run=false + opt_help=false + opt_mode= + opt_preserve_dup_deps=false + opt_quiet=false -# Option defaults: -opt_debug=: -opt_dry_run=false -opt_config=false -opt_preserve_dup_deps=false -opt_features=false -opt_finish=false -opt_help=false -opt_help_all=false -opt_silent=: -opt_warning=: -opt_verbose=: -opt_silent=false -opt_verbose=false + nonopt= + preserve_args= + _G_rc_lt_options_prep=: -# Parse options once, thoroughly. This comes as soon as possible in the -# script to make things like `--version' happen as quickly as we can. -{ - # this just eases exit handling - while test $# -gt 0; do - opt="$1" - shift - case $opt in - --debug|-x) opt_debug='set -x' - func_echo "enabling shell trace mode" - $opt_debug - ;; - --dry-run|--dryrun|-n) - opt_dry_run=: - ;; - --config) - opt_config=: -func_config - ;; - --dlopen|-dlopen) - optarg="$1" - opt_dlopen="${opt_dlopen+$opt_dlopen -}$optarg" - shift - ;; - --preserve-dup-deps) - opt_preserve_dup_deps=: - ;; - --features) - opt_features=: -func_features - ;; - --finish) - opt_finish=: -set dummy --mode finish ${1+"$@"}; shift - ;; - --help) - opt_help=: - ;; - --help-all) - opt_help_all=: -opt_help=': help-all' - ;; - --mode) - test $# = 0 && func_missing_arg $opt && break - optarg="$1" - opt_mode="$optarg" -case $optarg in - # Valid mode arguments: - clean|compile|execute|finish|install|link|relink|uninstall) ;; - - # Catch anything else as an error - *) func_error "invalid argument for $opt" - exit_cmd=exit - break - ;; -esac - shift - ;; - --no-silent|--no-quiet) - opt_silent=false -func_append preserve_args " $opt" - ;; - --no-warning|--no-warn) - opt_warning=false -func_append preserve_args " $opt" - ;; - --no-verbose) - opt_verbose=false -func_append preserve_args " $opt" - ;; - --silent|--quiet) - opt_silent=: -func_append preserve_args " $opt" - opt_verbose=false - ;; - --verbose|-v) - opt_verbose=: -func_append preserve_args " $opt" -opt_silent=false - ;; - --tag) - test $# = 0 && func_missing_arg $opt && break - optarg="$1" - opt_tag="$optarg" -func_append preserve_args " $opt $optarg" -func_enable_tag "$optarg" - shift - ;; - - -\?|-h) func_usage ;; - --help) func_help ;; - --version) func_version ;; - - # Separate optargs to long options: - --*=*) - func_split_long_opt "$opt" - set dummy "$func_split_long_opt_name" "$func_split_long_opt_arg" ${1+"$@"} - shift - ;; - - # Separate non-argument short options: - -\?*|-h*|-n*|-v*) - func_split_short_opt "$opt" - set dummy "$func_split_short_opt_name" "-$func_split_short_opt_arg" ${1+"$@"} - shift - ;; - - --) break ;; - -*) func_fatal_help "unrecognized option \`$opt'" ;; - *) set dummy "$opt" ${1+"$@"}; shift; break ;; + # Shorthand for --mode=foo, only valid as the first argument + case $1 in + clean|clea|cle|cl) + shift; set dummy --mode clean ${1+"$@"}; shift + ;; + compile|compil|compi|comp|com|co|c) + shift; set dummy --mode compile ${1+"$@"}; shift + ;; + execute|execut|execu|exec|exe|ex|e) + shift; set dummy --mode execute ${1+"$@"}; shift + ;; + finish|finis|fini|fin|fi|f) + shift; set dummy --mode finish ${1+"$@"}; shift + ;; + install|instal|insta|inst|ins|in|i) + shift; set dummy --mode install ${1+"$@"}; shift + ;; + link|lin|li|l) + shift; set dummy --mode link ${1+"$@"}; shift + ;; + uninstall|uninstal|uninsta|uninst|unins|unin|uni|un|u) + shift; set dummy --mode uninstall ${1+"$@"}; shift + ;; + *) + _G_rc_lt_options_prep=false + ;; esac - done - # Validate options: + if $_G_rc_lt_options_prep; then + # Pass back the list of options. + func_quote eval ${1+"$@"} + libtool_options_prep_result=$func_quote_result + fi - # save first non-option argument - if test "$#" -gt 0; then - nonopt="$opt" - shift - fi + $_G_rc_lt_options_prep +} +func_add_hook func_options_prep libtool_options_prep - # preserve --debug - test "$opt_debug" = : || func_append preserve_args " --debug" - case $host in - *cygwin* | *mingw* | *pw32* | *cegcc*) - # don't eliminate duplications in $postdeps and $predeps - opt_duplicate_compiler_generated_deps=: - ;; - *) - opt_duplicate_compiler_generated_deps=$opt_preserve_dup_deps - ;; - esac +# libtool_parse_options [ARG]... +# --------------------------------- +# Provide handling for libtool specific options. +libtool_parse_options () +{ + $debug_cmd - $opt_help || { - # Sanity checks first: - func_check_version_match + _G_rc_lt_parse_options=false - if test "$build_libtool_libs" != yes && test "$build_old_libs" != yes; then - func_fatal_configuration "not configured to build any kind of library" + # Perform our own loop to consume as many options as possible in + # each iteration. + while test $# -gt 0; do + _G_match_lt_parse_options=: + _G_opt=$1 + shift + case $_G_opt in + --dry-run|--dryrun|-n) + opt_dry_run=: + ;; + + --config) func_config ;; + + --dlopen|-dlopen) + opt_dlopen="${opt_dlopen+$opt_dlopen +}$1" + shift + ;; + + --preserve-dup-deps) + opt_preserve_dup_deps=: ;; + + --features) func_features ;; + + --finish) set dummy --mode finish ${1+"$@"}; shift ;; + + --help) opt_help=: ;; + + --help-all) opt_help=': help-all' ;; + + --mode) test $# = 0 && func_missing_arg $_G_opt && break + opt_mode=$1 + case $1 in + # Valid mode arguments: + clean|compile|execute|finish|install|link|relink|uninstall) ;; + + # Catch anything else as an error + *) func_error "invalid argument for $_G_opt" + exit_cmd=exit + break + ;; + esac + shift + ;; + + --no-silent|--no-quiet) + opt_quiet=false + func_append preserve_args " $_G_opt" + ;; + + --no-warnings|--no-warning|--no-warn) + opt_warning=false + func_append preserve_args " $_G_opt" + ;; + + --no-verbose) + opt_verbose=false + func_append preserve_args " $_G_opt" + ;; + + --silent|--quiet) + opt_quiet=: + opt_verbose=false + func_append preserve_args " $_G_opt" + ;; + + --tag) test $# = 0 && func_missing_arg $_G_opt && break + opt_tag=$1 + func_append preserve_args " $_G_opt $1" + func_enable_tag "$1" + shift + ;; + + --verbose|-v) opt_quiet=false + opt_verbose=: + func_append preserve_args " $_G_opt" + ;; + + # An option not handled by this hook function: + *) set dummy "$_G_opt" ${1+"$@"} ; shift + _G_match_lt_parse_options=false + break + ;; + esac + $_G_match_lt_parse_options && _G_rc_lt_parse_options=: + done + + if $_G_rc_lt_parse_options; then + # save modified positional parameters for caller + func_quote eval ${1+"$@"} + libtool_parse_options_result=$func_quote_result fi - # Darwin sucks - eval std_shrext=\"$shrext_cmds\" + $_G_rc_lt_parse_options +} +func_add_hook func_parse_options libtool_parse_options + - # Only execute mode is allowed to have -dlopen flags. - if test -n "$opt_dlopen" && test "$opt_mode" != execute; then - func_error "unrecognized option \`-dlopen'" - $ECHO "$help" 1>&2 - exit $EXIT_FAILURE + +# libtool_validate_options [ARG]... +# --------------------------------- +# Perform any sanity checks on option settings and/or unconsumed +# arguments. +libtool_validate_options () +{ + # save first non-option argument + if test 0 -lt $#; then + nonopt=$1 + shift fi - # Change the help message to a mode-specific one. - generic_help="$help" - help="Try \`$progname --help --mode=$opt_mode' for more information." - } + # preserve --debug + test : = "$debug_cmd" || func_append preserve_args " --debug" + + case $host in + # Solaris2 added to fix http://debbugs.gnu.org/cgi/bugreport.cgi?bug=16452 + # see also: http://gcc.gnu.org/bugzilla/show_bug.cgi?id=59788 + *cygwin* | *mingw* | *pw32* | *cegcc* | *solaris2* | *os2*) + # don't eliminate duplications in $postdeps and $predeps + opt_duplicate_compiler_generated_deps=: + ;; + *) + opt_duplicate_compiler_generated_deps=$opt_preserve_dup_deps + ;; + esac + $opt_help || { + # Sanity checks first: + func_check_version_match + + test yes != "$build_libtool_libs" \ + && test yes != "$build_old_libs" \ + && func_fatal_configuration "not configured to build any kind of library" + + # Darwin sucks + eval std_shrext=\"$shrext_cmds\" + + # Only execute mode is allowed to have -dlopen flags. + if test -n "$opt_dlopen" && test execute != "$opt_mode"; then + func_error "unrecognized option '-dlopen'" + $ECHO "$help" 1>&2 + exit $EXIT_FAILURE + fi + + # Change the help message to a mode-specific one. + generic_help=$help + help="Try '$progname --help --mode=$opt_mode' for more information." + } - # Bail if the options were screwed - $exit_cmd $EXIT_FAILURE + # Pass back the unparsed argument list + func_quote eval ${1+"$@"} + libtool_validate_options_result=$func_quote_result } +func_add_hook func_validate_options libtool_validate_options + +# Process options as early as possible so that --help and --version +# can return quickly. +func_options ${1+"$@"} +eval set dummy "$func_options_result"; shift @@ -1224,24 +2656,52 @@ ## Main. ## ## ----------- ## +magic='%%%MAGIC variable%%%' +magic_exe='%%%MAGIC EXE variable%%%' + +# Global variables. +extracted_archives= +extracted_serial=0 + +# If this variable is set in any of the actions, the command in it +# will be execed at the end. This prevents here-documents from being +# left over by shells. +exec_cmd= + + +# A function that is used when there is no print builtin or printf. +func_fallback_echo () +{ + eval 'cat <<_LTECHO_EOF +$1 +_LTECHO_EOF' +} + +# func_generated_by_libtool +# True iff stdin has been generated by Libtool. This function is only +# a basic sanity check; it will hardly flush out determined imposters. +func_generated_by_libtool_p () +{ + $GREP "^# Generated by .*$PACKAGE" > /dev/null 2>&1 +} + # func_lalib_p file -# True iff FILE is a libtool `.la' library or `.lo' object file. +# True iff FILE is a libtool '.la' library or '.lo' object file. # This function is only a basic sanity check; it will hardly flush out # determined imposters. func_lalib_p () { test -f "$1" && - $SED -e 4q "$1" 2>/dev/null \ - | $GREP "^# Generated by .*$PACKAGE" > /dev/null 2>&1 + $SED -e 4q "$1" 2>/dev/null | func_generated_by_libtool_p } # func_lalib_unsafe_p file -# True iff FILE is a libtool `.la' library or `.lo' object file. +# True iff FILE is a libtool '.la' library or '.lo' object file. # This function implements the same check as func_lalib_p without # resorting to external programs. To this end, it redirects stdin and # closes it afterwards, without saving the original file descriptor. # As a safety measure, use it only where a negative result would be -# fatal anyway. Works if `file' does not exist. +# fatal anyway. Works if 'file' does not exist. func_lalib_unsafe_p () { lalib_p=no @@ -1249,13 +2709,13 @@ for lalib_p_l in 1 2 3 4 do read lalib_p_line - case "$lalib_p_line" in + case $lalib_p_line in \#\ Generated\ by\ *$PACKAGE* ) lalib_p=yes; break;; esac done exec 0<&5 5<&- fi - test "$lalib_p" = yes + test yes = "$lalib_p" } # func_ltwrapper_script_p file @@ -1264,7 +2724,8 @@ # determined imposters. func_ltwrapper_script_p () { - func_lalib_p "$1" + test -f "$1" && + $lt_truncate_bin < "$1" 2>/dev/null | func_generated_by_libtool_p } # func_ltwrapper_executable_p file @@ -1289,7 +2750,7 @@ { func_dirname_and_basename "$1" "" "." func_stripname '' '.exe' "$func_basename_result" - func_ltwrapper_scriptname_result="$func_dirname_result/$objdir/${func_stripname_result}_ltshwrapper" + func_ltwrapper_scriptname_result=$func_dirname_result/$objdir/${func_stripname_result}_ltshwrapper } # func_ltwrapper_p file @@ -1308,11 +2769,13 @@ # FAIL_CMD may read-access the current command in variable CMD! func_execute_cmds () { - $opt_debug + $debug_cmd + save_ifs=$IFS; IFS='~' for cmd in $1; do - IFS=$save_ifs + IFS=$sp$nl eval cmd=\"$cmd\" + IFS=$save_ifs func_show_eval "$cmd" "${2-:}" done IFS=$save_ifs @@ -1324,10 +2787,11 @@ # Note that it is not necessary on cygwin/mingw to append a dot to # FILE even if both FILE and FILE.exe exist: automatic-append-.exe # behavior happens only for exec(3), not for open(2)! Also, sourcing -# `FILE.' does not work on cygwin managed mounts. +# 'FILE.' does not work on cygwin managed mounts. func_source () { - $opt_debug + $debug_cmd + case $1 in */* | *\\*) . "$1" ;; *) . "./$1" ;; @@ -1354,10 +2818,10 @@ # store the result into func_replace_sysroot_result. func_replace_sysroot () { - case "$lt_sysroot:$1" in + case $lt_sysroot:$1 in ?*:"$lt_sysroot"*) func_stripname "$lt_sysroot" '' "$1" - func_replace_sysroot_result="=$func_stripname_result" + func_replace_sysroot_result='='$func_stripname_result ;; *) # Including no sysroot. @@ -1374,7 +2838,8 @@ # arg is usually of the form 'gcc ...' func_infer_tag () { - $opt_debug + $debug_cmd + if test -n "$available_tags" && test -z "$tagname"; then CC_quoted= for arg in $CC; do @@ -1393,7 +2858,7 @@ for z in $available_tags; do if $GREP "^# ### BEGIN LIBTOOL TAG CONFIG: $z$" < "$progpath" > /dev/null; then # Evaluate the configuration. - eval "`${SED} -n -e '/^# ### BEGIN LIBTOOL TAG CONFIG: '$z'$/,/^# ### END LIBTOOL TAG CONFIG: '$z'$/p' < $progpath`" + eval "`$SED -n -e '/^# ### BEGIN LIBTOOL TAG CONFIG: '$z'$/,/^# ### END LIBTOOL TAG CONFIG: '$z'$/p' < $progpath`" CC_quoted= for arg in $CC; do # Double-quote args containing other shell metacharacters. @@ -1418,7 +2883,7 @@ # line option must be used. if test -z "$tagname"; then func_echo "unable to infer tagged configuration" - func_fatal_error "specify a tag with \`--tag'" + func_fatal_error "specify a tag with '--tag'" # else # func_verbose "using $tagname tagged configuration" fi @@ -1434,15 +2899,15 @@ # but don't create it if we're doing a dry run. func_write_libtool_object () { - write_libobj=${1} - if test "$build_libtool_libs" = yes; then - write_lobj=\'${2}\' + write_libobj=$1 + if test yes = "$build_libtool_libs"; then + write_lobj=\'$2\' else write_lobj=none fi - if test "$build_old_libs" = yes; then - write_oldobj=\'${3}\' + if test yes = "$build_old_libs"; then + write_oldobj=\'$3\' else write_oldobj=none fi @@ -1450,7 +2915,7 @@ $opt_dry_run || { cat >${write_libobj}T </dev/null` - if test "$?" -eq 0 && test -n "${func_convert_core_file_wine_to_w32_tmp}"; then + if test "$?" -eq 0 && test -n "$func_convert_core_file_wine_to_w32_tmp"; then func_convert_core_file_wine_to_w32_result=`$ECHO "$func_convert_core_file_wine_to_w32_tmp" | - $SED -e "$lt_sed_naive_backslashify"` + $SED -e "$sed_naive_backslashify"` else func_convert_core_file_wine_to_w32_result= fi @@ -1514,18 +2980,19 @@ # are convertible, then the result may be empty. func_convert_core_path_wine_to_w32 () { - $opt_debug + $debug_cmd + # unfortunately, winepath doesn't convert paths, only file names - func_convert_core_path_wine_to_w32_result="" + func_convert_core_path_wine_to_w32_result= if test -n "$1"; then oldIFS=$IFS IFS=: for func_convert_core_path_wine_to_w32_f in $1; do IFS=$oldIFS func_convert_core_file_wine_to_w32 "$func_convert_core_path_wine_to_w32_f" - if test -n "$func_convert_core_file_wine_to_w32_result" ; then + if test -n "$func_convert_core_file_wine_to_w32_result"; then if test -z "$func_convert_core_path_wine_to_w32_result"; then - func_convert_core_path_wine_to_w32_result="$func_convert_core_file_wine_to_w32_result" + func_convert_core_path_wine_to_w32_result=$func_convert_core_file_wine_to_w32_result else func_append func_convert_core_path_wine_to_w32_result ";$func_convert_core_file_wine_to_w32_result" fi @@ -1554,7 +3021,8 @@ # environment variable; do not put it in $PATH. func_cygpath () { - $opt_debug + $debug_cmd + if test -n "$LT_CYGPATH" && test -f "$LT_CYGPATH"; then func_cygpath_result=`$LT_CYGPATH "$@" 2>/dev/null` if test "$?" -ne 0; then @@ -1563,7 +3031,7 @@ fi else func_cygpath_result= - func_error "LT_CYGPATH is empty or specifies non-existent file: \`$LT_CYGPATH'" + func_error "LT_CYGPATH is empty or specifies non-existent file: '$LT_CYGPATH'" fi } #end: func_cygpath @@ -1574,10 +3042,11 @@ # result in func_convert_core_msys_to_w32_result. func_convert_core_msys_to_w32 () { - $opt_debug + $debug_cmd + # awkward: cmd appends spaces to result func_convert_core_msys_to_w32_result=`( cmd //c echo "$1" ) 2>/dev/null | - $SED -e 's/[ ]*$//' -e "$lt_sed_naive_backslashify"` + $SED -e 's/[ ]*$//' -e "$sed_naive_backslashify"` } #end: func_convert_core_msys_to_w32 @@ -1588,13 +3057,14 @@ # func_to_host_file_result to ARG1). func_convert_file_check () { - $opt_debug - if test -z "$2" && test -n "$1" ; then + $debug_cmd + + if test -z "$2" && test -n "$1"; then func_error "Could not determine host file name corresponding to" - func_error " \`$1'" + func_error " '$1'" func_error "Continuing, but uninstalled executables may not work." # Fallback: - func_to_host_file_result="$1" + func_to_host_file_result=$1 fi } # end func_convert_file_check @@ -1606,10 +3076,11 @@ # func_to_host_file_result to a simplistic fallback value (see below). func_convert_path_check () { - $opt_debug + $debug_cmd + if test -z "$4" && test -n "$3"; then func_error "Could not determine the host path corresponding to" - func_error " \`$3'" + func_error " '$3'" func_error "Continuing, but uninstalled executables may not work." # Fallback. This is a deliberately simplistic "conversion" and # should not be "improved". See libtool.info. @@ -1618,7 +3089,7 @@ func_to_host_path_result=`echo "$3" | $SED -e "$lt_replace_pathsep_chars"` else - func_to_host_path_result="$3" + func_to_host_path_result=$3 fi fi } @@ -1630,9 +3101,10 @@ # and appending REPL if ORIG matches BACKPAT. func_convert_path_front_back_pathsep () { - $opt_debug + $debug_cmd + case $4 in - $1 ) func_to_host_path_result="$3$func_to_host_path_result" + $1 ) func_to_host_path_result=$3$func_to_host_path_result ;; esac case $4 in @@ -1646,7 +3118,7 @@ ################################################## # $build to $host FILE NAME CONVERSION FUNCTIONS # ################################################## -# invoked via `$to_host_file_cmd ARG' +# invoked via '$to_host_file_cmd ARG' # # In each case, ARG is the path to be converted from $build to $host format. # Result will be available in $func_to_host_file_result. @@ -1657,7 +3129,8 @@ # in func_to_host_file_result. func_to_host_file () { - $opt_debug + $debug_cmd + $to_host_file_cmd "$1" } # end func_to_host_file @@ -1669,7 +3142,8 @@ # in (the comma separated) LAZY, no conversion takes place. func_to_tool_file () { - $opt_debug + $debug_cmd + case ,$2, in *,"$to_tool_file_cmd",*) func_to_tool_file_result=$1 @@ -1687,7 +3161,7 @@ # Copy ARG to func_to_host_file_result. func_convert_file_noop () { - func_to_host_file_result="$1" + func_to_host_file_result=$1 } # end func_convert_file_noop @@ -1698,11 +3172,12 @@ # func_to_host_file_result. func_convert_file_msys_to_w32 () { - $opt_debug - func_to_host_file_result="$1" + $debug_cmd + + func_to_host_file_result=$1 if test -n "$1"; then func_convert_core_msys_to_w32 "$1" - func_to_host_file_result="$func_convert_core_msys_to_w32_result" + func_to_host_file_result=$func_convert_core_msys_to_w32_result fi func_convert_file_check "$1" "$func_to_host_file_result" } @@ -1714,8 +3189,9 @@ # func_to_host_file_result. func_convert_file_cygwin_to_w32 () { - $opt_debug - func_to_host_file_result="$1" + $debug_cmd + + func_to_host_file_result=$1 if test -n "$1"; then # because $build is cygwin, we call "the" cygpath in $PATH; no need to use # LT_CYGPATH in this case. @@ -1731,11 +3207,12 @@ # and a working winepath. Returns result in func_to_host_file_result. func_convert_file_nix_to_w32 () { - $opt_debug - func_to_host_file_result="$1" + $debug_cmd + + func_to_host_file_result=$1 if test -n "$1"; then func_convert_core_file_wine_to_w32 "$1" - func_to_host_file_result="$func_convert_core_file_wine_to_w32_result" + func_to_host_file_result=$func_convert_core_file_wine_to_w32_result fi func_convert_file_check "$1" "$func_to_host_file_result" } @@ -1747,12 +3224,13 @@ # Returns result in func_to_host_file_result. func_convert_file_msys_to_cygwin () { - $opt_debug - func_to_host_file_result="$1" + $debug_cmd + + func_to_host_file_result=$1 if test -n "$1"; then func_convert_core_msys_to_w32 "$1" func_cygpath -u "$func_convert_core_msys_to_w32_result" - func_to_host_file_result="$func_cygpath_result" + func_to_host_file_result=$func_cygpath_result fi func_convert_file_check "$1" "$func_to_host_file_result" } @@ -1765,13 +3243,14 @@ # in func_to_host_file_result. func_convert_file_nix_to_cygwin () { - $opt_debug - func_to_host_file_result="$1" + $debug_cmd + + func_to_host_file_result=$1 if test -n "$1"; then # convert from *nix to w32, then use cygpath to convert from w32 to cygwin. func_convert_core_file_wine_to_w32 "$1" func_cygpath -u "$func_convert_core_file_wine_to_w32_result" - func_to_host_file_result="$func_cygpath_result" + func_to_host_file_result=$func_cygpath_result fi func_convert_file_check "$1" "$func_to_host_file_result" } @@ -1781,7 +3260,7 @@ ############################################# # $build to $host PATH CONVERSION FUNCTIONS # ############################################# -# invoked via `$to_host_path_cmd ARG' +# invoked via '$to_host_path_cmd ARG' # # In each case, ARG is the path to be converted from $build to $host format. # The result will be available in $func_to_host_path_result. @@ -1805,10 +3284,11 @@ to_host_path_cmd= func_init_to_host_path_cmd () { - $opt_debug + $debug_cmd + if test -z "$to_host_path_cmd"; then func_stripname 'func_convert_file_' '' "$to_host_file_cmd" - to_host_path_cmd="func_convert_path_${func_stripname_result}" + to_host_path_cmd=func_convert_path_$func_stripname_result fi } @@ -1818,7 +3298,8 @@ # in func_to_host_path_result. func_to_host_path () { - $opt_debug + $debug_cmd + func_init_to_host_path_cmd $to_host_path_cmd "$1" } @@ -1829,7 +3310,7 @@ # Copy ARG to func_to_host_path_result. func_convert_path_noop () { - func_to_host_path_result="$1" + func_to_host_path_result=$1 } # end func_convert_path_noop @@ -1840,8 +3321,9 @@ # func_to_host_path_result. func_convert_path_msys_to_w32 () { - $opt_debug - func_to_host_path_result="$1" + $debug_cmd + + func_to_host_path_result=$1 if test -n "$1"; then # Remove leading and trailing path separator characters from ARG. MSYS # behavior is inconsistent here; cygpath turns them into '.;' and ';.'; @@ -1849,7 +3331,7 @@ func_stripname : : "$1" func_to_host_path_tmp1=$func_stripname_result func_convert_core_msys_to_w32 "$func_to_host_path_tmp1" - func_to_host_path_result="$func_convert_core_msys_to_w32_result" + func_to_host_path_result=$func_convert_core_msys_to_w32_result func_convert_path_check : ";" \ "$func_to_host_path_tmp1" "$func_to_host_path_result" func_convert_path_front_back_pathsep ":*" "*:" ";" "$1" @@ -1863,8 +3345,9 @@ # func_to_host_file_result. func_convert_path_cygwin_to_w32 () { - $opt_debug - func_to_host_path_result="$1" + $debug_cmd + + func_to_host_path_result=$1 if test -n "$1"; then # See func_convert_path_msys_to_w32: func_stripname : : "$1" @@ -1883,14 +3366,15 @@ # a working winepath. Returns result in func_to_host_file_result. func_convert_path_nix_to_w32 () { - $opt_debug - func_to_host_path_result="$1" + $debug_cmd + + func_to_host_path_result=$1 if test -n "$1"; then # See func_convert_path_msys_to_w32: func_stripname : : "$1" func_to_host_path_tmp1=$func_stripname_result func_convert_core_path_wine_to_w32 "$func_to_host_path_tmp1" - func_to_host_path_result="$func_convert_core_path_wine_to_w32_result" + func_to_host_path_result=$func_convert_core_path_wine_to_w32_result func_convert_path_check : ";" \ "$func_to_host_path_tmp1" "$func_to_host_path_result" func_convert_path_front_back_pathsep ":*" "*:" ";" "$1" @@ -1904,15 +3388,16 @@ # Returns result in func_to_host_file_result. func_convert_path_msys_to_cygwin () { - $opt_debug - func_to_host_path_result="$1" + $debug_cmd + + func_to_host_path_result=$1 if test -n "$1"; then # See func_convert_path_msys_to_w32: func_stripname : : "$1" func_to_host_path_tmp1=$func_stripname_result func_convert_core_msys_to_w32 "$func_to_host_path_tmp1" func_cygpath -u -p "$func_convert_core_msys_to_w32_result" - func_to_host_path_result="$func_cygpath_result" + func_to_host_path_result=$func_cygpath_result func_convert_path_check : : \ "$func_to_host_path_tmp1" "$func_to_host_path_result" func_convert_path_front_back_pathsep ":*" "*:" : "$1" @@ -1927,8 +3412,9 @@ # func_to_host_file_result. func_convert_path_nix_to_cygwin () { - $opt_debug - func_to_host_path_result="$1" + $debug_cmd + + func_to_host_path_result=$1 if test -n "$1"; then # Remove leading and trailing path separator characters from # ARG. msys behavior is inconsistent here, cygpath turns them @@ -1937,7 +3423,7 @@ func_to_host_path_tmp1=$func_stripname_result func_convert_core_path_wine_to_w32 "$func_to_host_path_tmp1" func_cygpath -u -p "$func_convert_core_path_wine_to_w32_result" - func_to_host_path_result="$func_cygpath_result" + func_to_host_path_result=$func_cygpath_result func_convert_path_check : : \ "$func_to_host_path_tmp1" "$func_to_host_path_result" func_convert_path_front_back_pathsep ":*" "*:" : "$1" @@ -1946,13 +3432,31 @@ # end func_convert_path_nix_to_cygwin +# func_dll_def_p FILE +# True iff FILE is a Windows DLL '.def' file. +# Keep in sync with _LT_DLL_DEF_P in libtool.m4 +func_dll_def_p () +{ + $debug_cmd + + func_dll_def_p_tmp=`$SED -n \ + -e 's/^[ ]*//' \ + -e '/^\(;.*\)*$/d' \ + -e 's/^\(EXPORTS\|LIBRARY\)\([ ].*\)*$/DEF/p' \ + -e q \ + "$1"` + test DEF = "$func_dll_def_p_tmp" +} + + # func_mode_compile arg... func_mode_compile () { - $opt_debug + $debug_cmd + # Get the compilation command and the source file. base_compile= - srcfile="$nonopt" # always keep a non-empty value in "srcfile" + srcfile=$nonopt # always keep a non-empty value in "srcfile" suppress_opt=yes suppress_output= arg_mode=normal @@ -1965,12 +3469,12 @@ case $arg_mode in arg ) # do not "continue". Instead, add this to base_compile - lastarg="$arg" + lastarg=$arg arg_mode=normal ;; target ) - libobj="$arg" + libobj=$arg arg_mode=normal continue ;; @@ -1980,7 +3484,7 @@ case $arg in -o) test -n "$libobj" && \ - func_fatal_error "you cannot specify \`-o' more than once" + func_fatal_error "you cannot specify '-o' more than once" arg_mode=target continue ;; @@ -2009,12 +3513,12 @@ func_stripname '-Wc,' '' "$arg" args=$func_stripname_result lastarg= - save_ifs="$IFS"; IFS=',' + save_ifs=$IFS; IFS=, for arg in $args; do - IFS="$save_ifs" + IFS=$save_ifs func_append_quoted lastarg "$arg" done - IFS="$save_ifs" + IFS=$save_ifs func_stripname ' ' '' "$lastarg" lastarg=$func_stripname_result @@ -2027,8 +3531,8 @@ # Accept the current argument as the source file. # The previous "srcfile" becomes the current argument. # - lastarg="$srcfile" - srcfile="$arg" + lastarg=$srcfile + srcfile=$arg ;; esac # case $arg ;; @@ -2043,13 +3547,13 @@ func_fatal_error "you must specify an argument for -Xcompile" ;; target) - func_fatal_error "you must specify a target with \`-o'" + func_fatal_error "you must specify a target with '-o'" ;; *) # Get the name of the library object. test -z "$libobj" && { func_basename "$srcfile" - libobj="$func_basename_result" + libobj=$func_basename_result } ;; esac @@ -2069,7 +3573,7 @@ case $libobj in *.lo) func_lo2o "$libobj"; obj=$func_lo2o_result ;; *) - func_fatal_error "cannot determine name of library object from \`$libobj'" + func_fatal_error "cannot determine name of library object from '$libobj'" ;; esac @@ -2078,8 +3582,8 @@ for arg in $later; do case $arg in -shared) - test "$build_libtool_libs" != yes && \ - func_fatal_configuration "can not build a shared library" + test yes = "$build_libtool_libs" \ + || func_fatal_configuration "cannot build a shared library" build_old_libs=no continue ;; @@ -2102,20 +3606,20 @@ esac done - func_quote_for_eval "$libobj" - test "X$libobj" != "X$func_quote_for_eval_result" \ + func_quote_arg pretty "$libobj" + test "X$libobj" != "X$func_quote_arg_result" \ && $ECHO "X$libobj" | $GREP '[]~#^*{};<>?"'"'"' &()|`$[]' \ - && func_warning "libobj name \`$libobj' may not contain shell special characters." + && func_warning "libobj name '$libobj' may not contain shell special characters." func_dirname_and_basename "$obj" "/" "" - objname="$func_basename_result" - xdir="$func_dirname_result" - lobj=${xdir}$objdir/$objname + objname=$func_basename_result + xdir=$func_dirname_result + lobj=$xdir$objdir/$objname test -z "$base_compile" && \ func_fatal_help "you must specify a compilation command" # Delete any leftover library objects. - if test "$build_old_libs" = yes; then + if test yes = "$build_old_libs"; then removelist="$obj $lobj $libobj ${libobj}T" else removelist="$lobj $libobj ${libobj}T" @@ -2127,16 +3631,16 @@ pic_mode=default ;; esac - if test "$pic_mode" = no && test "$deplibs_check_method" != pass_all; then + if test no = "$pic_mode" && test pass_all != "$deplibs_check_method"; then # non-PIC code in shared libraries is not supported pic_mode=default fi # Calculate the filename of the output object if compiler does # not support -o with -c - if test "$compiler_c_o" = no; then - output_obj=`$ECHO "$srcfile" | $SED 's%^.*/%%; s%\.[^.]*$%%'`.${objext} - lockfile="$output_obj.lock" + if test no = "$compiler_c_o"; then + output_obj=`$ECHO "$srcfile" | $SED 's%^.*/%%; s%\.[^.]*$%%'`.$objext + lockfile=$output_obj.lock else output_obj= need_locks=no @@ -2145,12 +3649,12 @@ # Lock this critical section if it is needed # We use this script file to make the link, it avoids creating a new file - if test "$need_locks" = yes; then + if test yes = "$need_locks"; then until $opt_dry_run || ln "$progpath" "$lockfile" 2>/dev/null; do func_echo "Waiting for $lockfile to be removed" sleep 2 done - elif test "$need_locks" = warn; then + elif test warn = "$need_locks"; then if test -f "$lockfile"; then $ECHO "\ *** ERROR, $lockfile exists and contains: @@ -2158,7 +3662,7 @@ This indicates that another process is trying to use the same temporary object file, and libtool could not work around it because -your compiler does not support \`-c' and \`-o' together. If you +your compiler does not support '-c' and '-o' together. If you repeat this compilation, it may succeed, by chance, but you had better avoid parallel builds (make -j) in this platform, or get a better compiler." @@ -2176,15 +3680,15 @@ func_to_tool_file "$srcfile" func_convert_file_msys_to_w32 srcfile=$func_to_tool_file_result - func_quote_for_eval "$srcfile" - qsrcfile=$func_quote_for_eval_result + func_quote_arg pretty "$srcfile" + qsrcfile=$func_quote_arg_result # Only build a PIC object if we are building libtool libraries. - if test "$build_libtool_libs" = yes; then + if test yes = "$build_libtool_libs"; then # Without this assignment, base_compile gets emptied. fbsd_hideous_sh_bug=$base_compile - if test "$pic_mode" != no; then + if test no != "$pic_mode"; then command="$base_compile $qsrcfile $pic_flag" else # Don't build PIC code @@ -2201,7 +3705,7 @@ func_show_eval_locale "$command" \ 'test -n "$output_obj" && $RM $removelist; exit $EXIT_FAILURE' - if test "$need_locks" = warn && + if test warn = "$need_locks" && test "X`cat $lockfile 2>/dev/null`" != "X$srcfile"; then $ECHO "\ *** ERROR, $lockfile contains: @@ -2212,7 +3716,7 @@ This indicates that another process is trying to use the same temporary object file, and libtool could not work around it because -your compiler does not support \`-c' and \`-o' together. If you +your compiler does not support '-c' and '-o' together. If you repeat this compilation, it may succeed, by chance, but you had better avoid parallel builds (make -j) in this platform, or get a better compiler." @@ -2228,20 +3732,20 @@ fi # Allow error messages only from the first compilation. - if test "$suppress_opt" = yes; then + if test yes = "$suppress_opt"; then suppress_output=' >/dev/null 2>&1' fi fi # Only build a position-dependent object if we build old libraries. - if test "$build_old_libs" = yes; then - if test "$pic_mode" != yes; then + if test yes = "$build_old_libs"; then + if test yes != "$pic_mode"; then # Don't build PIC code command="$base_compile $qsrcfile$pie_flag" else command="$base_compile $qsrcfile $pic_flag" fi - if test "$compiler_c_o" = yes; then + if test yes = "$compiler_c_o"; then func_append command " -o $obj" fi @@ -2250,7 +3754,7 @@ func_show_eval_locale "$command" \ '$opt_dry_run || $RM $removelist; exit $EXIT_FAILURE' - if test "$need_locks" = warn && + if test warn = "$need_locks" && test "X`cat $lockfile 2>/dev/null`" != "X$srcfile"; then $ECHO "\ *** ERROR, $lockfile contains: @@ -2261,7 +3765,7 @@ This indicates that another process is trying to use the same temporary object file, and libtool could not work around it because -your compiler does not support \`-c' and \`-o' together. If you +your compiler does not support '-c' and '-o' together. If you repeat this compilation, it may succeed, by chance, but you had better avoid parallel builds (make -j) in this platform, or get a better compiler." @@ -2281,7 +3785,7 @@ func_write_libtool_object "$libobj" "$objdir/$objname" "$objname" # Unlock the critical section if it was locked - if test "$need_locks" != no; then + if test no != "$need_locks"; then removelist=$lockfile $RM "$lockfile" fi @@ -2291,7 +3795,7 @@ } $opt_help || { - test "$opt_mode" = compile && func_mode_compile ${1+"$@"} + test compile = "$opt_mode" && func_mode_compile ${1+"$@"} } func_mode_help () @@ -2311,7 +3815,7 @@ Remove files from the build directory. RM is the name of the program to use to delete files associated with each FILE -(typically \`/bin/rm'). RM-OPTIONS are options (such as \`-f') to be passed +(typically '/bin/rm'). RM-OPTIONS are options (such as '-f') to be passed to RM. If FILE is a libtool library, object or program, all the files associated @@ -2330,16 +3834,16 @@ -no-suppress do not suppress compiler output for multiple passes -prefer-pic try to build PIC objects only -prefer-non-pic try to build non-PIC objects only - -shared do not build a \`.o' file suitable for static linking - -static only build a \`.o' file suitable for static linking + -shared do not build a '.o' file suitable for static linking + -static only build a '.o' file suitable for static linking -Wc,FLAG pass FLAG directly to the compiler -COMPILE-COMMAND is a command to be used in creating a \`standard' object file +COMPILE-COMMAND is a command to be used in creating a 'standard' object file from the given SOURCEFILE. The output file name is determined by removing the directory component from -SOURCEFILE, then substituting the C source code suffix \`.c' with the -library object suffix, \`.lo'." +SOURCEFILE, then substituting the C source code suffix '.c' with the +library object suffix, '.lo'." ;; execute) @@ -2352,7 +3856,7 @@ -dlopen FILE add the directory containing FILE to the library path -This mode sets the library path environment variable according to \`-dlopen' +This mode sets the library path environment variable according to '-dlopen' flags. If any of the ARGS are libtool executable wrappers, then they are translated @@ -2371,7 +3875,7 @@ Each LIBDIR is a directory that contains libtool libraries. The commands that this mode executes may require superuser privileges. Use -the \`--dry-run' option if you just want to see what would be executed." +the '--dry-run' option if you just want to see what would be executed." ;; install) @@ -2381,7 +3885,7 @@ Install executables or libraries. INSTALL-COMMAND is the installation command. The first component should be -either the \`install' or \`cp' program. +either the 'install' or 'cp' program. The following components of INSTALL-COMMAND are treated specially: @@ -2407,7 +3911,7 @@ -avoid-version do not add a version suffix if possible -bindir BINDIR specify path to binaries directory (for systems where libraries must be found in the PATH setting at runtime) - -dlopen FILE \`-dlpreopen' FILE if it cannot be dlopened at runtime + -dlopen FILE '-dlpreopen' FILE if it cannot be dlopened at runtime -dlpreopen FILE link in FILE and add its symbols to lt_preloaded_symbols -export-dynamic allow symbols from OUTPUT-FILE to be resolved with dlsym(3) -export-symbols SYMFILE @@ -2421,7 +3925,8 @@ -no-install link a not-installable executable -no-undefined declare that a library does not refer to external symbols -o OUTPUT-FILE create OUTPUT-FILE from the specified objects - -objectlist FILE Use a list of object files found in FILE to specify objects + -objectlist FILE use a list of object files found in FILE to specify objects + -os2dllname NAME force a short DLL name on OS/2 (no effect on other OSes) -precious-files-regex REGEX don't remove output files matching REGEX -release RELEASE specify package release information @@ -2441,20 +3946,20 @@ -Xlinker FLAG pass linker-specific FLAG directly to the linker -XCClinker FLAG pass link-specific FLAG to the compiler driver (CC) -All other options (arguments beginning with \`-') are ignored. +All other options (arguments beginning with '-') are ignored. -Every other argument is treated as a filename. Files ending in \`.la' are +Every other argument is treated as a filename. Files ending in '.la' are treated as uninstalled libtool libraries, other files are standard or library object files. -If the OUTPUT-FILE ends in \`.la', then a libtool library is created, -only library objects (\`.lo' files) may be specified, and \`-rpath' is +If the OUTPUT-FILE ends in '.la', then a libtool library is created, +only library objects ('.lo' files) may be specified, and '-rpath' is required, except when creating a convenience library. -If OUTPUT-FILE ends in \`.a' or \`.lib', then a standard library is created -using \`ar' and \`ranlib', or on Windows using \`lib'. +If OUTPUT-FILE ends in '.a' or '.lib', then a standard library is created +using 'ar' and 'ranlib', or on Windows using 'lib'. -If OUTPUT-FILE ends in \`.lo' or \`.${objext}', then a reloadable object file +If OUTPUT-FILE ends in '.lo' or '.$objext', then a reloadable object file is created, otherwise an executable program is created." ;; @@ -2465,7 +3970,7 @@ Remove libraries from an installation directory. RM is the name of the program to use to delete files associated with each FILE -(typically \`/bin/rm'). RM-OPTIONS are options (such as \`-f') to be passed +(typically '/bin/rm'). RM-OPTIONS are options (such as '-f') to be passed to RM. If FILE is a libtool library, all the files associated with it are deleted. @@ -2473,17 +3978,17 @@ ;; *) - func_fatal_help "invalid operation mode \`$opt_mode'" + func_fatal_help "invalid operation mode '$opt_mode'" ;; esac echo - $ECHO "Try \`$progname --help' for more information about other modes." + $ECHO "Try '$progname --help' for more information about other modes." } # Now that we've collected a possible --mode arg, show help if necessary if $opt_help; then - if test "$opt_help" = :; then + if test : = "$opt_help"; then func_mode_help else { @@ -2491,7 +3996,7 @@ for opt_mode in compile link execute install finish uninstall clean; do func_mode_help done - } | sed -n '1p; 2,$s/^Usage:/ or: /p' + } | $SED -n '1p; 2,$s/^Usage:/ or: /p' { func_help noexit for opt_mode in compile link execute install finish uninstall clean; do @@ -2499,7 +4004,7 @@ func_mode_help done } | - sed '1d + $SED '1d /^When reporting/,/^Report/{ H d @@ -2516,16 +4021,17 @@ # func_mode_execute arg... func_mode_execute () { - $opt_debug + $debug_cmd + # The first argument is the command name. - cmd="$nonopt" + cmd=$nonopt test -z "$cmd" && \ func_fatal_help "you must specify a COMMAND" # Handle -dlopen flags immediately. for file in $opt_dlopen; do test -f "$file" \ - || func_fatal_help "\`$file' is not a file" + || func_fatal_help "'$file' is not a file" dir= case $file in @@ -2535,7 +4041,7 @@ # Check to see that this really is a libtool archive. func_lalib_unsafe_p "$file" \ - || func_fatal_help "\`$lib' is not a valid libtool archive" + || func_fatal_help "'$lib' is not a valid libtool archive" # Read the libtool library. dlname= @@ -2546,18 +4052,18 @@ if test -z "$dlname"; then # Warn if it was a shared library. test -n "$library_names" && \ - func_warning "\`$file' was not linked with \`-export-dynamic'" + func_warning "'$file' was not linked with '-export-dynamic'" continue fi func_dirname "$file" "" "." - dir="$func_dirname_result" + dir=$func_dirname_result if test -f "$dir/$objdir/$dlname"; then func_append dir "/$objdir" else if test ! -f "$dir/$dlname"; then - func_fatal_error "cannot find \`$dlname' in \`$dir' or \`$dir/$objdir'" + func_fatal_error "cannot find '$dlname' in '$dir' or '$dir/$objdir'" fi fi ;; @@ -2565,18 +4071,18 @@ *.lo) # Just add the directory containing the .lo file. func_dirname "$file" "" "." - dir="$func_dirname_result" + dir=$func_dirname_result ;; *) - func_warning "\`-dlopen' is ignored for non-libtool libraries and objects" + func_warning "'-dlopen' is ignored for non-libtool libraries and objects" continue ;; esac # Get the absolute pathname. absdir=`cd "$dir" && pwd` - test -n "$absdir" && dir="$absdir" + test -n "$absdir" && dir=$absdir # Now add the directory to shlibpath_var. if eval "test -z \"\$$shlibpath_var\""; then @@ -2588,7 +4094,7 @@ # This variable tells wrapper scripts just to set shlibpath_var # rather than running their programs. - libtool_execute_magic="$magic" + libtool_execute_magic=$magic # Check if any of the arguments is a wrapper script. args= @@ -2601,12 +4107,12 @@ if func_ltwrapper_script_p "$file"; then func_source "$file" # Transform arg to wrapped name. - file="$progdir/$program" + file=$progdir/$program elif func_ltwrapper_executable_p "$file"; then func_ltwrapper_scriptname "$file" func_source "$func_ltwrapper_scriptname_result" # Transform arg to wrapped name. - file="$progdir/$program" + file=$progdir/$program fi ;; esac @@ -2614,7 +4120,15 @@ func_append_quoted args "$file" done - if test "X$opt_dry_run" = Xfalse; then + if $opt_dry_run; then + # Display what would be done. + if test -n "$shlibpath_var"; then + eval "\$ECHO \"\$shlibpath_var=\$$shlibpath_var\"" + echo "export $shlibpath_var" + fi + $ECHO "$cmd$args" + exit $EXIT_SUCCESS + else if test -n "$shlibpath_var"; then # Export the shlibpath_var. eval "export $shlibpath_var" @@ -2631,25 +4145,18 @@ done # Now prepare to actually exec the command. - exec_cmd="\$cmd$args" - else - # Display what would be done. - if test -n "$shlibpath_var"; then - eval "\$ECHO \"\$shlibpath_var=\$$shlibpath_var\"" - echo "export $shlibpath_var" - fi - $ECHO "$cmd$args" - exit $EXIT_SUCCESS + exec_cmd=\$cmd$args fi } -test "$opt_mode" = execute && func_mode_execute ${1+"$@"} +test execute = "$opt_mode" && func_mode_execute ${1+"$@"} # func_mode_finish arg... func_mode_finish () { - $opt_debug + $debug_cmd + libs= libdirs= admincmds= @@ -2663,11 +4170,11 @@ if func_lalib_unsafe_p "$opt"; then func_append libs " $opt" else - func_warning "\`$opt' is not a valid libtool archive" + func_warning "'$opt' is not a valid libtool archive" fi else - func_fatal_error "invalid argument \`$opt'" + func_fatal_error "invalid argument '$opt'" fi done @@ -2682,12 +4189,12 @@ # Remove sysroot references if $opt_dry_run; then for lib in $libs; do - echo "removing references to $lt_sysroot and \`=' prefixes from $lib" + echo "removing references to $lt_sysroot and '=' prefixes from $lib" done else tmpdir=`func_mktempdir` for lib in $libs; do - sed -e "${sysroot_cmd} s/\([ ']-[LR]\)=/\1/g; s/\([ ']\)=/\1/g" $lib \ + $SED -e "$sysroot_cmd s/\([ ']-[LR]\)=/\1/g; s/\([ ']\)=/\1/g" $lib \ > $tmpdir/tmp-la mv -f $tmpdir/tmp-la $lib done @@ -2712,7 +4219,7 @@ fi # Exit here if they wanted silent mode. - $opt_silent && exit $EXIT_SUCCESS + $opt_quiet && exit $EXIT_SUCCESS if test -n "$finish_cmds$finish_eval" && test -n "$libdirs"; then echo "----------------------------------------------------------------------" @@ -2723,27 +4230,27 @@ echo echo "If you ever happen to want to link against installed libraries" echo "in a given directory, LIBDIR, you must either use libtool, and" - echo "specify the full pathname of the library, or use the \`-LLIBDIR'" + echo "specify the full pathname of the library, or use the '-LLIBDIR'" echo "flag during linking and do at least one of the following:" if test -n "$shlibpath_var"; then - echo " - add LIBDIR to the \`$shlibpath_var' environment variable" + echo " - add LIBDIR to the '$shlibpath_var' environment variable" echo " during execution" fi if test -n "$runpath_var"; then - echo " - add LIBDIR to the \`$runpath_var' environment variable" + echo " - add LIBDIR to the '$runpath_var' environment variable" echo " during linking" fi if test -n "$hardcode_libdir_flag_spec"; then libdir=LIBDIR eval flag=\"$hardcode_libdir_flag_spec\" - $ECHO " - use the \`$flag' linker flag" + $ECHO " - use the '$flag' linker flag" fi if test -n "$admincmds"; then $ECHO " - have your system administrator run these commands:$admincmds" fi if test -f /etc/ld.so.conf; then - echo " - have your system administrator add LIBDIR to \`/etc/ld.so.conf'" + echo " - have your system administrator add LIBDIR to '/etc/ld.so.conf'" fi echo @@ -2762,21 +4269,23 @@ exit $EXIT_SUCCESS } -test "$opt_mode" = finish && func_mode_finish ${1+"$@"} +test finish = "$opt_mode" && func_mode_finish ${1+"$@"} # func_mode_install arg... func_mode_install () { - $opt_debug + $debug_cmd + # There may be an optional sh(1) argument at the beginning of # install_prog (especially on Windows NT). - if test "$nonopt" = "$SHELL" || test "$nonopt" = /bin/sh || + if test "$SHELL" = "$nonopt" || test /bin/sh = "$nonopt" || # Allow the use of GNU shtool's install command. - case $nonopt in *shtool*) :;; *) false;; esac; then + case $nonopt in *shtool*) :;; *) false;; esac + then # Aesthetically quote it. - func_quote_for_eval "$nonopt" - install_prog="$func_quote_for_eval_result " + func_quote_arg pretty "$nonopt" + install_prog="$func_quote_arg_result " arg=$1 shift else @@ -2786,8 +4295,8 @@ # The real first argument should be the name of the installation program. # Aesthetically quote it. - func_quote_for_eval "$arg" - func_append install_prog "$func_quote_for_eval_result" + func_quote_arg pretty "$arg" + func_append install_prog "$func_quote_arg_result" install_shared_prog=$install_prog case " $install_prog " in *[\\\ /]cp\ *) install_cp=: ;; @@ -2800,7 +4309,7 @@ opts= prev= install_type= - isdir=no + isdir=false stripme= no_mode=: for arg @@ -2813,7 +4322,7 @@ fi case $arg in - -d) isdir=yes ;; + -d) isdir=: ;; -f) if $install_cp; then :; else prev=$arg @@ -2831,7 +4340,7 @@ *) # If the previous option needed an argument, then skip it. if test -n "$prev"; then - if test "x$prev" = x-m && test -n "$install_override_mode"; then + if test X-m = "X$prev" && test -n "$install_override_mode"; then arg2=$install_override_mode no_mode=false fi @@ -2844,24 +4353,24 @@ esac # Aesthetically quote the argument. - func_quote_for_eval "$arg" - func_append install_prog " $func_quote_for_eval_result" + func_quote_arg pretty "$arg" + func_append install_prog " $func_quote_arg_result" if test -n "$arg2"; then - func_quote_for_eval "$arg2" + func_quote_arg pretty "$arg2" fi - func_append install_shared_prog " $func_quote_for_eval_result" + func_append install_shared_prog " $func_quote_arg_result" done test -z "$install_prog" && \ func_fatal_help "you must specify an install program" test -n "$prev" && \ - func_fatal_help "the \`$prev' option requires an argument" + func_fatal_help "the '$prev' option requires an argument" if test -n "$install_override_mode" && $no_mode; then if $install_cp; then :; else - func_quote_for_eval "$install_override_mode" - func_append install_shared_prog " -m $func_quote_for_eval_result" + func_quote_arg pretty "$install_override_mode" + func_append install_shared_prog " -m $func_quote_arg_result" fi fi @@ -2878,19 +4387,19 @@ dest=$func_stripname_result # Check to see that the destination is a directory. - test -d "$dest" && isdir=yes - if test "$isdir" = yes; then - destdir="$dest" + test -d "$dest" && isdir=: + if $isdir; then + destdir=$dest destname= else func_dirname_and_basename "$dest" "" "." - destdir="$func_dirname_result" - destname="$func_basename_result" + destdir=$func_dirname_result + destname=$func_basename_result # Not a directory, so check to see that there is only one file specified. set dummy $files; shift test "$#" -gt 1 && \ - func_fatal_help "\`$dest' is not a directory" + func_fatal_help "'$dest' is not a directory" fi case $destdir in [\\/]* | [A-Za-z]:[\\/]*) ;; @@ -2899,7 +4408,7 @@ case $file in *.lo) ;; *) - func_fatal_help "\`$destdir' must be an absolute directory name" + func_fatal_help "'$destdir' must be an absolute directory name" ;; esac done @@ -2908,7 +4417,7 @@ # This variable tells wrapper scripts just to set variables rather # than running their programs. - libtool_install_magic="$magic" + libtool_install_magic=$magic staticlibs= future_libdirs= @@ -2928,7 +4437,7 @@ # Check to see that this really is a libtool archive. func_lalib_unsafe_p "$file" \ - || func_fatal_help "\`$file' is not a valid libtool archive" + || func_fatal_help "'$file' is not a valid libtool archive" library_names= old_library= @@ -2950,7 +4459,7 @@ fi func_dirname "$file" "/" "" - dir="$func_dirname_result" + dir=$func_dirname_result func_append dir "$objdir" if test -n "$relink_command"; then @@ -2964,7 +4473,7 @@ # are installed into $libdir/../bin (currently, that works fine) # but it's something to keep an eye on. test "$inst_prefix_dir" = "$destdir" && \ - func_fatal_error "error: cannot install \`$file' to a directory not ending in $libdir" + func_fatal_error "error: cannot install '$file' to a directory not ending in $libdir" if test -n "$inst_prefix_dir"; then # Stick the inst_prefix_dir data into the link command. @@ -2973,29 +4482,36 @@ relink_command=`$ECHO "$relink_command" | $SED "s%@inst_prefix_dir@%%"` fi - func_warning "relinking \`$file'" + func_warning "relinking '$file'" func_show_eval "$relink_command" \ - 'func_fatal_error "error: relink \`$file'\'' with the above command before installing it"' + 'func_fatal_error "error: relink '\''$file'\'' with the above command before installing it"' fi # See the names of the shared library. set dummy $library_names; shift if test -n "$1"; then - realname="$1" + realname=$1 shift - srcname="$realname" - test -n "$relink_command" && srcname="$realname"T + srcname=$realname + test -n "$relink_command" && srcname=${realname}T # Install the shared library and build the symlinks. func_show_eval "$install_shared_prog $dir/$srcname $destdir/$realname" \ 'exit $?' - tstripme="$stripme" + tstripme=$stripme case $host_os in cygwin* | mingw* | pw32* | cegcc*) case $realname in *.dll.a) - tstripme="" + tstripme= + ;; + esac + ;; + os2*) + case $realname in + *_dll.a) + tstripme= ;; esac ;; @@ -3006,7 +4522,7 @@ if test "$#" -gt 0; then # Delete the old symlinks, and create new ones. - # Try `ln -sf' first, because the `ln' binary might depend on + # Try 'ln -sf' first, because the 'ln' binary might depend on # the symlink we replace! Solaris /bin/ln does not understand -f, # so we also need to try rm && ln -s. for linkname @@ -3017,14 +4533,14 @@ fi # Do each command in the postinstall commands. - lib="$destdir/$realname" + lib=$destdir/$realname func_execute_cmds "$postinstall_cmds" 'exit $?' fi # Install the pseudo-library for information purposes. func_basename "$file" - name="$func_basename_result" - instname="$dir/$name"i + name=$func_basename_result + instname=$dir/${name}i func_show_eval "$install_prog $instname $destdir/$name" 'exit $?' # Maybe install the static library, too. @@ -3036,11 +4552,11 @@ # Figure out destination file name, if it wasn't already specified. if test -n "$destname"; then - destfile="$destdir/$destname" + destfile=$destdir/$destname else func_basename "$file" - destfile="$func_basename_result" - destfile="$destdir/$destfile" + destfile=$func_basename_result + destfile=$destdir/$destfile fi # Deduce the name of the destination old-style object file. @@ -3050,11 +4566,11 @@ staticdest=$func_lo2o_result ;; *.$objext) - staticdest="$destfile" + staticdest=$destfile destfile= ;; *) - func_fatal_help "cannot copy a libtool object to \`$destfile'" + func_fatal_help "cannot copy a libtool object to '$destfile'" ;; esac @@ -3063,7 +4579,7 @@ func_show_eval "$install_prog $file $destfile" 'exit $?' # Install the old object if enabled. - if test "$build_old_libs" = yes; then + if test yes = "$build_old_libs"; then # Deduce the name of the old-style object file. func_lo2o "$file" staticobj=$func_lo2o_result @@ -3075,23 +4591,23 @@ *) # Figure out destination file name, if it wasn't already specified. if test -n "$destname"; then - destfile="$destdir/$destname" + destfile=$destdir/$destname else func_basename "$file" - destfile="$func_basename_result" - destfile="$destdir/$destfile" + destfile=$func_basename_result + destfile=$destdir/$destfile fi # If the file is missing, and there is a .exe on the end, strip it # because it is most likely a libtool script we actually want to # install - stripped_ext="" + stripped_ext= case $file in *.exe) if test ! -f "$file"; then func_stripname '' '.exe' "$file" file=$func_stripname_result - stripped_ext=".exe" + stripped_ext=.exe fi ;; esac @@ -3119,19 +4635,19 @@ # Check the variables that should have been set. test -z "$generated_by_libtool_version" && \ - func_fatal_error "invalid libtool wrapper script \`$wrapper'" + func_fatal_error "invalid libtool wrapper script '$wrapper'" - finalize=yes + finalize=: for lib in $notinst_deplibs; do # Check to see that each library is installed. libdir= if test -f "$lib"; then func_source "$lib" fi - libfile="$libdir/"`$ECHO "$lib" | $SED 's%^.*/%%g'` ### testsuite: skip nested quoting test + libfile=$libdir/`$ECHO "$lib" | $SED 's%^.*/%%g'` if test -n "$libdir" && test ! -f "$libfile"; then - func_warning "\`$lib' has not been installed in \`$libdir'" - finalize=no + func_warning "'$lib' has not been installed in '$libdir'" + finalize=false fi done @@ -3139,29 +4655,29 @@ func_source "$wrapper" outputname= - if test "$fast_install" = no && test -n "$relink_command"; then + if test no = "$fast_install" && test -n "$relink_command"; then $opt_dry_run || { - if test "$finalize" = yes; then + if $finalize; then tmpdir=`func_mktempdir` func_basename "$file$stripped_ext" - file="$func_basename_result" - outputname="$tmpdir/$file" + file=$func_basename_result + outputname=$tmpdir/$file # Replace the output file specification. relink_command=`$ECHO "$relink_command" | $SED 's%@OUTPUT@%'"$outputname"'%g'` - $opt_silent || { - func_quote_for_expand "$relink_command" - eval "func_echo $func_quote_for_expand_result" + $opt_quiet || { + func_quote_arg expand,pretty "$relink_command" + eval "func_echo $func_quote_arg_result" } if eval "$relink_command"; then : else - func_error "error: relink \`$file' with the above command before installing it" + func_error "error: relink '$file' with the above command before installing it" $opt_dry_run || ${RM}r "$tmpdir" continue fi - file="$outputname" + file=$outputname else - func_warning "cannot relink \`$file'" + func_warning "cannot relink '$file'" fi } else @@ -3198,10 +4714,10 @@ for file in $staticlibs; do func_basename "$file" - name="$func_basename_result" + name=$func_basename_result # Set up the ranlib parameters. - oldlib="$destdir/$name" + oldlib=$destdir/$name func_to_tool_file "$oldlib" func_convert_file_msys_to_w32 tool_oldlib=$func_to_tool_file_result @@ -3216,18 +4732,18 @@ done test -n "$future_libdirs" && \ - func_warning "remember to run \`$progname --finish$future_libdirs'" + func_warning "remember to run '$progname --finish$future_libdirs'" if test -n "$current_libdirs"; then # Maybe just do a dry run. $opt_dry_run && current_libdirs=" -n$current_libdirs" - exec_cmd='$SHELL $progpath $preserve_args --finish$current_libdirs' + exec_cmd='$SHELL "$progpath" $preserve_args --finish$current_libdirs' else exit $EXIT_SUCCESS fi } -test "$opt_mode" = install && func_mode_install ${1+"$@"} +test install = "$opt_mode" && func_mode_install ${1+"$@"} # func_generate_dlsyms outputname originator pic_p @@ -3235,16 +4751,17 @@ # a dlpreopen symbol table. func_generate_dlsyms () { - $opt_debug - my_outputname="$1" - my_originator="$2" - my_pic_p="${3-no}" - my_prefix=`$ECHO "$my_originator" | sed 's%[^a-zA-Z0-9]%_%g'` + $debug_cmd + + my_outputname=$1 + my_originator=$2 + my_pic_p=${3-false} + my_prefix=`$ECHO "$my_originator" | $SED 's%[^a-zA-Z0-9]%_%g'` my_dlsyms= - if test -n "$dlfiles$dlprefiles" || test "$dlself" != no; then + if test -n "$dlfiles$dlprefiles" || test no != "$dlself"; then if test -n "$NM" && test -n "$global_symbol_pipe"; then - my_dlsyms="${my_outputname}S.c" + my_dlsyms=${my_outputname}S.c else func_error "not configured to extract global symbols from dlpreopened files" fi @@ -3255,7 +4772,7 @@ "") ;; *.c) # Discover the nlist of each of the dlfiles. - nlist="$output_objdir/${my_outputname}.nm" + nlist=$output_objdir/$my_outputname.nm func_show_eval "$RM $nlist ${nlist}S ${nlist}T" @@ -3263,34 +4780,36 @@ func_verbose "creating $output_objdir/$my_dlsyms" $opt_dry_run || $ECHO > "$output_objdir/$my_dlsyms" "\ -/* $my_dlsyms - symbol resolution table for \`$my_outputname' dlsym emulation. */ -/* Generated by $PROGRAM (GNU $PACKAGE$TIMESTAMP) $VERSION */ +/* $my_dlsyms - symbol resolution table for '$my_outputname' dlsym emulation. */ +/* Generated by $PROGRAM (GNU $PACKAGE) $VERSION */ #ifdef __cplusplus extern \"C\" { #endif -#if defined(__GNUC__) && (((__GNUC__ == 4) && (__GNUC_MINOR__ >= 4)) || (__GNUC__ > 4)) +#if defined __GNUC__ && (((__GNUC__ == 4) && (__GNUC_MINOR__ >= 4)) || (__GNUC__ > 4)) #pragma GCC diagnostic ignored \"-Wstrict-prototypes\" #endif /* Keep this code in sync between libtool.m4, ltmain, lt_system.h, and tests. */ -#if defined(_WIN32) || defined(__CYGWIN__) || defined(_WIN32_WCE) -/* DATA imports from DLLs on WIN32 con't be const, because runtime +#if defined _WIN32 || defined __CYGWIN__ || defined _WIN32_WCE +/* DATA imports from DLLs on WIN32 can't be const, because runtime relocations are performed -- see ld's documentation on pseudo-relocs. */ # define LT_DLSYM_CONST -#elif defined(__osf__) +#elif defined __osf__ /* This system does not cope well with relocations in const data. */ # define LT_DLSYM_CONST #else # define LT_DLSYM_CONST const #endif +#define STREQ(s1, s2) (strcmp ((s1), (s2)) == 0) + /* External symbol declarations for the compiler. */\ " - if test "$dlself" = yes; then - func_verbose "generating symbol list for \`$output'" + if test yes = "$dlself"; then + func_verbose "generating symbol list for '$output'" $opt_dry_run || echo ': @PROGRAM@ ' > "$nlist" @@ -3298,7 +4817,7 @@ progfiles=`$ECHO "$objs$old_deplibs" | $SP2NL | $SED "$lo2o" | $NL2SP` for progfile in $progfiles; do func_to_tool_file "$progfile" func_convert_file_msys_to_w32 - func_verbose "extracting global C symbols from \`$func_to_tool_file_result'" + func_verbose "extracting global C symbols from '$func_to_tool_file_result'" $opt_dry_run || eval "$NM $func_to_tool_file_result | $global_symbol_pipe >> '$nlist'" done @@ -3318,10 +4837,10 @@ # Prepare the list of exported symbols if test -z "$export_symbols"; then - export_symbols="$output_objdir/$outputname.exp" + export_symbols=$output_objdir/$outputname.exp $opt_dry_run || { $RM $export_symbols - eval "${SED} -n -e '/^: @PROGRAM@ $/d' -e 's/^.* \(.*\)$/\1/p' "'< "$nlist" > "$export_symbols"' + eval "$SED -n -e '/^: @PROGRAM@ $/d' -e 's/^.* \(.*\)$/\1/p' "'< "$nlist" > "$export_symbols"' case $host in *cygwin* | *mingw* | *cegcc* ) eval "echo EXPORTS "'> "$output_objdir/$outputname.def"' @@ -3331,7 +4850,7 @@ } else $opt_dry_run || { - eval "${SED} -e 's/\([].[*^$]\)/\\\\\1/g' -e 's/^/ /' -e 's/$/$/'"' < "$export_symbols" > "$output_objdir/$outputname.exp"' + eval "$SED -e 's/\([].[*^$]\)/\\\\\1/g' -e 's/^/ /' -e 's/$/$/'"' < "$export_symbols" > "$output_objdir/$outputname.exp"' eval '$GREP -f "$output_objdir/$outputname.exp" < "$nlist" > "$nlist"T' eval '$MV "$nlist"T "$nlist"' case $host in @@ -3345,22 +4864,22 @@ fi for dlprefile in $dlprefiles; do - func_verbose "extracting global C symbols from \`$dlprefile'" + func_verbose "extracting global C symbols from '$dlprefile'" func_basename "$dlprefile" - name="$func_basename_result" + name=$func_basename_result case $host in *cygwin* | *mingw* | *cegcc* ) # if an import library, we need to obtain dlname if func_win32_import_lib_p "$dlprefile"; then func_tr_sh "$dlprefile" eval "curr_lafile=\$libfile_$func_tr_sh_result" - dlprefile_dlbasename="" + dlprefile_dlbasename= if test -n "$curr_lafile" && func_lalib_p "$curr_lafile"; then # Use subshell, to avoid clobbering current variable values dlprefile_dlname=`source "$curr_lafile" && echo "$dlname"` - if test -n "$dlprefile_dlname" ; then + if test -n "$dlprefile_dlname"; then func_basename "$dlprefile_dlname" - dlprefile_dlbasename="$func_basename_result" + dlprefile_dlbasename=$func_basename_result else # no lafile. user explicitly requested -dlpreopen . $sharedlib_from_linklib_cmd "$dlprefile" @@ -3368,7 +4887,7 @@ fi fi $opt_dry_run || { - if test -n "$dlprefile_dlbasename" ; then + if test -n "$dlprefile_dlbasename"; then eval '$ECHO ": $dlprefile_dlbasename" >> "$nlist"' else func_warning "Could not compute DLL name from $name" @@ -3424,6 +4943,11 @@ echo '/* NONE */' >> "$output_objdir/$my_dlsyms" fi + func_show_eval '$RM "${nlist}I"' + if test -n "$global_symbol_to_import"; then + eval "$global_symbol_to_import"' < "$nlist"S > "$nlist"I' + fi + echo >> "$output_objdir/$my_dlsyms" "\ /* The mapping between symbol names and symbols. */ @@ -3432,11 +4956,30 @@ void *address; } lt_dlsymlist; extern LT_DLSYM_CONST lt_dlsymlist -lt_${my_prefix}_LTX_preloaded_symbols[]; +lt_${my_prefix}_LTX_preloaded_symbols[];\ +" + + if test -s "$nlist"I; then + echo >> "$output_objdir/$my_dlsyms" "\ +static void lt_syminit(void) +{ + LT_DLSYM_CONST lt_dlsymlist *symbol = lt_${my_prefix}_LTX_preloaded_symbols; + for (; symbol->name; ++symbol) + {" + $SED 's/.*/ if (STREQ (symbol->name, \"&\")) symbol->address = (void *) \&&;/' < "$nlist"I >> "$output_objdir/$my_dlsyms" + echo >> "$output_objdir/$my_dlsyms" "\ + } +}" + fi + echo >> "$output_objdir/$my_dlsyms" "\ LT_DLSYM_CONST lt_dlsymlist lt_${my_prefix}_LTX_preloaded_symbols[] = -{\ - { \"$my_originator\", (void *) 0 }," +{ {\"$my_originator\", (void *) 0}," + + if test -s "$nlist"I; then + echo >> "$output_objdir/$my_dlsyms" "\ + {\"@INIT@\", (void *) <_syminit}," + fi case $need_lib_prefix in no) @@ -3478,9 +5021,7 @@ *-*-hpux*) pic_flag_for_symtable=" $pic_flag" ;; *) - if test "X$my_pic_p" != Xno; then - pic_flag_for_symtable=" $pic_flag" - fi + $my_pic_p && pic_flag_for_symtable=" $pic_flag" ;; esac ;; @@ -3497,10 +5038,10 @@ func_show_eval '(cd $output_objdir && $LTCC$symtab_cflags -c$no_builtin_flag$pic_flag_for_symtable "$my_dlsyms")' 'exit $?' # Clean up the generated files. - func_show_eval '$RM "$output_objdir/$my_dlsyms" "$nlist" "${nlist}S" "${nlist}T"' + func_show_eval '$RM "$output_objdir/$my_dlsyms" "$nlist" "${nlist}S" "${nlist}T" "${nlist}I"' # Transform the symbol file into the correct name. - symfileobj="$output_objdir/${my_outputname}S.$objext" + symfileobj=$output_objdir/${my_outputname}S.$objext case $host in *cygwin* | *mingw* | *cegcc* ) if test -f "$output_objdir/$my_outputname.def"; then @@ -3518,7 +5059,7 @@ esac ;; *) - func_fatal_error "unknown suffix for \`$my_dlsyms'" + func_fatal_error "unknown suffix for '$my_dlsyms'" ;; esac else @@ -3532,6 +5073,32 @@ fi } +# func_cygming_gnu_implib_p ARG +# This predicate returns with zero status (TRUE) if +# ARG is a GNU/binutils-style import library. Returns +# with nonzero status (FALSE) otherwise. +func_cygming_gnu_implib_p () +{ + $debug_cmd + + func_to_tool_file "$1" func_convert_file_msys_to_w32 + func_cygming_gnu_implib_tmp=`$NM "$func_to_tool_file_result" | eval "$global_symbol_pipe" | $EGREP ' (_head_[A-Za-z0-9_]+_[ad]l*|[A-Za-z0-9_]+_[ad]l*_iname)$'` + test -n "$func_cygming_gnu_implib_tmp" +} + +# func_cygming_ms_implib_p ARG +# This predicate returns with zero status (TRUE) if +# ARG is an MS-style import library. Returns +# with nonzero status (FALSE) otherwise. +func_cygming_ms_implib_p () +{ + $debug_cmd + + func_to_tool_file "$1" func_convert_file_msys_to_w32 + func_cygming_ms_implib_tmp=`$NM "$func_to_tool_file_result" | eval "$global_symbol_pipe" | $GREP '_NULL_IMPORT_DESCRIPTOR'` + test -n "$func_cygming_ms_implib_tmp" +} + # func_win32_libid arg # return the library type of file 'arg' # @@ -3541,8 +5108,9 @@ # Despite the name, also deal with 64 bit binaries. func_win32_libid () { - $opt_debug - win32_libid_type="unknown" + $debug_cmd + + win32_libid_type=unknown win32_fileres=`file -L $1 2>/dev/null` case $win32_fileres in *ar\ archive\ import\ library*) # definitely import @@ -3552,16 +5120,29 @@ # Keep the egrep pattern in sync with the one in _LT_CHECK_MAGIC_METHOD. if eval $OBJDUMP -f $1 | $SED -e '10q' 2>/dev/null | $EGREP 'file format (pei*-i386(.*architecture: i386)?|pe-arm-wince|pe-x86-64)' >/dev/null; then - func_to_tool_file "$1" func_convert_file_msys_to_w32 - win32_nmres=`eval $NM -f posix -A \"$func_to_tool_file_result\" | - $SED -n -e ' + case $nm_interface in + "MS dumpbin") + if func_cygming_ms_implib_p "$1" || + func_cygming_gnu_implib_p "$1" + then + win32_nmres=import + else + win32_nmres= + fi + ;; + *) + func_to_tool_file "$1" func_convert_file_msys_to_w32 + win32_nmres=`eval $NM -f posix -A \"$func_to_tool_file_result\" | + $SED -n -e ' 1,100{ / I /{ - s,.*,import, + s|.*|import| p q } }'` + ;; + esac case $win32_nmres in import*) win32_libid_type="x86 archive import";; *) win32_libid_type="x86 archive static";; @@ -3593,7 +5174,8 @@ # $sharedlib_from_linklib_result func_cygming_dll_for_implib () { - $opt_debug + $debug_cmd + sharedlib_from_linklib_result=`$DLLTOOL --identify-strict --identify "$1"` } @@ -3610,7 +5192,8 @@ # specified import library. func_cygming_dll_for_implib_fallback_core () { - $opt_debug + $debug_cmd + match_literal=`$ECHO "$1" | $SED "$sed_make_literal_regex"` $OBJDUMP -s --section "$1" "$2" 2>/dev/null | $SED '/^Contents of section '"$match_literal"':/{ @@ -3646,8 +5229,8 @@ /./p' | # we now have a list, one entry per line, of the stringified # contents of the appropriate section of all members of the - # archive which possess that section. Heuristic: eliminate - # all those which have a first or second character that is + # archive that possess that section. Heuristic: eliminate + # all those that have a first or second character that is # a '.' (that is, objdump's representation of an unprintable # character.) This should work for all archives with less than # 0x302f exports -- but will fail for DLLs whose name actually @@ -3658,30 +5241,6 @@ $SED -e '/^\./d;/^.\./d;q' } -# func_cygming_gnu_implib_p ARG -# This predicate returns with zero status (TRUE) if -# ARG is a GNU/binutils-style import library. Returns -# with nonzero status (FALSE) otherwise. -func_cygming_gnu_implib_p () -{ - $opt_debug - func_to_tool_file "$1" func_convert_file_msys_to_w32 - func_cygming_gnu_implib_tmp=`$NM "$func_to_tool_file_result" | eval "$global_symbol_pipe" | $EGREP ' (_head_[A-Za-z0-9_]+_[ad]l*|[A-Za-z0-9_]+_[ad]l*_iname)$'` - test -n "$func_cygming_gnu_implib_tmp" -} - -# func_cygming_ms_implib_p ARG -# This predicate returns with zero status (TRUE) if -# ARG is an MS-style import library. Returns -# with nonzero status (FALSE) otherwise. -func_cygming_ms_implib_p () -{ - $opt_debug - func_to_tool_file "$1" func_convert_file_msys_to_w32 - func_cygming_ms_implib_tmp=`$NM "$func_to_tool_file_result" | eval "$global_symbol_pipe" | $GREP '_NULL_IMPORT_DESCRIPTOR'` - test -n "$func_cygming_ms_implib_tmp" -} - # func_cygming_dll_for_implib_fallback ARG # Platform-specific function to extract the # name of the DLL associated with the specified @@ -3695,16 +5254,17 @@ # $sharedlib_from_linklib_result func_cygming_dll_for_implib_fallback () { - $opt_debug - if func_cygming_gnu_implib_p "$1" ; then + $debug_cmd + + if func_cygming_gnu_implib_p "$1"; then # binutils import library sharedlib_from_linklib_result=`func_cygming_dll_for_implib_fallback_core '.idata$7' "$1"` - elif func_cygming_ms_implib_p "$1" ; then + elif func_cygming_ms_implib_p "$1"; then # ms-generated import library sharedlib_from_linklib_result=`func_cygming_dll_for_implib_fallback_core '.idata$6' "$1"` else # unknown - sharedlib_from_linklib_result="" + sharedlib_from_linklib_result= fi } @@ -3712,10 +5272,11 @@ # func_extract_an_archive dir oldlib func_extract_an_archive () { - $opt_debug - f_ex_an_ar_dir="$1"; shift - f_ex_an_ar_oldlib="$1" - if test "$lock_old_archive_extraction" = yes; then + $debug_cmd + + f_ex_an_ar_dir=$1; shift + f_ex_an_ar_oldlib=$1 + if test yes = "$lock_old_archive_extraction"; then lockfile=$f_ex_an_ar_oldlib.lock until $opt_dry_run || ln "$progpath" "$lockfile" 2>/dev/null; do func_echo "Waiting for $lockfile to be removed" @@ -3724,7 +5285,7 @@ fi func_show_eval "(cd \$f_ex_an_ar_dir && $AR x \"\$f_ex_an_ar_oldlib\")" \ 'stat=$?; rm -f "$lockfile"; exit $stat' - if test "$lock_old_archive_extraction" = yes; then + if test yes = "$lock_old_archive_extraction"; then $opt_dry_run || rm -f "$lockfile" fi if ($AR t "$f_ex_an_ar_oldlib" | sort | sort -uc >/dev/null 2>&1); then @@ -3738,22 +5299,23 @@ # func_extract_archives gentop oldlib ... func_extract_archives () { - $opt_debug - my_gentop="$1"; shift + $debug_cmd + + my_gentop=$1; shift my_oldlibs=${1+"$@"} - my_oldobjs="" - my_xlib="" - my_xabs="" - my_xdir="" + my_oldobjs= + my_xlib= + my_xabs= + my_xdir= for my_xlib in $my_oldlibs; do # Extract the objects. case $my_xlib in - [\\/]* | [A-Za-z]:[\\/]*) my_xabs="$my_xlib" ;; + [\\/]* | [A-Za-z]:[\\/]*) my_xabs=$my_xlib ;; *) my_xabs=`pwd`"/$my_xlib" ;; esac func_basename "$my_xlib" - my_xlib="$func_basename_result" + my_xlib=$func_basename_result my_xlib_u=$my_xlib while :; do case " $extracted_archives " in @@ -3765,7 +5327,7 @@ esac done extracted_archives="$extracted_archives $my_xlib_u" - my_xdir="$my_gentop/$my_xlib_u" + my_xdir=$my_gentop/$my_xlib_u func_mkdir_p "$my_xdir" @@ -3778,22 +5340,23 @@ cd $my_xdir || exit $? darwin_archive=$my_xabs darwin_curdir=`pwd` - darwin_base_archive=`basename "$darwin_archive"` + func_basename "$darwin_archive" + darwin_base_archive=$func_basename_result darwin_arches=`$LIPO -info "$darwin_archive" 2>/dev/null | $GREP Architectures 2>/dev/null || true` if test -n "$darwin_arches"; then darwin_arches=`$ECHO "$darwin_arches" | $SED -e 's/.*are://'` darwin_arch= func_verbose "$darwin_base_archive has multiple architectures $darwin_arches" - for darwin_arch in $darwin_arches ; do - func_mkdir_p "unfat-$$/${darwin_base_archive}-${darwin_arch}" - $LIPO -thin $darwin_arch -output "unfat-$$/${darwin_base_archive}-${darwin_arch}/${darwin_base_archive}" "${darwin_archive}" - cd "unfat-$$/${darwin_base_archive}-${darwin_arch}" - func_extract_an_archive "`pwd`" "${darwin_base_archive}" + for darwin_arch in $darwin_arches; do + func_mkdir_p "unfat-$$/$darwin_base_archive-$darwin_arch" + $LIPO -thin $darwin_arch -output "unfat-$$/$darwin_base_archive-$darwin_arch/$darwin_base_archive" "$darwin_archive" + cd "unfat-$$/$darwin_base_archive-$darwin_arch" + func_extract_an_archive "`pwd`" "$darwin_base_archive" cd "$darwin_curdir" - $RM "unfat-$$/${darwin_base_archive}-${darwin_arch}/${darwin_base_archive}" + $RM "unfat-$$/$darwin_base_archive-$darwin_arch/$darwin_base_archive" done # $darwin_arches ## Okay now we've a bunch of thin objects, gotta fatten them up :) - darwin_filelist=`find unfat-$$ -type f -name \*.o -print -o -name \*.lo -print | $SED -e "$basename" | sort -u` + darwin_filelist=`find unfat-$$ -type f -name \*.o -print -o -name \*.lo -print | $SED -e "$sed_basename" | sort -u` darwin_file= darwin_files= for darwin_file in $darwin_filelist; do @@ -3815,7 +5378,7 @@ my_oldobjs="$my_oldobjs "`find $my_xdir -name \*.$objext -print -o -name \*.lo -print | sort | $NL2SP` done - func_extract_archives_result="$my_oldobjs" + func_extract_archives_result=$my_oldobjs } @@ -3830,7 +5393,7 @@ # # ARG is the value that the WRAPPER_SCRIPT_BELONGS_IN_OBJDIR # variable will take. If 'yes', then the emitted script -# will assume that the directory in which it is stored is +# will assume that the directory where it is stored is # the $objdir directory. This is a cygwin/mingw-specific # behavior. func_emit_wrapper () @@ -3841,7 +5404,7 @@ #! $SHELL # $output - temporary wrapper script for $objdir/$outputname -# Generated by $PROGRAM (GNU $PACKAGE$TIMESTAMP) $VERSION +# Generated by $PROGRAM (GNU $PACKAGE) $VERSION # # The $output program cannot be directly executed until all the libtool # libraries that it depends on are installed. @@ -3883,7 +5446,8 @@ if test \"\$libtool_execute_magic\" != \"$magic\"; then file=\"\$0\"" - qECHO=`$ECHO "$ECHO" | $SED "$sed_quote_subst"` + func_quote_arg pretty "$ECHO" + qECHO=$func_quote_arg_result $ECHO "\ # A function that is used when there is no print builtin or printf. @@ -3893,14 +5457,14 @@ \$1 _LTECHO_EOF' } - ECHO=\"$qECHO\" + ECHO=$qECHO fi # Very basic option parsing. These options are (a) specific to # the libtool wrapper, (b) are identical between the wrapper -# /script/ and the wrapper /executable/ which is used only on +# /script/ and the wrapper /executable/ that is used only on # windows platforms, and (c) all begin with the string "--lt-" -# (application programs are unlikely to have options which match +# (application programs are unlikely to have options that match # this pattern). # # There are only two supported options: --lt-debug and @@ -3933,7 +5497,7 @@ # Print the debug banner immediately: if test -n \"\$lt_option_debug\"; then - echo \"${outputname}:${output}:\${LINENO}: libtool wrapper (GNU $PACKAGE$TIMESTAMP) $VERSION\" 1>&2 + echo \"$outputname:$output:\$LINENO: libtool wrapper (GNU $PACKAGE) $VERSION\" 1>&2 fi } @@ -3944,7 +5508,7 @@ lt_dump_args_N=1; for lt_arg do - \$ECHO \"${outputname}:${output}:\${LINENO}: newargv[\$lt_dump_args_N]: \$lt_arg\" + \$ECHO \"$outputname:$output:\$LINENO: newargv[\$lt_dump_args_N]: \$lt_arg\" lt_dump_args_N=\`expr \$lt_dump_args_N + 1\` done } @@ -3958,7 +5522,7 @@ *-*-mingw | *-*-os2* | *-cegcc*) $ECHO "\ if test -n \"\$lt_option_debug\"; then - \$ECHO \"${outputname}:${output}:\${LINENO}: newargv[0]: \$progdir\\\\\$program\" 1>&2 + \$ECHO \"$outputname:$output:\$LINENO: newargv[0]: \$progdir\\\\\$program\" 1>&2 func_lt_dump_args \${1+\"\$@\"} 1>&2 fi exec \"\$progdir\\\\\$program\" \${1+\"\$@\"} @@ -3968,7 +5532,7 @@ *) $ECHO "\ if test -n \"\$lt_option_debug\"; then - \$ECHO \"${outputname}:${output}:\${LINENO}: newargv[0]: \$progdir/\$program\" 1>&2 + \$ECHO \"$outputname:$output:\$LINENO: newargv[0]: \$progdir/\$program\" 1>&2 func_lt_dump_args \${1+\"\$@\"} 1>&2 fi exec \"\$progdir/\$program\" \${1+\"\$@\"} @@ -4043,13 +5607,13 @@ test -n \"\$absdir\" && thisdir=\"\$absdir\" " - if test "$fast_install" = yes; then + if test yes = "$fast_install"; then $ECHO "\ program=lt-'$outputname'$exeext progdir=\"\$thisdir/$objdir\" if test ! -f \"\$progdir/\$program\" || - { file=\`ls -1dt \"\$progdir/\$program\" \"\$progdir/../\$program\" 2>/dev/null | ${SED} 1q\`; \\ + { file=\`ls -1dt \"\$progdir/\$program\" \"\$progdir/../\$program\" 2>/dev/null | $SED 1q\`; \\ test \"X\$file\" != \"X\$progdir/\$program\"; }; then file=\"\$\$-\$program\" @@ -4066,7 +5630,7 @@ if test -n \"\$relink_command\"; then if relink_command_output=\`eval \$relink_command 2>&1\`; then : else - $ECHO \"\$relink_command_output\" >&2 + \$ECHO \"\$relink_command_output\" >&2 $RM \"\$progdir/\$file\" exit 1 fi @@ -4101,7 +5665,7 @@ fi # Export our shlibpath_var if we have one. - if test "$shlibpath_overrides_runpath" = yes && test -n "$shlibpath_var" && test -n "$temp_rpath"; then + if test yes = "$shlibpath_overrides_runpath" && test -n "$shlibpath_var" && test -n "$temp_rpath"; then $ECHO "\ # Add our own library path to $shlibpath_var $shlibpath_var=\"$temp_rpath\$$shlibpath_var\" @@ -4121,7 +5685,7 @@ fi else # The program doesn't exist. - \$ECHO \"\$0: error: \\\`\$progdir/\$program' does not exist\" 1>&2 + \$ECHO \"\$0: error: '\$progdir/\$program' does not exist\" 1>&2 \$ECHO \"This script is just a wrapper for \$program.\" 1>&2 \$ECHO \"See the $PACKAGE documentation for more information.\" 1>&2 exit 1 @@ -4140,7 +5704,7 @@ cat < #include +#define STREQ(s1, s2) (strcmp ((s1), (s2)) == 0) + /* declarations of non-ANSI functions */ -#if defined(__MINGW32__) +#if defined __MINGW32__ # ifdef __STRICT_ANSI__ int _putenv (const char *); # endif -#elif defined(__CYGWIN__) +#elif defined __CYGWIN__ # ifdef __STRICT_ANSI__ char *realpath (const char *, char *); int putenv (char *); int setenv (const char *, const char *, int); # endif -/* #elif defined (other platforms) ... */ +/* #elif defined other_platform || defined ... */ #endif /* portability defines, excluding path handling macros */ -#if defined(_MSC_VER) +#if defined _MSC_VER # define setmode _setmode # define stat _stat # define chmod _chmod # define getcwd _getcwd # define putenv _putenv # define S_IXUSR _S_IEXEC -# ifndef _INTPTR_T_DEFINED -# define _INTPTR_T_DEFINED -# define intptr_t int -# endif -#elif defined(__MINGW32__) +#elif defined __MINGW32__ # define setmode _setmode # define stat _stat # define chmod _chmod # define getcwd _getcwd # define putenv _putenv -#elif defined(__CYGWIN__) +#elif defined __CYGWIN__ # define HAVE_SETENV # define FOPEN_WB "wb" -/* #elif defined (other platforms) ... */ +/* #elif defined other platforms ... */ #endif -#if defined(PATH_MAX) +#if defined PATH_MAX # define LT_PATHMAX PATH_MAX -#elif defined(MAXPATHLEN) +#elif defined MAXPATHLEN # define LT_PATHMAX MAXPATHLEN #else # define LT_PATHMAX 1024 @@ -4234,8 +5796,8 @@ # define PATH_SEPARATOR ':' #endif -#if defined (_WIN32) || defined (__MSDOS__) || defined (__DJGPP__) || \ - defined (__OS2__) +#if defined _WIN32 || defined __MSDOS__ || defined __DJGPP__ || \ + defined __OS2__ # define HAVE_DOS_BASED_FILE_SYSTEM # define FOPEN_WB "wb" # ifndef DIR_SEPARATOR_2 @@ -4268,10 +5830,10 @@ #define XMALLOC(type, num) ((type *) xmalloc ((num) * sizeof(type))) #define XFREE(stale) do { \ - if (stale) { free ((void *) stale); stale = 0; } \ + if (stale) { free (stale); stale = 0; } \ } while (0) -#if defined(LT_DEBUGWRAPPER) +#if defined LT_DEBUGWRAPPER static int lt_debug = 1; #else static int lt_debug = 0; @@ -4300,11 +5862,16 @@ EOF cat < 0) && IS_PATH_SEPARATOR (new_value[len-1])) + size_t len = strlen (new_value); + while ((len > 0) && IS_PATH_SEPARATOR (new_value[len-1])) { - new_value[len-1] = '\0'; + new_value[--len] = '\0'; } lt_setenv (name, new_value); XFREE (new_value); @@ -5082,27 +6649,47 @@ # True if ARG is an import lib, as indicated by $file_magic_cmd func_win32_import_lib_p () { - $opt_debug + $debug_cmd + case `eval $file_magic_cmd \"\$1\" 2>/dev/null | $SED -e 10q` in *import*) : ;; *) false ;; esac } +# func_suncc_cstd_abi +# !!ONLY CALL THIS FOR SUN CC AFTER $compile_command IS FULLY EXPANDED!! +# Several compiler flags select an ABI that is incompatible with the +# Cstd library. Avoid specifying it if any are in CXXFLAGS. +func_suncc_cstd_abi () +{ + $debug_cmd + + case " $compile_command " in + *" -compat=g "*|*\ -std=c++[0-9][0-9]\ *|*" -library=stdcxx4 "*|*" -library=stlport4 "*) + suncc_use_cstd_abi=no + ;; + *) + suncc_use_cstd_abi=yes + ;; + esac +} + # func_mode_link arg... func_mode_link () { - $opt_debug + $debug_cmd + case $host in *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-cegcc*) # It is impossible to link a dll without this setting, and # we shouldn't force the makefile maintainer to figure out - # which system we are compiling for in order to pass an extra + # what system we are compiling for in order to pass an extra # flag for every libtool invocation. # allow_undefined=no # FIXME: Unfortunately, there are problems with the above when trying - # to make a dll which has undefined symbols, in which case not + # to make a dll that has undefined symbols, in which case not # even a static library is built. For now, we need to specify # -no-undefined on the libtool link line when we can be certain # that all symbols are satisfied, otherwise we get a static library. @@ -5146,10 +6733,11 @@ module=no no_install=no objs= + os2dllname= non_pic_objects= precious_files_regex= prefer_static_libs=no - preload=no + preload=false prev= prevarg= release= @@ -5161,7 +6749,7 @@ vinfo= vinfo_number=no weak_libs= - single_module="${wl}-single_module" + single_module=$wl-single_module func_infer_tag $base_compile # We need to know -static, to get the right output filenames. @@ -5169,15 +6757,15 @@ do case $arg in -shared) - test "$build_libtool_libs" != yes && \ - func_fatal_configuration "can not build a shared library" + test yes != "$build_libtool_libs" \ + && func_fatal_configuration "cannot build a shared library" build_old_libs=no break ;; -all-static | -static | -static-libtool-libs) case $arg in -all-static) - if test "$build_libtool_libs" = yes && test -z "$link_static_flag"; then + if test yes = "$build_libtool_libs" && test -z "$link_static_flag"; then func_warning "complete static linking is impossible in this configuration" fi if test -n "$link_static_flag"; then @@ -5210,11 +6798,11 @@ # Go through the arguments, transforming them on the way. while test "$#" -gt 0; do - arg="$1" + arg=$1 shift - func_quote_for_eval "$arg" - qarg=$func_quote_for_eval_unquoted_result - func_append libtool_args " $func_quote_for_eval_result" + func_quote_arg pretty,unquoted "$arg" + qarg=$func_quote_arg_unquoted_result + func_append libtool_args " $func_quote_arg_result" # If the previous option needs an argument, assign it. if test -n "$prev"; then @@ -5227,21 +6815,21 @@ case $prev in bindir) - bindir="$arg" + bindir=$arg prev= continue ;; dlfiles|dlprefiles) - if test "$preload" = no; then + $preload || { # Add the symbol object into the linking commands. func_append compile_command " @SYMFILE@" func_append finalize_command " @SYMFILE@" - preload=yes - fi + preload=: + } case $arg in *.la | *.lo) ;; # We handle these cases below. force) - if test "$dlself" = no; then + if test no = "$dlself"; then dlself=needless export_dynamic=yes fi @@ -5249,9 +6837,9 @@ continue ;; self) - if test "$prev" = dlprefiles; then + if test dlprefiles = "$prev"; then dlself=yes - elif test "$prev" = dlfiles && test "$dlopen_self" != yes; then + elif test dlfiles = "$prev" && test yes != "$dlopen_self"; then dlself=yes else dlself=needless @@ -5261,7 +6849,7 @@ continue ;; *) - if test "$prev" = dlfiles; then + if test dlfiles = "$prev"; then func_append dlfiles " $arg" else func_append dlprefiles " $arg" @@ -5272,14 +6860,14 @@ esac ;; expsyms) - export_symbols="$arg" + export_symbols=$arg test -f "$arg" \ - || func_fatal_error "symbol file \`$arg' does not exist" + || func_fatal_error "symbol file '$arg' does not exist" prev= continue ;; expsyms_regex) - export_symbols_regex="$arg" + export_symbols_regex=$arg prev= continue ;; @@ -5297,7 +6885,13 @@ continue ;; inst_prefix) - inst_prefix_dir="$arg" + inst_prefix_dir=$arg + prev= + continue + ;; + mllvm) + # Clang does not use LLVM to link, so we can simply discard any + # '-mllvm $arg' options when doing the link step. prev= continue ;; @@ -5321,21 +6915,21 @@ if test -z "$pic_object" || test -z "$non_pic_object" || - test "$pic_object" = none && - test "$non_pic_object" = none; then - func_fatal_error "cannot find name of object for \`$arg'" + test none = "$pic_object" && + test none = "$non_pic_object"; then + func_fatal_error "cannot find name of object for '$arg'" fi # Extract subdirectory from the argument. func_dirname "$arg" "/" "" - xdir="$func_dirname_result" + xdir=$func_dirname_result - if test "$pic_object" != none; then + if test none != "$pic_object"; then # Prepend the subdirectory the object is found in. - pic_object="$xdir$pic_object" + pic_object=$xdir$pic_object - if test "$prev" = dlfiles; then - if test "$build_libtool_libs" = yes && test "$dlopen_support" = yes; then + if test dlfiles = "$prev"; then + if test yes = "$build_libtool_libs" && test yes = "$dlopen_support"; then func_append dlfiles " $pic_object" prev= continue @@ -5346,7 +6940,7 @@ fi # CHECK ME: I think I busted this. -Ossama - if test "$prev" = dlprefiles; then + if test dlprefiles = "$prev"; then # Preload the old-style object. func_append dlprefiles " $pic_object" prev= @@ -5354,23 +6948,23 @@ # A PIC object. func_append libobjs " $pic_object" - arg="$pic_object" + arg=$pic_object fi # Non-PIC object. - if test "$non_pic_object" != none; then + if test none != "$non_pic_object"; then # Prepend the subdirectory the object is found in. - non_pic_object="$xdir$non_pic_object" + non_pic_object=$xdir$non_pic_object # A standard non-PIC object func_append non_pic_objects " $non_pic_object" - if test -z "$pic_object" || test "$pic_object" = none ; then - arg="$non_pic_object" + if test -z "$pic_object" || test none = "$pic_object"; then + arg=$non_pic_object fi else # If the PIC object exists, use it instead. # $xdir was prepended to $pic_object above. - non_pic_object="$pic_object" + non_pic_object=$pic_object func_append non_pic_objects " $non_pic_object" fi else @@ -5378,7 +6972,7 @@ if $opt_dry_run; then # Extract subdirectory from the argument. func_dirname "$arg" "/" "" - xdir="$func_dirname_result" + xdir=$func_dirname_result func_lo2o "$arg" pic_object=$xdir$objdir/$func_lo2o_result @@ -5386,24 +6980,29 @@ func_append libobjs " $pic_object" func_append non_pic_objects " $non_pic_object" else - func_fatal_error "\`$arg' is not a valid libtool object" + func_fatal_error "'$arg' is not a valid libtool object" fi fi done else - func_fatal_error "link input file \`$arg' does not exist" + func_fatal_error "link input file '$arg' does not exist" fi arg=$save_arg prev= continue ;; + os2dllname) + os2dllname=$arg + prev= + continue + ;; precious_regex) - precious_files_regex="$arg" + precious_files_regex=$arg prev= continue ;; release) - release="-$arg" + release=-$arg prev= continue ;; @@ -5415,7 +7014,7 @@ func_fatal_error "only absolute run-paths are allowed" ;; esac - if test "$prev" = rpath; then + if test rpath = "$prev"; then case "$rpath " in *" $arg "*) ;; *) func_append rpath " $arg" ;; @@ -5430,7 +7029,7 @@ continue ;; shrext) - shrext_cmds="$arg" + shrext_cmds=$arg prev= continue ;; @@ -5470,7 +7069,7 @@ esac fi # test -n "$prev" - prevarg="$arg" + prevarg=$arg case $arg in -all-static) @@ -5484,7 +7083,7 @@ -allow-undefined) # FIXME: remove this flag sometime in the future. - func_fatal_error "\`-allow-undefined' must not be used because it is the default" + func_fatal_error "'-allow-undefined' must not be used because it is the default" ;; -avoid-version) @@ -5516,7 +7115,7 @@ if test -n "$export_symbols" || test -n "$export_symbols_regex"; then func_fatal_error "more than one -exported-symbols argument is not allowed" fi - if test "X$arg" = "X-export-symbols"; then + if test X-export-symbols = "X$arg"; then prev=expsyms else prev=expsyms_regex @@ -5550,9 +7149,9 @@ func_stripname "-L" '' "$arg" if test -z "$func_stripname_result"; then if test "$#" -gt 0; then - func_fatal_error "require no space between \`-L' and \`$1'" + func_fatal_error "require no space between '-L' and '$1'" else - func_fatal_error "need path for \`-L' option" + func_fatal_error "need path for '-L' option" fi fi func_resolve_sysroot "$func_stripname_result" @@ -5563,8 +7162,8 @@ *) absdir=`cd "$dir" && pwd` test -z "$absdir" && \ - func_fatal_error "cannot determine absolute directory name of \`$dir'" - dir="$absdir" + func_fatal_error "cannot determine absolute directory name of '$dir'" + dir=$absdir ;; esac case "$deplibs " in @@ -5599,7 +7198,7 @@ ;; -l*) - if test "X$arg" = "X-lc" || test "X$arg" = "X-lm"; then + if test X-lc = "X$arg" || test X-lm = "X$arg"; then case $host in *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-beos* | *-cegcc* | *-*-haiku*) # These systems don't actually have a C or math library (as such) @@ -5607,11 +7206,11 @@ ;; *-*-os2*) # These systems don't actually have a C library (as such) - test "X$arg" = "X-lc" && continue + test X-lc = "X$arg" && continue ;; - *-*-openbsd* | *-*-freebsd* | *-*-dragonfly*) + *-*-openbsd* | *-*-freebsd* | *-*-dragonfly* | *-*-bitrig*) # Do not include libc due to us having libc/libc_r. - test "X$arg" = "X-lc" && continue + test X-lc = "X$arg" && continue ;; *-*-rhapsody* | *-*-darwin1.[012]) # Rhapsody C and math libraries are in the System framework @@ -5620,16 +7219,16 @@ ;; *-*-sco3.2v5* | *-*-sco5v6*) # Causes problems with __ctype - test "X$arg" = "X-lc" && continue + test X-lc = "X$arg" && continue ;; *-*-sysv4.2uw2* | *-*-sysv5* | *-*-unixware* | *-*-OpenUNIX*) # Compiler inserts libc in the correct place for threads to work - test "X$arg" = "X-lc" && continue + test X-lc = "X$arg" && continue ;; esac - elif test "X$arg" = "X-lc_r"; then + elif test X-lc_r = "X$arg"; then case $host in - *-*-openbsd* | *-*-freebsd* | *-*-dragonfly*) + *-*-openbsd* | *-*-freebsd* | *-*-dragonfly* | *-*-bitrig*) # Do not include libc_r directly, use -pthread flag. continue ;; @@ -5639,6 +7238,11 @@ continue ;; + -mllvm) + prev=mllvm + continue + ;; + -module) module=yes continue @@ -5668,7 +7272,7 @@ ;; -multi_module) - single_module="${wl}-multi_module" + single_module=$wl-multi_module continue ;; @@ -5682,8 +7286,8 @@ *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-*-darwin* | *-cegcc*) # The PATH hackery in wrapper scripts is required on Windows # and Darwin in order for the loader to find any dlls it needs. - func_warning "\`-no-install' is ignored for $host" - func_warning "assuming \`-no-fast-install' instead" + func_warning "'-no-install' is ignored for $host" + func_warning "assuming '-no-fast-install' instead" fast_install=no ;; *) no_install=yes ;; @@ -5701,6 +7305,11 @@ continue ;; + -os2dllname) + prev=os2dllname + continue + ;; + -o) prev=output ;; -precious-files-regex) @@ -5788,14 +7397,14 @@ func_stripname '-Wc,' '' "$arg" args=$func_stripname_result arg= - save_ifs="$IFS"; IFS=',' + save_ifs=$IFS; IFS=, for flag in $args; do - IFS="$save_ifs" - func_quote_for_eval "$flag" - func_append arg " $func_quote_for_eval_result" - func_append compiler_flags " $func_quote_for_eval_result" + IFS=$save_ifs + func_quote_arg pretty "$flag" + func_append arg " $func_quote_arg_result" + func_append compiler_flags " $func_quote_arg_result" done - IFS="$save_ifs" + IFS=$save_ifs func_stripname ' ' '' "$arg" arg=$func_stripname_result ;; @@ -5804,15 +7413,15 @@ func_stripname '-Wl,' '' "$arg" args=$func_stripname_result arg= - save_ifs="$IFS"; IFS=',' + save_ifs=$IFS; IFS=, for flag in $args; do - IFS="$save_ifs" - func_quote_for_eval "$flag" - func_append arg " $wl$func_quote_for_eval_result" - func_append compiler_flags " $wl$func_quote_for_eval_result" - func_append linker_flags " $func_quote_for_eval_result" + IFS=$save_ifs + func_quote_arg pretty "$flag" + func_append arg " $wl$func_quote_arg_result" + func_append compiler_flags " $wl$func_quote_arg_result" + func_append linker_flags " $func_quote_arg_result" done - IFS="$save_ifs" + IFS=$save_ifs func_stripname ' ' '' "$arg" arg=$func_stripname_result ;; @@ -5834,8 +7443,8 @@ # -msg_* for osf cc -msg_*) - func_quote_for_eval "$arg" - arg="$func_quote_for_eval_result" + func_quote_arg pretty "$arg" + arg=$func_quote_arg_result ;; # Flags to be passed through unchanged, with rationale: @@ -5847,25 +7456,49 @@ # -m*, -t[45]*, -txscale* architecture-specific flags for GCC # -F/path path to uninstalled frameworks, gcc on darwin # -p, -pg, --coverage, -fprofile-* profiling flags for GCC + # -fstack-protector* stack protector flags for GCC # @file GCC response files # -tp=* Portland pgcc target processor selection # --sysroot=* for sysroot support - # -O*, -flto*, -fwhopr*, -fuse-linker-plugin GCC link-time optimization + # -O*, -g*, -flto*, -fwhopr*, -fuse-linker-plugin GCC link-time optimization + # -specs=* GCC specs files + # -stdlib=* select c++ std lib with clang + # -fsanitize=* Clang/GCC memory and address sanitizer -64|-mips[0-9]|-r[0-9][0-9]*|-xarch=*|-xtarget=*|+DA*|+DD*|-q*|-m*| \ -t[45]*|-txscale*|-p|-pg|--coverage|-fprofile-*|-F*|@*|-tp=*|--sysroot=*| \ - -O*|-flto*|-fwhopr*|-fuse-linker-plugin) - func_quote_for_eval "$arg" - arg="$func_quote_for_eval_result" + -O*|-g*|-flto*|-fwhopr*|-fuse-linker-plugin|-fstack-protector*|-stdlib=*| \ + -specs=*|-fsanitize=*) + func_quote_arg pretty "$arg" + arg=$func_quote_arg_result func_append compile_command " $arg" func_append finalize_command " $arg" func_append compiler_flags " $arg" continue ;; + -Z*) + if test os2 = "`expr $host : '.*\(os2\)'`"; then + # OS/2 uses -Zxxx to specify OS/2-specific options + compiler_flags="$compiler_flags $arg" + func_append compile_command " $arg" + func_append finalize_command " $arg" + case $arg in + -Zlinker | -Zstack) + prev=xcompiler + ;; + esac + continue + else + # Otherwise treat like 'Some other compiler flag' below + func_quote_arg pretty "$arg" + arg=$func_quote_arg_result + fi + ;; + # Some other compiler flag. -* | +*) - func_quote_for_eval "$arg" - arg="$func_quote_for_eval_result" + func_quote_arg pretty "$arg" + arg=$func_quote_arg_result ;; *.$objext) @@ -5886,21 +7519,21 @@ if test -z "$pic_object" || test -z "$non_pic_object" || - test "$pic_object" = none && - test "$non_pic_object" = none; then - func_fatal_error "cannot find name of object for \`$arg'" + test none = "$pic_object" && + test none = "$non_pic_object"; then + func_fatal_error "cannot find name of object for '$arg'" fi # Extract subdirectory from the argument. func_dirname "$arg" "/" "" - xdir="$func_dirname_result" + xdir=$func_dirname_result - if test "$pic_object" != none; then + test none = "$pic_object" || { # Prepend the subdirectory the object is found in. - pic_object="$xdir$pic_object" + pic_object=$xdir$pic_object - if test "$prev" = dlfiles; then - if test "$build_libtool_libs" = yes && test "$dlopen_support" = yes; then + if test dlfiles = "$prev"; then + if test yes = "$build_libtool_libs" && test yes = "$dlopen_support"; then func_append dlfiles " $pic_object" prev= continue @@ -5911,7 +7544,7 @@ fi # CHECK ME: I think I busted this. -Ossama - if test "$prev" = dlprefiles; then + if test dlprefiles = "$prev"; then # Preload the old-style object. func_append dlprefiles " $pic_object" prev= @@ -5919,23 +7552,23 @@ # A PIC object. func_append libobjs " $pic_object" - arg="$pic_object" - fi + arg=$pic_object + } # Non-PIC object. - if test "$non_pic_object" != none; then + if test none != "$non_pic_object"; then # Prepend the subdirectory the object is found in. - non_pic_object="$xdir$non_pic_object" + non_pic_object=$xdir$non_pic_object # A standard non-PIC object func_append non_pic_objects " $non_pic_object" - if test -z "$pic_object" || test "$pic_object" = none ; then - arg="$non_pic_object" + if test -z "$pic_object" || test none = "$pic_object"; then + arg=$non_pic_object fi else # If the PIC object exists, use it instead. # $xdir was prepended to $pic_object above. - non_pic_object="$pic_object" + non_pic_object=$pic_object func_append non_pic_objects " $non_pic_object" fi else @@ -5943,7 +7576,7 @@ if $opt_dry_run; then # Extract subdirectory from the argument. func_dirname "$arg" "/" "" - xdir="$func_dirname_result" + xdir=$func_dirname_result func_lo2o "$arg" pic_object=$xdir$objdir/$func_lo2o_result @@ -5951,7 +7584,7 @@ func_append libobjs " $pic_object" func_append non_pic_objects " $non_pic_object" else - func_fatal_error "\`$arg' is not a valid libtool object" + func_fatal_error "'$arg' is not a valid libtool object" fi fi ;; @@ -5967,11 +7600,11 @@ # A libtool-controlled library. func_resolve_sysroot "$arg" - if test "$prev" = dlfiles; then + if test dlfiles = "$prev"; then # This library was specified with -dlopen. func_append dlfiles " $func_resolve_sysroot_result" prev= - elif test "$prev" = dlprefiles; then + elif test dlprefiles = "$prev"; then # The library was specified with -dlpreopen. func_append dlprefiles " $func_resolve_sysroot_result" prev= @@ -5985,8 +7618,8 @@ *) # Unknown arguments in both finalize_command and compile_command need # to be aesthetically quoted because they are evaled later. - func_quote_for_eval "$arg" - arg="$func_quote_for_eval_result" + func_quote_arg pretty "$arg" + arg=$func_quote_arg_result ;; esac # arg @@ -5998,9 +7631,9 @@ done # argument parsing loop test -n "$prev" && \ - func_fatal_help "the \`$prevarg' option requires an argument" + func_fatal_help "the '$prevarg' option requires an argument" - if test "$export_dynamic" = yes && test -n "$export_dynamic_flag_spec"; then + if test yes = "$export_dynamic" && test -n "$export_dynamic_flag_spec"; then eval arg=\"$export_dynamic_flag_spec\" func_append compile_command " $arg" func_append finalize_command " $arg" @@ -6009,20 +7642,23 @@ oldlibs= # calculate the name of the file, without its directory func_basename "$output" - outputname="$func_basename_result" - libobjs_save="$libobjs" + outputname=$func_basename_result + libobjs_save=$libobjs if test -n "$shlibpath_var"; then # get the directories listed in $shlibpath_var - eval shlib_search_path=\`\$ECHO \"\${$shlibpath_var}\" \| \$SED \'s/:/ /g\'\` + eval shlib_search_path=\`\$ECHO \"\$$shlibpath_var\" \| \$SED \'s/:/ /g\'\` else shlib_search_path= fi eval sys_lib_search_path=\"$sys_lib_search_path_spec\" eval sys_lib_dlsearch_path=\"$sys_lib_dlsearch_path_spec\" + # Definition is injected by LT_CONFIG during libtool generation. + func_munge_path_list sys_lib_dlsearch_path "$LT_SYS_LIBRARY_PATH" + func_dirname "$output" "/" "" - output_objdir="$func_dirname_result$objdir" + output_objdir=$func_dirname_result$objdir func_to_tool_file "$output_objdir/" tool_output_objdir=$func_to_tool_file_result # Create the object directory. @@ -6045,7 +7681,7 @@ # Find all interdependent deplibs by searching for libraries # that are linked more than once (e.g. -la -lb -la) for deplib in $deplibs; do - if $opt_preserve_dup_deps ; then + if $opt_preserve_dup_deps; then case "$libs " in *" $deplib "*) func_append specialdeplibs " $deplib" ;; esac @@ -6053,7 +7689,7 @@ func_append libs " $deplib" done - if test "$linkmode" = lib; then + if test lib = "$linkmode"; then libs="$predeps $libs $compiler_lib_search_path $postdeps" # Compute libraries that are listed more than once in $predeps @@ -6085,7 +7721,7 @@ case $file in *.la) ;; *) - func_fatal_help "libraries can \`-dlopen' only libtool libraries: $file" + func_fatal_help "libraries can '-dlopen' only libtool libraries: $file" ;; esac done @@ -6093,7 +7729,7 @@ prog) compile_deplibs= finalize_deplibs= - alldeplibs=no + alldeplibs=false newdlfiles= newdlprefiles= passes="conv scan dlopen dlpreopen link" @@ -6105,32 +7741,32 @@ for pass in $passes; do # The preopen pass in lib mode reverses $deplibs; put it back here # so that -L comes before libs that need it for instance... - if test "$linkmode,$pass" = "lib,link"; then + if test lib,link = "$linkmode,$pass"; then ## FIXME: Find the place where the list is rebuilt in the wrong ## order, and fix it there properly tmp_deplibs= for deplib in $deplibs; do tmp_deplibs="$deplib $tmp_deplibs" done - deplibs="$tmp_deplibs" + deplibs=$tmp_deplibs fi - if test "$linkmode,$pass" = "lib,link" || - test "$linkmode,$pass" = "prog,scan"; then - libs="$deplibs" + if test lib,link = "$linkmode,$pass" || + test prog,scan = "$linkmode,$pass"; then + libs=$deplibs deplibs= fi - if test "$linkmode" = prog; then + if test prog = "$linkmode"; then case $pass in - dlopen) libs="$dlfiles" ;; - dlpreopen) libs="$dlprefiles" ;; + dlopen) libs=$dlfiles ;; + dlpreopen) libs=$dlprefiles ;; link) libs="$deplibs %DEPLIBS%" test "X$link_all_deplibs" != Xno && libs="$libs $dependency_libs" ;; esac fi - if test "$linkmode,$pass" = "lib,dlpreopen"; then + if test lib,dlpreopen = "$linkmode,$pass"; then # Collect and forward deplibs of preopened libtool libs for lib in $dlprefiles; do # Ignore non-libtool-libs @@ -6151,26 +7787,26 @@ esac done done - libs="$dlprefiles" + libs=$dlprefiles fi - if test "$pass" = dlopen; then + if test dlopen = "$pass"; then # Collect dlpreopened libraries - save_deplibs="$deplibs" + save_deplibs=$deplibs deplibs= fi for deplib in $libs; do lib= - found=no + found=false case $deplib in -mt|-mthreads|-kthread|-Kthread|-pthread|-pthreads|--thread-safe \ |-threads|-fopenmp|-openmp|-mp|-xopenmp|-omp|-qsmp=*) - if test "$linkmode,$pass" = "prog,link"; then + if test prog,link = "$linkmode,$pass"; then compile_deplibs="$deplib $compile_deplibs" finalize_deplibs="$deplib $finalize_deplibs" else func_append compiler_flags " $deplib" - if test "$linkmode" = lib ; then + if test lib = "$linkmode"; then case "$new_inherited_linker_flags " in *" $deplib "*) ;; * ) func_append new_inherited_linker_flags " $deplib" ;; @@ -6180,13 +7816,13 @@ continue ;; -l*) - if test "$linkmode" != lib && test "$linkmode" != prog; then - func_warning "\`-l' is ignored for archives/objects" + if test lib != "$linkmode" && test prog != "$linkmode"; then + func_warning "'-l' is ignored for archives/objects" continue fi func_stripname '-l' '' "$deplib" name=$func_stripname_result - if test "$linkmode" = lib; then + if test lib = "$linkmode"; then searchdirs="$newlib_search_path $lib_search_path $compiler_lib_search_dirs $sys_lib_search_path $shlib_search_path" else searchdirs="$newlib_search_path $lib_search_path $sys_lib_search_path $shlib_search_path" @@ -6194,31 +7830,22 @@ for searchdir in $searchdirs; do for search_ext in .la $std_shrext .so .a; do # Search the libtool library - lib="$searchdir/lib${name}${search_ext}" + lib=$searchdir/lib$name$search_ext if test -f "$lib"; then - if test "$search_ext" = ".la"; then - found=yes + if test .la = "$search_ext"; then + found=: else - found=no + found=false fi break 2 fi done done - if test "$found" != yes; then - # deplib doesn't seem to be a libtool library - if test "$linkmode,$pass" = "prog,link"; then - compile_deplibs="$deplib $compile_deplibs" - finalize_deplibs="$deplib $finalize_deplibs" - else - deplibs="$deplib $deplibs" - test "$linkmode" = lib && newdependency_libs="$deplib $newdependency_libs" - fi - continue - else # deplib is a libtool library + if $found; then + # deplib is a libtool library # If $allow_libtool_libs_with_static_runtimes && $deplib is a stdlib, # We need to do some special things here, and not later. - if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; then + if test yes = "$allow_libtool_libs_with_static_runtimes"; then case " $predeps $postdeps " in *" $deplib "*) if func_lalib_p "$lib"; then @@ -6226,19 +7853,19 @@ old_library= func_source "$lib" for l in $old_library $library_names; do - ll="$l" + ll=$l done - if test "X$ll" = "X$old_library" ; then # only static version available - found=no + if test "X$ll" = "X$old_library"; then # only static version available + found=false func_dirname "$lib" "" "." - ladir="$func_dirname_result" + ladir=$func_dirname_result lib=$ladir/$old_library - if test "$linkmode,$pass" = "prog,link"; then + if test prog,link = "$linkmode,$pass"; then compile_deplibs="$deplib $compile_deplibs" finalize_deplibs="$deplib $finalize_deplibs" else deplibs="$deplib $deplibs" - test "$linkmode" = lib && newdependency_libs="$deplib $newdependency_libs" + test lib = "$linkmode" && newdependency_libs="$deplib $newdependency_libs" fi continue fi @@ -6247,15 +7874,25 @@ *) ;; esac fi + else + # deplib doesn't seem to be a libtool library + if test prog,link = "$linkmode,$pass"; then + compile_deplibs="$deplib $compile_deplibs" + finalize_deplibs="$deplib $finalize_deplibs" + else + deplibs="$deplib $deplibs" + test lib = "$linkmode" && newdependency_libs="$deplib $newdependency_libs" + fi + continue fi ;; # -l *.ltframework) - if test "$linkmode,$pass" = "prog,link"; then + if test prog,link = "$linkmode,$pass"; then compile_deplibs="$deplib $compile_deplibs" finalize_deplibs="$deplib $finalize_deplibs" else deplibs="$deplib $deplibs" - if test "$linkmode" = lib ; then + if test lib = "$linkmode"; then case "$new_inherited_linker_flags " in *" $deplib "*) ;; * ) func_append new_inherited_linker_flags " $deplib" ;; @@ -6268,18 +7905,18 @@ case $linkmode in lib) deplibs="$deplib $deplibs" - test "$pass" = conv && continue + test conv = "$pass" && continue newdependency_libs="$deplib $newdependency_libs" func_stripname '-L' '' "$deplib" func_resolve_sysroot "$func_stripname_result" func_append newlib_search_path " $func_resolve_sysroot_result" ;; prog) - if test "$pass" = conv; then + if test conv = "$pass"; then deplibs="$deplib $deplibs" continue fi - if test "$pass" = scan; then + if test scan = "$pass"; then deplibs="$deplib $deplibs" else compile_deplibs="$deplib $compile_deplibs" @@ -6290,13 +7927,13 @@ func_append newlib_search_path " $func_resolve_sysroot_result" ;; *) - func_warning "\`-L' is ignored for archives/objects" + func_warning "'-L' is ignored for archives/objects" ;; esac # linkmode continue ;; # -L -R*) - if test "$pass" = link; then + if test link = "$pass"; then func_stripname '-R' '' "$deplib" func_resolve_sysroot "$func_stripname_result" dir=$func_resolve_sysroot_result @@ -6314,7 +7951,7 @@ lib=$func_resolve_sysroot_result ;; *.$libext) - if test "$pass" = conv; then + if test conv = "$pass"; then deplibs="$deplib $deplibs" continue fi @@ -6325,21 +7962,26 @@ case " $dlpreconveniencelibs " in *" $deplib "*) ;; *) - valid_a_lib=no + valid_a_lib=false case $deplibs_check_method in match_pattern*) set dummy $deplibs_check_method; shift match_pattern_regex=`expr "$deplibs_check_method" : "$1 \(.*\)"` if eval "\$ECHO \"$deplib\"" 2>/dev/null | $SED 10q \ | $EGREP "$match_pattern_regex" > /dev/null; then - valid_a_lib=yes + valid_a_lib=: fi ;; pass_all) - valid_a_lib=yes + valid_a_lib=: ;; esac - if test "$valid_a_lib" != yes; then + if $valid_a_lib; then + echo + $ECHO "*** Warning: Linking the shared library $output against the" + $ECHO "*** static library $deplib is not portable!" + deplibs="$deplib $deplibs" + else echo $ECHO "*** Warning: Trying to link with static lib archive $deplib." echo "*** I have the capability to make that library automatically link in when" @@ -6347,18 +7989,13 @@ echo "*** shared version of the library, which you do not appear to have" echo "*** because the file extensions .$libext of this argument makes me believe" echo "*** that it is just a static archive that I should not use here." - else - echo - $ECHO "*** Warning: Linking the shared library $output against the" - $ECHO "*** static library $deplib is not portable!" - deplibs="$deplib $deplibs" fi ;; esac continue ;; prog) - if test "$pass" != link; then + if test link != "$pass"; then deplibs="$deplib $deplibs" else compile_deplibs="$deplib $compile_deplibs" @@ -6369,10 +8006,10 @@ esac # linkmode ;; # *.$libext *.lo | *.$objext) - if test "$pass" = conv; then + if test conv = "$pass"; then deplibs="$deplib $deplibs" - elif test "$linkmode" = prog; then - if test "$pass" = dlpreopen || test "$dlopen_support" != yes || test "$build_libtool_libs" = no; then + elif test prog = "$linkmode"; then + if test dlpreopen = "$pass" || test yes != "$dlopen_support" || test no = "$build_libtool_libs"; then # If there is no dlopen support or we're linking statically, # we need to preload. func_append newdlprefiles " $deplib" @@ -6385,22 +8022,20 @@ continue ;; %DEPLIBS%) - alldeplibs=yes + alldeplibs=: continue ;; esac # case $deplib - if test "$found" = yes || test -f "$lib"; then : - else - func_fatal_error "cannot find the library \`$lib' or unhandled argument \`$deplib'" - fi + $found || test -f "$lib" \ + || func_fatal_error "cannot find the library '$lib' or unhandled argument '$deplib'" # Check to see that this really is a libtool archive. func_lalib_unsafe_p "$lib" \ - || func_fatal_error "\`$lib' is not a valid libtool archive" + || func_fatal_error "'$lib' is not a valid libtool archive" func_dirname "$lib" "" "." - ladir="$func_dirname_result" + ladir=$func_dirname_result dlname= dlopen= @@ -6430,19 +8065,19 @@ done fi dependency_libs=`$ECHO " $dependency_libs" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` - if test "$linkmode,$pass" = "lib,link" || - test "$linkmode,$pass" = "prog,scan" || - { test "$linkmode" != prog && test "$linkmode" != lib; }; then + if test lib,link = "$linkmode,$pass" || + test prog,scan = "$linkmode,$pass" || + { test prog != "$linkmode" && test lib != "$linkmode"; }; then test -n "$dlopen" && func_append dlfiles " $dlopen" test -n "$dlpreopen" && func_append dlprefiles " $dlpreopen" fi - if test "$pass" = conv; then + if test conv = "$pass"; then # Only check for convenience libraries deplibs="$lib $deplibs" if test -z "$libdir"; then if test -z "$old_library"; then - func_fatal_error "cannot find name of link library for \`$lib'" + func_fatal_error "cannot find name of link library for '$lib'" fi # It is a libtool convenience library, so add in its objects. func_append convenience " $ladir/$objdir/$old_library" @@ -6450,15 +8085,15 @@ tmp_libs= for deplib in $dependency_libs; do deplibs="$deplib $deplibs" - if $opt_preserve_dup_deps ; then + if $opt_preserve_dup_deps; then case "$tmp_libs " in *" $deplib "*) func_append specialdeplibs " $deplib" ;; esac fi func_append tmp_libs " $deplib" done - elif test "$linkmode" != prog && test "$linkmode" != lib; then - func_fatal_error "\`$lib' is not a convenience library" + elif test prog != "$linkmode" && test lib != "$linkmode"; then + func_fatal_error "'$lib' is not a convenience library" fi continue fi # $pass = conv @@ -6467,26 +8102,26 @@ # Get the name of the library we link against. linklib= if test -n "$old_library" && - { test "$prefer_static_libs" = yes || - test "$prefer_static_libs,$installed" = "built,no"; }; then + { test yes = "$prefer_static_libs" || + test built,no = "$prefer_static_libs,$installed"; }; then linklib=$old_library else for l in $old_library $library_names; do - linklib="$l" + linklib=$l done fi if test -z "$linklib"; then - func_fatal_error "cannot find name of link library for \`$lib'" + func_fatal_error "cannot find name of link library for '$lib'" fi # This library was specified with -dlopen. - if test "$pass" = dlopen; then - if test -z "$libdir"; then - func_fatal_error "cannot -dlopen a convenience library: \`$lib'" - fi + if test dlopen = "$pass"; then + test -z "$libdir" \ + && func_fatal_error "cannot -dlopen a convenience library: '$lib'" if test -z "$dlname" || - test "$dlopen_support" != yes || - test "$build_libtool_libs" = no; then + test yes != "$dlopen_support" || + test no = "$build_libtool_libs" + then # If there is no dlname, no dlopen support or we're linking # statically, we need to preload. We also need to preload any # dependent libraries so libltdl's deplib preloader doesn't @@ -6500,40 +8135,40 @@ # We need an absolute path. case $ladir in - [\\/]* | [A-Za-z]:[\\/]*) abs_ladir="$ladir" ;; + [\\/]* | [A-Za-z]:[\\/]*) abs_ladir=$ladir ;; *) abs_ladir=`cd "$ladir" && pwd` if test -z "$abs_ladir"; then - func_warning "cannot determine absolute directory name of \`$ladir'" + func_warning "cannot determine absolute directory name of '$ladir'" func_warning "passing it literally to the linker, although it might fail" - abs_ladir="$ladir" + abs_ladir=$ladir fi ;; esac func_basename "$lib" - laname="$func_basename_result" + laname=$func_basename_result # Find the relevant object directory and library name. - if test "X$installed" = Xyes; then + if test yes = "$installed"; then if test ! -f "$lt_sysroot$libdir/$linklib" && test -f "$abs_ladir/$linklib"; then - func_warning "library \`$lib' was moved." - dir="$ladir" - absdir="$abs_ladir" - libdir="$abs_ladir" + func_warning "library '$lib' was moved." + dir=$ladir + absdir=$abs_ladir + libdir=$abs_ladir else - dir="$lt_sysroot$libdir" - absdir="$lt_sysroot$libdir" + dir=$lt_sysroot$libdir + absdir=$lt_sysroot$libdir fi - test "X$hardcode_automatic" = Xyes && avoidtemprpath=yes + test yes = "$hardcode_automatic" && avoidtemprpath=yes else if test ! -f "$ladir/$objdir/$linklib" && test -f "$abs_ladir/$linklib"; then - dir="$ladir" - absdir="$abs_ladir" + dir=$ladir + absdir=$abs_ladir # Remove this search path later func_append notinst_path " $abs_ladir" else - dir="$ladir/$objdir" - absdir="$abs_ladir/$objdir" + dir=$ladir/$objdir + absdir=$abs_ladir/$objdir # Remove this search path later func_append notinst_path " $abs_ladir" fi @@ -6542,11 +8177,11 @@ name=$func_stripname_result # This library was specified with -dlpreopen. - if test "$pass" = dlpreopen; then - if test -z "$libdir" && test "$linkmode" = prog; then - func_fatal_error "only libraries may -dlpreopen a convenience library: \`$lib'" + if test dlpreopen = "$pass"; then + if test -z "$libdir" && test prog = "$linkmode"; then + func_fatal_error "only libraries may -dlpreopen a convenience library: '$lib'" fi - case "$host" in + case $host in # special handling for platforms with PE-DLLs. *cygwin* | *mingw* | *cegcc* ) # Linker will automatically link against shared library if both @@ -6590,9 +8225,9 @@ if test -z "$libdir"; then # Link the convenience library - if test "$linkmode" = lib; then + if test lib = "$linkmode"; then deplibs="$dir/$old_library $deplibs" - elif test "$linkmode,$pass" = "prog,link"; then + elif test prog,link = "$linkmode,$pass"; then compile_deplibs="$dir/$old_library $compile_deplibs" finalize_deplibs="$dir/$old_library $finalize_deplibs" else @@ -6602,14 +8237,14 @@ fi - if test "$linkmode" = prog && test "$pass" != link; then + if test prog = "$linkmode" && test link != "$pass"; then func_append newlib_search_path " $ladir" deplibs="$lib $deplibs" - linkalldeplibs=no - if test "$link_all_deplibs" != no || test -z "$library_names" || - test "$build_libtool_libs" = no; then - linkalldeplibs=yes + linkalldeplibs=false + if test no != "$link_all_deplibs" || test -z "$library_names" || + test no = "$build_libtool_libs"; then + linkalldeplibs=: fi tmp_libs= @@ -6621,14 +8256,14 @@ ;; esac # Need to link against all dependency_libs? - if test "$linkalldeplibs" = yes; then + if $linkalldeplibs; then deplibs="$deplib $deplibs" else # Need to hardcode shared library paths # or/and link against static libraries newdependency_libs="$deplib $newdependency_libs" fi - if $opt_preserve_dup_deps ; then + if $opt_preserve_dup_deps; then case "$tmp_libs " in *" $deplib "*) func_append specialdeplibs " $deplib" ;; esac @@ -6638,15 +8273,15 @@ continue fi # $linkmode = prog... - if test "$linkmode,$pass" = "prog,link"; then + if test prog,link = "$linkmode,$pass"; then if test -n "$library_names" && - { { test "$prefer_static_libs" = no || - test "$prefer_static_libs,$installed" = "built,yes"; } || + { { test no = "$prefer_static_libs" || + test built,yes = "$prefer_static_libs,$installed"; } || test -z "$old_library"; }; then # We need to hardcode the library path - if test -n "$shlibpath_var" && test -z "$avoidtemprpath" ; then + if test -n "$shlibpath_var" && test -z "$avoidtemprpath"; then # Make sure the rpath contains only unique directories. - case "$temp_rpath:" in + case $temp_rpath: in *"$absdir:"*) ;; *) func_append temp_rpath "$absdir:" ;; esac @@ -6675,9 +8310,9 @@ esac fi # $linkmode,$pass = prog,link... - if test "$alldeplibs" = yes && - { test "$deplibs_check_method" = pass_all || - { test "$build_libtool_libs" = yes && + if $alldeplibs && + { test pass_all = "$deplibs_check_method" || + { test yes = "$build_libtool_libs" && test -n "$library_names"; }; }; then # We only need to search for static libraries continue @@ -6686,19 +8321,19 @@ link_static=no # Whether the deplib will be linked statically use_static_libs=$prefer_static_libs - if test "$use_static_libs" = built && test "$installed" = yes; then + if test built = "$use_static_libs" && test yes = "$installed"; then use_static_libs=no fi if test -n "$library_names" && - { test "$use_static_libs" = no || test -z "$old_library"; }; then + { test no = "$use_static_libs" || test -z "$old_library"; }; then case $host in - *cygwin* | *mingw* | *cegcc*) + *cygwin* | *mingw* | *cegcc* | *os2*) # No point in relinking DLLs because paths are not encoded func_append notinst_deplibs " $lib" need_relink=no ;; *) - if test "$installed" = no; then + if test no = "$installed"; then func_append notinst_deplibs " $lib" need_relink=yes fi @@ -6708,24 +8343,24 @@ # Warn about portability, can't link against -module's on some # systems (darwin). Don't bleat about dlopened modules though! - dlopenmodule="" + dlopenmodule= for dlpremoduletest in $dlprefiles; do if test "X$dlpremoduletest" = "X$lib"; then - dlopenmodule="$dlpremoduletest" + dlopenmodule=$dlpremoduletest break fi done - if test -z "$dlopenmodule" && test "$shouldnotlink" = yes && test "$pass" = link; then + if test -z "$dlopenmodule" && test yes = "$shouldnotlink" && test link = "$pass"; then echo - if test "$linkmode" = prog; then + if test prog = "$linkmode"; then $ECHO "*** Warning: Linking the executable $output against the loadable module" else $ECHO "*** Warning: Linking the shared library $output against the loadable module" fi $ECHO "*** $linklib is not portable!" fi - if test "$linkmode" = lib && - test "$hardcode_into_libs" = yes; then + if test lib = "$linkmode" && + test yes = "$hardcode_into_libs"; then # Hardcode the library path. # Skip directories that are in the system default run-time # search path. @@ -6753,43 +8388,43 @@ # figure out the soname set dummy $library_names shift - realname="$1" + realname=$1 shift libname=`eval "\\$ECHO \"$libname_spec\""` # use dlname if we got it. it's perfectly good, no? if test -n "$dlname"; then - soname="$dlname" + soname=$dlname elif test -n "$soname_spec"; then # bleh windows case $host in - *cygwin* | mingw* | *cegcc*) + *cygwin* | mingw* | *cegcc* | *os2*) func_arith $current - $age major=$func_arith_result - versuffix="-$major" + versuffix=-$major ;; esac eval soname=\"$soname_spec\" else - soname="$realname" + soname=$realname fi # Make a new name for the extract_expsyms_cmds to use - soroot="$soname" + soroot=$soname func_basename "$soroot" - soname="$func_basename_result" + soname=$func_basename_result func_stripname 'lib' '.dll' "$soname" newlib=libimp-$func_stripname_result.a # If the library has no export list, then create one now if test -f "$output_objdir/$soname-def"; then : else - func_verbose "extracting exported symbol list from \`$soname'" + func_verbose "extracting exported symbol list from '$soname'" func_execute_cmds "$extract_expsyms_cmds" 'exit $?' fi # Create $newlib if test -f "$output_objdir/$newlib"; then :; else - func_verbose "generating import library for \`$soname'" + func_verbose "generating import library for '$soname'" func_execute_cmds "$old_archive_from_expsyms_cmds" 'exit $?' fi # make sure the library variables are pointing to the new library @@ -6797,58 +8432,58 @@ linklib=$newlib fi # test -n "$old_archive_from_expsyms_cmds" - if test "$linkmode" = prog || test "$opt_mode" != relink; then + if test prog = "$linkmode" || test relink != "$opt_mode"; then add_shlibpath= add_dir= add= lib_linked=yes case $hardcode_action in immediate | unsupported) - if test "$hardcode_direct" = no; then - add="$dir/$linklib" + if test no = "$hardcode_direct"; then + add=$dir/$linklib case $host in - *-*-sco3.2v5.0.[024]*) add_dir="-L$dir" ;; - *-*-sysv4*uw2*) add_dir="-L$dir" ;; + *-*-sco3.2v5.0.[024]*) add_dir=-L$dir ;; + *-*-sysv4*uw2*) add_dir=-L$dir ;; *-*-sysv5OpenUNIX* | *-*-sysv5UnixWare7.[01].[10]* | \ - *-*-unixware7*) add_dir="-L$dir" ;; + *-*-unixware7*) add_dir=-L$dir ;; *-*-darwin* ) - # if the lib is a (non-dlopened) module then we can not + # if the lib is a (non-dlopened) module then we cannot # link against it, someone is ignoring the earlier warnings if /usr/bin/file -L $add 2> /dev/null | - $GREP ": [^:]* bundle" >/dev/null ; then + $GREP ": [^:]* bundle" >/dev/null; then if test "X$dlopenmodule" != "X$lib"; then $ECHO "*** Warning: lib $linklib is a module, not a shared library" - if test -z "$old_library" ; then + if test -z "$old_library"; then echo echo "*** And there doesn't seem to be a static archive available" echo "*** The link will probably fail, sorry" else - add="$dir/$old_library" + add=$dir/$old_library fi elif test -n "$old_library"; then - add="$dir/$old_library" + add=$dir/$old_library fi fi esac - elif test "$hardcode_minus_L" = no; then + elif test no = "$hardcode_minus_L"; then case $host in - *-*-sunos*) add_shlibpath="$dir" ;; + *-*-sunos*) add_shlibpath=$dir ;; esac - add_dir="-L$dir" - add="-l$name" - elif test "$hardcode_shlibpath_var" = no; then - add_shlibpath="$dir" - add="-l$name" + add_dir=-L$dir + add=-l$name + elif test no = "$hardcode_shlibpath_var"; then + add_shlibpath=$dir + add=-l$name else lib_linked=no fi ;; relink) - if test "$hardcode_direct" = yes && - test "$hardcode_direct_absolute" = no; then - add="$dir/$linklib" - elif test "$hardcode_minus_L" = yes; then - add_dir="-L$absdir" + if test yes = "$hardcode_direct" && + test no = "$hardcode_direct_absolute"; then + add=$dir/$linklib + elif test yes = "$hardcode_minus_L"; then + add_dir=-L$absdir # Try looking first in the location we're being installed to. if test -n "$inst_prefix_dir"; then case $libdir in @@ -6857,10 +8492,10 @@ ;; esac fi - add="-l$name" - elif test "$hardcode_shlibpath_var" = yes; then - add_shlibpath="$dir" - add="-l$name" + add=-l$name + elif test yes = "$hardcode_shlibpath_var"; then + add_shlibpath=$dir + add=-l$name else lib_linked=no fi @@ -6868,7 +8503,7 @@ *) lib_linked=no ;; esac - if test "$lib_linked" != yes; then + if test yes != "$lib_linked"; then func_fatal_configuration "unsupported hardcode properties" fi @@ -6878,15 +8513,15 @@ *) func_append compile_shlibpath "$add_shlibpath:" ;; esac fi - if test "$linkmode" = prog; then + if test prog = "$linkmode"; then test -n "$add_dir" && compile_deplibs="$add_dir $compile_deplibs" test -n "$add" && compile_deplibs="$add $compile_deplibs" else test -n "$add_dir" && deplibs="$add_dir $deplibs" test -n "$add" && deplibs="$add $deplibs" - if test "$hardcode_direct" != yes && - test "$hardcode_minus_L" != yes && - test "$hardcode_shlibpath_var" = yes; then + if test yes != "$hardcode_direct" && + test yes != "$hardcode_minus_L" && + test yes = "$hardcode_shlibpath_var"; then case :$finalize_shlibpath: in *":$libdir:"*) ;; *) func_append finalize_shlibpath "$libdir:" ;; @@ -6895,33 +8530,33 @@ fi fi - if test "$linkmode" = prog || test "$opt_mode" = relink; then + if test prog = "$linkmode" || test relink = "$opt_mode"; then add_shlibpath= add_dir= add= # Finalize command for both is simple: just hardcode it. - if test "$hardcode_direct" = yes && - test "$hardcode_direct_absolute" = no; then - add="$libdir/$linklib" - elif test "$hardcode_minus_L" = yes; then - add_dir="-L$libdir" - add="-l$name" - elif test "$hardcode_shlibpath_var" = yes; then + if test yes = "$hardcode_direct" && + test no = "$hardcode_direct_absolute"; then + add=$libdir/$linklib + elif test yes = "$hardcode_minus_L"; then + add_dir=-L$libdir + add=-l$name + elif test yes = "$hardcode_shlibpath_var"; then case :$finalize_shlibpath: in *":$libdir:"*) ;; *) func_append finalize_shlibpath "$libdir:" ;; esac - add="-l$name" - elif test "$hardcode_automatic" = yes; then + add=-l$name + elif test yes = "$hardcode_automatic"; then if test -n "$inst_prefix_dir" && - test -f "$inst_prefix_dir$libdir/$linklib" ; then - add="$inst_prefix_dir$libdir/$linklib" + test -f "$inst_prefix_dir$libdir/$linklib"; then + add=$inst_prefix_dir$libdir/$linklib else - add="$libdir/$linklib" + add=$libdir/$linklib fi else # We cannot seem to hardcode it, guess we'll fake it. - add_dir="-L$libdir" + add_dir=-L$libdir # Try looking first in the location we're being installed to. if test -n "$inst_prefix_dir"; then case $libdir in @@ -6930,10 +8565,10 @@ ;; esac fi - add="-l$name" + add=-l$name fi - if test "$linkmode" = prog; then + if test prog = "$linkmode"; then test -n "$add_dir" && finalize_deplibs="$add_dir $finalize_deplibs" test -n "$add" && finalize_deplibs="$add $finalize_deplibs" else @@ -6941,43 +8576,43 @@ test -n "$add" && deplibs="$add $deplibs" fi fi - elif test "$linkmode" = prog; then + elif test prog = "$linkmode"; then # Here we assume that one of hardcode_direct or hardcode_minus_L # is not unsupported. This is valid on all known static and # shared platforms. - if test "$hardcode_direct" != unsupported; then - test -n "$old_library" && linklib="$old_library" + if test unsupported != "$hardcode_direct"; then + test -n "$old_library" && linklib=$old_library compile_deplibs="$dir/$linklib $compile_deplibs" finalize_deplibs="$dir/$linklib $finalize_deplibs" else compile_deplibs="-l$name -L$dir $compile_deplibs" finalize_deplibs="-l$name -L$dir $finalize_deplibs" fi - elif test "$build_libtool_libs" = yes; then + elif test yes = "$build_libtool_libs"; then # Not a shared library - if test "$deplibs_check_method" != pass_all; then + if test pass_all != "$deplibs_check_method"; then # We're trying link a shared library against a static one # but the system doesn't support it. # Just print a warning and add the library to dependency_libs so # that the program can be linked against the static library. echo - $ECHO "*** Warning: This system can not link to static lib archive $lib." + $ECHO "*** Warning: This system cannot link to static lib archive $lib." echo "*** I have the capability to make that library automatically link in when" echo "*** you link to this library. But I can only do this if you have a" echo "*** shared version of the library, which you do not appear to have." - if test "$module" = yes; then + if test yes = "$module"; then echo "*** But as you try to build a module library, libtool will still create " echo "*** a static module, that should work as long as the dlopening application" echo "*** is linked with the -dlopen flag to resolve symbols at runtime." if test -z "$global_symbol_pipe"; then echo echo "*** However, this would only work if libtool was able to extract symbol" - echo "*** lists from a program, using \`nm' or equivalent, but libtool could" + echo "*** lists from a program, using 'nm' or equivalent, but libtool could" echo "*** not find such a program. So, this module is probably useless." - echo "*** \`nm' from GNU binutils and a full rebuild may help." + echo "*** 'nm' from GNU binutils and a full rebuild may help." fi - if test "$build_old_libs" = no; then + if test no = "$build_old_libs"; then build_libtool_libs=module build_old_libs=yes else @@ -6990,11 +8625,11 @@ fi fi # link shared/static library? - if test "$linkmode" = lib; then + if test lib = "$linkmode"; then if test -n "$dependency_libs" && - { test "$hardcode_into_libs" != yes || - test "$build_old_libs" = yes || - test "$link_static" = yes; }; then + { test yes != "$hardcode_into_libs" || + test yes = "$build_old_libs" || + test yes = "$link_static"; }; then # Extract -R from dependency_libs temp_deplibs= for libdir in $dependency_libs; do @@ -7008,12 +8643,12 @@ *) func_append temp_deplibs " $libdir";; esac done - dependency_libs="$temp_deplibs" + dependency_libs=$temp_deplibs fi func_append newlib_search_path " $absdir" # Link against this library - test "$link_static" = no && newdependency_libs="$abs_ladir/$laname $newdependency_libs" + test no = "$link_static" && newdependency_libs="$abs_ladir/$laname $newdependency_libs" # ... and its dependency_libs tmp_libs= for deplib in $dependency_libs; do @@ -7023,7 +8658,7 @@ func_resolve_sysroot "$func_stripname_result";; *) func_resolve_sysroot "$deplib" ;; esac - if $opt_preserve_dup_deps ; then + if $opt_preserve_dup_deps; then case "$tmp_libs " in *" $func_resolve_sysroot_result "*) func_append specialdeplibs " $func_resolve_sysroot_result" ;; @@ -7032,12 +8667,12 @@ func_append tmp_libs " $func_resolve_sysroot_result" done - if test "$link_all_deplibs" != no; then + if test no != "$link_all_deplibs"; then # Add the search paths of all dependency libraries for deplib in $dependency_libs; do path= case $deplib in - -L*) path="$deplib" ;; + -L*) path=$deplib ;; *.la) func_resolve_sysroot "$deplib" deplib=$func_resolve_sysroot_result @@ -7045,12 +8680,12 @@ dir=$func_dirname_result # We need an absolute path. case $dir in - [\\/]* | [A-Za-z]:[\\/]*) absdir="$dir" ;; + [\\/]* | [A-Za-z]:[\\/]*) absdir=$dir ;; *) absdir=`cd "$dir" && pwd` if test -z "$absdir"; then - func_warning "cannot determine absolute directory name of \`$dir'" - absdir="$dir" + func_warning "cannot determine absolute directory name of '$dir'" + absdir=$dir fi ;; esac @@ -7058,35 +8693,35 @@ case $host in *-*-darwin*) depdepl= - eval deplibrary_names=`${SED} -n -e 's/^library_names=\(.*\)$/\1/p' $deplib` - if test -n "$deplibrary_names" ; then - for tmp in $deplibrary_names ; do + eval deplibrary_names=`$SED -n -e 's/^library_names=\(.*\)$/\1/p' $deplib` + if test -n "$deplibrary_names"; then + for tmp in $deplibrary_names; do depdepl=$tmp done - if test -f "$absdir/$objdir/$depdepl" ; then - depdepl="$absdir/$objdir/$depdepl" - darwin_install_name=`${OTOOL} -L $depdepl | awk '{if (NR == 2) {print $1;exit}}'` + if test -f "$absdir/$objdir/$depdepl"; then + depdepl=$absdir/$objdir/$depdepl + darwin_install_name=`$OTOOL -L $depdepl | awk '{if (NR == 2) {print $1;exit}}'` if test -z "$darwin_install_name"; then - darwin_install_name=`${OTOOL64} -L $depdepl | awk '{if (NR == 2) {print $1;exit}}'` + darwin_install_name=`$OTOOL64 -L $depdepl | awk '{if (NR == 2) {print $1;exit}}'` fi - func_append compiler_flags " ${wl}-dylib_file ${wl}${darwin_install_name}:${depdepl}" - func_append linker_flags " -dylib_file ${darwin_install_name}:${depdepl}" + func_append compiler_flags " $wl-dylib_file $wl$darwin_install_name:$depdepl" + func_append linker_flags " -dylib_file $darwin_install_name:$depdepl" path= fi fi ;; *) - path="-L$absdir/$objdir" + path=-L$absdir/$objdir ;; esac else - eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $deplib` + eval libdir=`$SED -n -e 's/^libdir=\(.*\)$/\1/p' $deplib` test -z "$libdir" && \ - func_fatal_error "\`$deplib' is not a valid libtool archive" + func_fatal_error "'$deplib' is not a valid libtool archive" test "$absdir" != "$libdir" && \ - func_warning "\`$deplib' seems to be moved" + func_warning "'$deplib' seems to be moved" - path="-L$absdir" + path=-L$absdir fi ;; esac @@ -7098,23 +8733,23 @@ fi # link_all_deplibs != no fi # linkmode = lib done # for deplib in $libs - if test "$pass" = link; then - if test "$linkmode" = "prog"; then + if test link = "$pass"; then + if test prog = "$linkmode"; then compile_deplibs="$new_inherited_linker_flags $compile_deplibs" finalize_deplibs="$new_inherited_linker_flags $finalize_deplibs" else compiler_flags="$compiler_flags "`$ECHO " $new_inherited_linker_flags" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` fi fi - dependency_libs="$newdependency_libs" - if test "$pass" = dlpreopen; then + dependency_libs=$newdependency_libs + if test dlpreopen = "$pass"; then # Link the dlpreopened libraries before other libraries for deplib in $save_deplibs; do deplibs="$deplib $deplibs" done fi - if test "$pass" != dlopen; then - if test "$pass" != conv; then + if test dlopen != "$pass"; then + test conv = "$pass" || { # Make sure lib_search_path contains only unique directories. lib_search_path= for dir in $newlib_search_path; do @@ -7124,12 +8759,12 @@ esac done newlib_search_path= - fi + } - if test "$linkmode,$pass" != "prog,link"; then - vars="deplibs" - else + if test prog,link = "$linkmode,$pass"; then vars="compile_deplibs finalize_deplibs" + else + vars=deplibs fi for var in $vars dependency_libs; do # Add libraries to $var in reverse order @@ -7187,62 +8822,93 @@ eval $var=\"$tmp_libs\" done # for var fi + + # Add Sun CC postdeps if required: + test CXX = "$tagname" && { + case $host_os in + linux*) + case `$CC -V 2>&1 | sed 5q` in + *Sun\ C*) # Sun C++ 5.9 + func_suncc_cstd_abi + + if test no != "$suncc_use_cstd_abi"; then + func_append postdeps ' -library=Cstd -library=Crun' + fi + ;; + esac + ;; + + solaris*) + func_cc_basename "$CC" + case $func_cc_basename_result in + CC* | sunCC*) + func_suncc_cstd_abi + + if test no != "$suncc_use_cstd_abi"; then + func_append postdeps ' -library=Cstd -library=Crun' + fi + ;; + esac + ;; + esac + } + # Last step: remove runtime libs from dependency_libs # (they stay in deplibs) tmp_libs= - for i in $dependency_libs ; do + for i in $dependency_libs; do case " $predeps $postdeps $compiler_lib_search_path " in *" $i "*) - i="" + i= ;; esac - if test -n "$i" ; then + if test -n "$i"; then func_append tmp_libs " $i" fi done dependency_libs=$tmp_libs done # for pass - if test "$linkmode" = prog; then - dlfiles="$newdlfiles" + if test prog = "$linkmode"; then + dlfiles=$newdlfiles fi - if test "$linkmode" = prog || test "$linkmode" = lib; then - dlprefiles="$newdlprefiles" + if test prog = "$linkmode" || test lib = "$linkmode"; then + dlprefiles=$newdlprefiles fi case $linkmode in oldlib) - if test -n "$dlfiles$dlprefiles" || test "$dlself" != no; then - func_warning "\`-dlopen' is ignored for archives" + if test -n "$dlfiles$dlprefiles" || test no != "$dlself"; then + func_warning "'-dlopen' is ignored for archives" fi case " $deplibs" in *\ -l* | *\ -L*) - func_warning "\`-l' and \`-L' are ignored for archives" ;; + func_warning "'-l' and '-L' are ignored for archives" ;; esac test -n "$rpath" && \ - func_warning "\`-rpath' is ignored for archives" + func_warning "'-rpath' is ignored for archives" test -n "$xrpath" && \ - func_warning "\`-R' is ignored for archives" + func_warning "'-R' is ignored for archives" test -n "$vinfo" && \ - func_warning "\`-version-info/-version-number' is ignored for archives" + func_warning "'-version-info/-version-number' is ignored for archives" test -n "$release" && \ - func_warning "\`-release' is ignored for archives" + func_warning "'-release' is ignored for archives" test -n "$export_symbols$export_symbols_regex" && \ - func_warning "\`-export-symbols' is ignored for archives" + func_warning "'-export-symbols' is ignored for archives" # Now set the variables for building old libraries. build_libtool_libs=no - oldlibs="$output" + oldlibs=$output func_append objs "$old_deplibs" ;; lib) - # Make sure we only generate libraries of the form `libNAME.la'. + # Make sure we only generate libraries of the form 'libNAME.la'. case $outputname in lib*) func_stripname 'lib' '.la' "$outputname" @@ -7251,10 +8917,10 @@ eval libname=\"$libname_spec\" ;; *) - test "$module" = no && \ - func_fatal_help "libtool library \`$output' must begin with \`lib'" + test no = "$module" \ + && func_fatal_help "libtool library '$output' must begin with 'lib'" - if test "$need_lib_prefix" != no; then + if test no != "$need_lib_prefix"; then # Add the "lib" prefix for modules if required func_stripname '' '.la' "$outputname" name=$func_stripname_result @@ -7268,8 +8934,8 @@ esac if test -n "$objs"; then - if test "$deplibs_check_method" != pass_all; then - func_fatal_error "cannot build libtool library \`$output' from non-libtool objects on this host:$objs" + if test pass_all != "$deplibs_check_method"; then + func_fatal_error "cannot build libtool library '$output' from non-libtool objects on this host:$objs" else echo $ECHO "*** Warning: Linking the shared library $output against the non-libtool" @@ -7278,21 +8944,21 @@ fi fi - test "$dlself" != no && \ - func_warning "\`-dlopen self' is ignored for libtool libraries" + test no = "$dlself" \ + || func_warning "'-dlopen self' is ignored for libtool libraries" set dummy $rpath shift - test "$#" -gt 1 && \ - func_warning "ignoring multiple \`-rpath's for a libtool library" + test 1 -lt "$#" \ + && func_warning "ignoring multiple '-rpath's for a libtool library" - install_libdir="$1" + install_libdir=$1 oldlibs= if test -z "$rpath"; then - if test "$build_libtool_libs" = yes; then + if test yes = "$build_libtool_libs"; then # Building a libtool convenience library. - # Some compilers have problems with a `.al' extension so + # Some compilers have problems with a '.al' extension so # convenience libraries should have the same extension an # archive normally would. oldlibs="$output_objdir/$libname.$libext $oldlibs" @@ -7301,20 +8967,20 @@ fi test -n "$vinfo" && \ - func_warning "\`-version-info/-version-number' is ignored for convenience libraries" + func_warning "'-version-info/-version-number' is ignored for convenience libraries" test -n "$release" && \ - func_warning "\`-release' is ignored for convenience libraries" + func_warning "'-release' is ignored for convenience libraries" else # Parse the version information argument. - save_ifs="$IFS"; IFS=':' + save_ifs=$IFS; IFS=: set dummy $vinfo 0 0 0 shift - IFS="$save_ifs" + IFS=$save_ifs test -n "$7" && \ - func_fatal_help "too many parameters to \`-version-info'" + func_fatal_help "too many parameters to '-version-info'" # convert absolute version numbers to libtool ages # this retains compatibility with .la files and attempts @@ -7322,45 +8988,45 @@ case $vinfo_number in yes) - number_major="$1" - number_minor="$2" - number_revision="$3" + number_major=$1 + number_minor=$2 + number_revision=$3 # # There are really only two kinds -- those that # use the current revision as the major version # and those that subtract age and use age as # a minor version. But, then there is irix - # which has an extra 1 added just for fun + # that has an extra 1 added just for fun # case $version_type in # correct linux to gnu/linux during the next big refactor - darwin|linux|osf|windows|none) + darwin|freebsd-elf|linux|osf|windows|none) func_arith $number_major + $number_minor current=$func_arith_result - age="$number_minor" - revision="$number_revision" + age=$number_minor + revision=$number_revision ;; - freebsd-aout|freebsd-elf|qnx|sunos) - current="$number_major" - revision="$number_minor" - age="0" + freebsd-aout|qnx|sunos) + current=$number_major + revision=$number_minor + age=0 ;; irix|nonstopux) func_arith $number_major + $number_minor current=$func_arith_result - age="$number_minor" - revision="$number_minor" + age=$number_minor + revision=$number_minor lt_irix_increment=no ;; *) - func_fatal_configuration "$modename: unknown library version type \`$version_type'" + func_fatal_configuration "$modename: unknown library version type '$version_type'" ;; esac ;; no) - current="$1" - revision="$2" - age="$3" + current=$1 + revision=$2 + age=$3 ;; esac @@ -7368,30 +9034,30 @@ case $current in 0|[1-9]|[1-9][0-9]|[1-9][0-9][0-9]|[1-9][0-9][0-9][0-9]|[1-9][0-9][0-9][0-9][0-9]) ;; *) - func_error "CURRENT \`$current' must be a nonnegative integer" - func_fatal_error "\`$vinfo' is not valid version information" + func_error "CURRENT '$current' must be a nonnegative integer" + func_fatal_error "'$vinfo' is not valid version information" ;; esac case $revision in 0|[1-9]|[1-9][0-9]|[1-9][0-9][0-9]|[1-9][0-9][0-9][0-9]|[1-9][0-9][0-9][0-9][0-9]) ;; *) - func_error "REVISION \`$revision' must be a nonnegative integer" - func_fatal_error "\`$vinfo' is not valid version information" + func_error "REVISION '$revision' must be a nonnegative integer" + func_fatal_error "'$vinfo' is not valid version information" ;; esac case $age in 0|[1-9]|[1-9][0-9]|[1-9][0-9][0-9]|[1-9][0-9][0-9][0-9]|[1-9][0-9][0-9][0-9][0-9]) ;; *) - func_error "AGE \`$age' must be a nonnegative integer" - func_fatal_error "\`$vinfo' is not valid version information" + func_error "AGE '$age' must be a nonnegative integer" + func_fatal_error "'$vinfo' is not valid version information" ;; esac if test "$age" -gt "$current"; then - func_error "AGE \`$age' is greater than the current interface number \`$current'" - func_fatal_error "\`$vinfo' is not valid version information" + func_error "AGE '$age' is greater than the current interface number '$current'" + func_fatal_error "'$vinfo' is not valid version information" fi # Calculate the version variables. @@ -7406,26 +9072,36 @@ # verstring for coding it into the library header func_arith $current - $age major=.$func_arith_result - versuffix="$major.$age.$revision" + versuffix=$major.$age.$revision # Darwin ld doesn't like 0 for these options... func_arith $current + 1 minor_current=$func_arith_result - xlcverstring="${wl}-compatibility_version ${wl}$minor_current ${wl}-current_version ${wl}$minor_current.$revision" + xlcverstring="$wl-compatibility_version $wl$minor_current $wl-current_version $wl$minor_current.$revision" verstring="-compatibility_version $minor_current -current_version $minor_current.$revision" + # On Darwin other compilers + case $CC in + nagfor*) + verstring="$wl-compatibility_version $wl$minor_current $wl-current_version $wl$minor_current.$revision" + ;; + *) + verstring="-compatibility_version $minor_current -current_version $minor_current.$revision" + ;; + esac ;; freebsd-aout) - major=".$current" - versuffix=".$current.$revision"; + major=.$current + versuffix=.$current.$revision ;; freebsd-elf) - major=".$current" - versuffix=".$current" + func_arith $current - $age + major=.$func_arith_result + versuffix=$major.$age.$revision ;; irix | nonstopux) - if test "X$lt_irix_increment" = "Xno"; then + if test no = "$lt_irix_increment"; then func_arith $current - $age else func_arith $current - $age + 1 @@ -7436,69 +9112,74 @@ nonstopux) verstring_prefix=nonstopux ;; *) verstring_prefix=sgi ;; esac - verstring="$verstring_prefix$major.$revision" + verstring=$verstring_prefix$major.$revision # Add in all the interfaces that we are compatible with. loop=$revision - while test "$loop" -ne 0; do + while test 0 -ne "$loop"; do func_arith $revision - $loop iface=$func_arith_result func_arith $loop - 1 loop=$func_arith_result - verstring="$verstring_prefix$major.$iface:$verstring" + verstring=$verstring_prefix$major.$iface:$verstring done - # Before this point, $major must not contain `.'. + # Before this point, $major must not contain '.'. major=.$major - versuffix="$major.$revision" + versuffix=$major.$revision ;; linux) # correct to gnu/linux during the next big refactor func_arith $current - $age major=.$func_arith_result - versuffix="$major.$age.$revision" + versuffix=$major.$age.$revision ;; osf) func_arith $current - $age major=.$func_arith_result - versuffix=".$current.$age.$revision" - verstring="$current.$age.$revision" + versuffix=.$current.$age.$revision + verstring=$current.$age.$revision # Add in all the interfaces that we are compatible with. loop=$age - while test "$loop" -ne 0; do + while test 0 -ne "$loop"; do func_arith $current - $loop iface=$func_arith_result func_arith $loop - 1 loop=$func_arith_result - verstring="$verstring:${iface}.0" + verstring=$verstring:$iface.0 done # Make executables depend on our current version. - func_append verstring ":${current}.0" + func_append verstring ":$current.0" ;; qnx) - major=".$current" - versuffix=".$current" + major=.$current + versuffix=.$current + ;; + + sco) + major=.$current + versuffix=.$current ;; sunos) - major=".$current" - versuffix=".$current.$revision" + major=.$current + versuffix=.$current.$revision ;; windows) # Use '-' rather than '.', since we only want one - # extension on DOS 8.3 filesystems. + # extension on DOS 8.3 file systems. func_arith $current - $age major=$func_arith_result - versuffix="-$major" + versuffix=-$major ;; *) - func_fatal_configuration "unknown library version type \`$version_type'" + func_fatal_configuration "unknown library version type '$version_type'" ;; esac @@ -7512,42 +9193,45 @@ verstring= ;; *) - verstring="0.0" + verstring=0.0 ;; esac - if test "$need_version" = no; then + if test no = "$need_version"; then versuffix= else - versuffix=".0.0" + versuffix=.0.0 fi fi # Remove version info from name if versioning should be avoided - if test "$avoid_version" = yes && test "$need_version" = no; then + if test yes,no = "$avoid_version,$need_version"; then major= versuffix= - verstring="" + verstring= fi # Check to see if the archive will have undefined symbols. - if test "$allow_undefined" = yes; then - if test "$allow_undefined_flag" = unsupported; then - func_warning "undefined symbols not allowed in $host shared libraries" - build_libtool_libs=no - build_old_libs=yes + if test yes = "$allow_undefined"; then + if test unsupported = "$allow_undefined_flag"; then + if test yes = "$build_old_libs"; then + func_warning "undefined symbols not allowed in $host shared libraries; building static only" + build_libtool_libs=no + else + func_fatal_error "can't build $host shared library unless -no-undefined is specified" + fi fi else # Don't allow undefined symbols. - allow_undefined_flag="$no_undefined_flag" + allow_undefined_flag=$no_undefined_flag fi fi - func_generate_dlsyms "$libname" "$libname" "yes" + func_generate_dlsyms "$libname" "$libname" : func_append libobjs " $symfileobj" - test "X$libobjs" = "X " && libobjs= + test " " = "$libobjs" && libobjs= - if test "$opt_mode" != relink; then + if test relink != "$opt_mode"; then # Remove our outputs, but don't remove object files since they # may have been created when compiling PIC objects. removelist= @@ -7556,8 +9240,8 @@ case $p in *.$objext | *.gcno) ;; - $output_objdir/$outputname | $output_objdir/$libname.* | $output_objdir/${libname}${release}.*) - if test "X$precious_files_regex" != "X"; then + $output_objdir/$outputname | $output_objdir/$libname.* | $output_objdir/$libname$release.*) + if test -n "$precious_files_regex"; then if $ECHO "$p" | $EGREP -e "$precious_files_regex" >/dev/null 2>&1 then continue @@ -7573,11 +9257,11 @@ fi # Now set the variables for building old libraries. - if test "$build_old_libs" = yes && test "$build_libtool_libs" != convenience ; then + if test yes = "$build_old_libs" && test convenience != "$build_libtool_libs"; then func_append oldlibs " $output_objdir/$libname.$libext" # Transform .lo files to .o files. - oldobjs="$objs "`$ECHO "$libobjs" | $SP2NL | $SED "/\.${libext}$/d; $lo2o" | $NL2SP` + oldobjs="$objs "`$ECHO "$libobjs" | $SP2NL | $SED "/\.$libext$/d; $lo2o" | $NL2SP` fi # Eliminate all temporary directories. @@ -7598,13 +9282,13 @@ *) func_append finalize_rpath " $libdir" ;; esac done - if test "$hardcode_into_libs" != yes || test "$build_old_libs" = yes; then + if test yes != "$hardcode_into_libs" || test yes = "$build_old_libs"; then dependency_libs="$temp_xrpath $dependency_libs" fi fi # Make sure dlfiles contains only unique files that won't be dlpreopened - old_dlfiles="$dlfiles" + old_dlfiles=$dlfiles dlfiles= for lib in $old_dlfiles; do case " $dlprefiles $dlfiles " in @@ -7614,7 +9298,7 @@ done # Make sure dlprefiles contains only unique files - old_dlprefiles="$dlprefiles" + old_dlprefiles=$dlprefiles dlprefiles= for lib in $old_dlprefiles; do case "$dlprefiles " in @@ -7623,7 +9307,7 @@ esac done - if test "$build_libtool_libs" = yes; then + if test yes = "$build_libtool_libs"; then if test -n "$rpath"; then case $host in *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-*-beos* | *-cegcc* | *-*-haiku*) @@ -7647,7 +9331,7 @@ ;; *) # Add libc to deplibs on all other systems if necessary. - if test "$build_libtool_need_lc" = "yes"; then + if test yes = "$build_libtool_need_lc"; then func_append deplibs " -lc" fi ;; @@ -7663,9 +9347,9 @@ # I'm not sure if I'm treating the release correctly. I think # release should show up in the -l (ie -lgmp5) so we don't want to # add it in twice. Is that correct? - release="" - versuffix="" - major="" + release= + versuffix= + major= newdeplibs= droppeddeps=no case $deplibs_check_method in @@ -7694,20 +9378,20 @@ -l*) func_stripname -l '' "$i" name=$func_stripname_result - if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; then + if test yes = "$allow_libtool_libs_with_static_runtimes"; then case " $predeps $postdeps " in *" $i "*) func_append newdeplibs " $i" - i="" + i= ;; esac fi - if test -n "$i" ; then + if test -n "$i"; then libname=`eval "\\$ECHO \"$libname_spec\""` deplib_matches=`eval "\\$ECHO \"$library_names_spec\""` set dummy $deplib_matches; shift deplib_match=$1 - if test `expr "$ldd_output" : ".*$deplib_match"` -ne 0 ; then + if test `expr "$ldd_output" : ".*$deplib_match"` -ne 0; then func_append newdeplibs " $i" else droppeddeps=yes @@ -7737,20 +9421,20 @@ $opt_dry_run || $RM conftest if $LTCC $LTCFLAGS -o conftest conftest.c $i; then ldd_output=`ldd conftest` - if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; then + if test yes = "$allow_libtool_libs_with_static_runtimes"; then case " $predeps $postdeps " in *" $i "*) func_append newdeplibs " $i" - i="" + i= ;; esac fi - if test -n "$i" ; then + if test -n "$i"; then libname=`eval "\\$ECHO \"$libname_spec\""` deplib_matches=`eval "\\$ECHO \"$library_names_spec\""` set dummy $deplib_matches; shift deplib_match=$1 - if test `expr "$ldd_output" : ".*$deplib_match"` -ne 0 ; then + if test `expr "$ldd_output" : ".*$deplib_match"` -ne 0; then func_append newdeplibs " $i" else droppeddeps=yes @@ -7787,24 +9471,24 @@ -l*) func_stripname -l '' "$a_deplib" name=$func_stripname_result - if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; then + if test yes = "$allow_libtool_libs_with_static_runtimes"; then case " $predeps $postdeps " in *" $a_deplib "*) func_append newdeplibs " $a_deplib" - a_deplib="" + a_deplib= ;; esac fi - if test -n "$a_deplib" ; then + if test -n "$a_deplib"; then libname=`eval "\\$ECHO \"$libname_spec\""` if test -n "$file_magic_glob"; then libnameglob=`func_echo_all "$libname" | $SED -e $file_magic_glob` else libnameglob=$libname fi - test "$want_nocaseglob" = yes && nocaseglob=`shopt -p nocaseglob` + test yes = "$want_nocaseglob" && nocaseglob=`shopt -p nocaseglob` for i in $lib_search_path $sys_lib_search_path $shlib_search_path; do - if test "$want_nocaseglob" = yes; then + if test yes = "$want_nocaseglob"; then shopt -s nocaseglob potential_libs=`ls $i/$libnameglob[.-]* 2>/dev/null` $nocaseglob @@ -7822,25 +9506,25 @@ # We might still enter an endless loop, since a link # loop can be closed while we follow links, # but so what? - potlib="$potent_lib" + potlib=$potent_lib while test -h "$potlib" 2>/dev/null; do - potliblink=`ls -ld $potlib | ${SED} 's/.* -> //'` + potliblink=`ls -ld $potlib | $SED 's/.* -> //'` case $potliblink in - [\\/]* | [A-Za-z]:[\\/]*) potlib="$potliblink";; - *) potlib=`$ECHO "$potlib" | $SED 's,[^/]*$,,'`"$potliblink";; + [\\/]* | [A-Za-z]:[\\/]*) potlib=$potliblink;; + *) potlib=`$ECHO "$potlib" | $SED 's|[^/]*$||'`"$potliblink";; esac done if eval $file_magic_cmd \"\$potlib\" 2>/dev/null | $SED -e 10q | $EGREP "$file_magic_regex" > /dev/null; then func_append newdeplibs " $a_deplib" - a_deplib="" + a_deplib= break 2 fi done done fi - if test -n "$a_deplib" ; then + if test -n "$a_deplib"; then droppeddeps=yes echo $ECHO "*** Warning: linker path does not have real file for library $a_deplib." @@ -7848,7 +9532,7 @@ echo "*** you link to this library. But I can only do this if you have a" echo "*** shared version of the library, which you do not appear to have" echo "*** because I did check the linker path looking for a file starting" - if test -z "$potlib" ; then + if test -z "$potlib"; then $ECHO "*** with $libname but no candidates were found. (...for file magic test)" else $ECHO "*** with $libname and none of the candidates passed a file format test" @@ -7871,30 +9555,30 @@ -l*) func_stripname -l '' "$a_deplib" name=$func_stripname_result - if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; then + if test yes = "$allow_libtool_libs_with_static_runtimes"; then case " $predeps $postdeps " in *" $a_deplib "*) func_append newdeplibs " $a_deplib" - a_deplib="" + a_deplib= ;; esac fi - if test -n "$a_deplib" ; then + if test -n "$a_deplib"; then libname=`eval "\\$ECHO \"$libname_spec\""` for i in $lib_search_path $sys_lib_search_path $shlib_search_path; do potential_libs=`ls $i/$libname[.-]* 2>/dev/null` for potent_lib in $potential_libs; do - potlib="$potent_lib" # see symlink-check above in file_magic test + potlib=$potent_lib # see symlink-check above in file_magic test if eval "\$ECHO \"$potent_lib\"" 2>/dev/null | $SED 10q | \ $EGREP "$match_pattern_regex" > /dev/null; then func_append newdeplibs " $a_deplib" - a_deplib="" + a_deplib= break 2 fi done done fi - if test -n "$a_deplib" ; then + if test -n "$a_deplib"; then droppeddeps=yes echo $ECHO "*** Warning: linker path does not have real file for library $a_deplib." @@ -7902,7 +9586,7 @@ echo "*** you link to this library. But I can only do this if you have a" echo "*** shared version of the library, which you do not appear to have" echo "*** because I did check the linker path looking for a file starting" - if test -z "$potlib" ; then + if test -z "$potlib"; then $ECHO "*** with $libname but no candidates were found. (...for regex pattern test)" else $ECHO "*** with $libname and none of the candidates passed a file format test" @@ -7918,18 +9602,18 @@ done # Gone through all deplibs. ;; none | unknown | *) - newdeplibs="" + newdeplibs= tmp_deplibs=`$ECHO " $deplibs" | $SED 's/ -lc$//; s/ -[LR][^ ]*//g'` - if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; then - for i in $predeps $postdeps ; do + if test yes = "$allow_libtool_libs_with_static_runtimes"; then + for i in $predeps $postdeps; do # can't use Xsed below, because $i might contain '/' - tmp_deplibs=`$ECHO " $tmp_deplibs" | $SED "s,$i,,"` + tmp_deplibs=`$ECHO " $tmp_deplibs" | $SED "s|$i||"` done fi case $tmp_deplibs in *[!\ \ ]*) echo - if test "X$deplibs_check_method" = "Xnone"; then + if test none = "$deplibs_check_method"; then echo "*** Warning: inter-library dependencies are not supported in this platform." else echo "*** Warning: inter-library dependencies are not known to be supported." @@ -7953,8 +9637,8 @@ ;; esac - if test "$droppeddeps" = yes; then - if test "$module" = yes; then + if test yes = "$droppeddeps"; then + if test yes = "$module"; then echo echo "*** Warning: libtool could not satisfy all declared inter-library" $ECHO "*** dependencies of module $libname. Therefore, libtool will create" @@ -7963,12 +9647,12 @@ if test -z "$global_symbol_pipe"; then echo echo "*** However, this would only work if libtool was able to extract symbol" - echo "*** lists from a program, using \`nm' or equivalent, but libtool could" + echo "*** lists from a program, using 'nm' or equivalent, but libtool could" echo "*** not find such a program. So, this module is probably useless." - echo "*** \`nm' from GNU binutils and a full rebuild may help." + echo "*** 'nm' from GNU binutils and a full rebuild may help." fi - if test "$build_old_libs" = no; then - oldlibs="$output_objdir/$libname.$libext" + if test no = "$build_old_libs"; then + oldlibs=$output_objdir/$libname.$libext build_libtool_libs=module build_old_libs=yes else @@ -7979,14 +9663,14 @@ echo "*** automatically added whenever a program is linked with this library" echo "*** or is declared to -dlopen it." - if test "$allow_undefined" = no; then + if test no = "$allow_undefined"; then echo echo "*** Since this library must not contain undefined symbols," echo "*** because either the platform does not support them or" echo "*** it was explicitly requested with -no-undefined," echo "*** libtool will only create a static version of it." - if test "$build_old_libs" = no; then - oldlibs="$output_objdir/$libname.$libext" + if test no = "$build_old_libs"; then + oldlibs=$output_objdir/$libname.$libext build_libtool_libs=module build_old_libs=yes else @@ -8032,7 +9716,7 @@ *) func_append new_libs " $deplib" ;; esac done - deplibs="$new_libs" + deplibs=$new_libs # All the library-specific variables (install_libdir is set above). library_names= @@ -8040,25 +9724,25 @@ dlname= # Test again, we may have decided not to build it any more - if test "$build_libtool_libs" = yes; then - # Remove ${wl} instances when linking with ld. + if test yes = "$build_libtool_libs"; then + # Remove $wl instances when linking with ld. # FIXME: should test the right _cmds variable. case $archive_cmds in *\$LD\ *) wl= ;; esac - if test "$hardcode_into_libs" = yes; then + if test yes = "$hardcode_into_libs"; then # Hardcode the library paths hardcode_libdirs= dep_rpath= - rpath="$finalize_rpath" - test "$opt_mode" != relink && rpath="$compile_rpath$rpath" + rpath=$finalize_rpath + test relink = "$opt_mode" || rpath=$compile_rpath$rpath for libdir in $rpath; do if test -n "$hardcode_libdir_flag_spec"; then if test -n "$hardcode_libdir_separator"; then func_replace_sysroot "$libdir" libdir=$func_replace_sysroot_result if test -z "$hardcode_libdirs"; then - hardcode_libdirs="$libdir" + hardcode_libdirs=$libdir else # Just accumulate the unique libdirs. case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in @@ -8083,7 +9767,7 @@ # Substitute the hardcoded libdirs into the rpath. if test -n "$hardcode_libdir_separator" && test -n "$hardcode_libdirs"; then - libdir="$hardcode_libdirs" + libdir=$hardcode_libdirs eval "dep_rpath=\"$hardcode_libdir_flag_spec\"" fi if test -n "$runpath_var" && test -n "$perm_rpath"; then @@ -8097,8 +9781,8 @@ test -n "$dep_rpath" && deplibs="$dep_rpath $deplibs" fi - shlibpath="$finalize_shlibpath" - test "$opt_mode" != relink && shlibpath="$compile_shlibpath$shlibpath" + shlibpath=$finalize_shlibpath + test relink = "$opt_mode" || shlibpath=$compile_shlibpath$shlibpath if test -n "$shlibpath"; then eval "$shlibpath_var='$shlibpath\$$shlibpath_var'; export $shlibpath_var" fi @@ -8108,19 +9792,19 @@ eval library_names=\"$library_names_spec\" set dummy $library_names shift - realname="$1" + realname=$1 shift if test -n "$soname_spec"; then eval soname=\"$soname_spec\" else - soname="$realname" + soname=$realname fi if test -z "$dlname"; then dlname=$soname fi - lib="$output_objdir/$realname" + lib=$output_objdir/$realname linknames= for link do @@ -8134,7 +9818,7 @@ delfiles= if test -n "$export_symbols" && test -n "$include_expsyms"; then $opt_dry_run || cp "$export_symbols" "$output_objdir/$libname.uexp" - export_symbols="$output_objdir/$libname.uexp" + export_symbols=$output_objdir/$libname.uexp func_append delfiles " $export_symbols" fi @@ -8143,31 +9827,31 @@ cygwin* | mingw* | cegcc*) if test -n "$export_symbols" && test -z "$export_symbols_regex"; then # exporting using user supplied symfile - if test "x`$SED 1q $export_symbols`" != xEXPORTS; then + func_dll_def_p "$export_symbols" || { # and it's NOT already a .def file. Must figure out # which of the given symbols are data symbols and tag # them as such. So, trigger use of export_symbols_cmds. # export_symbols gets reassigned inside the "prepare # the list of exported symbols" if statement, so the # include_expsyms logic still works. - orig_export_symbols="$export_symbols" + orig_export_symbols=$export_symbols export_symbols= always_export_symbols=yes - fi + } fi ;; esac # Prepare the list of exported symbols if test -z "$export_symbols"; then - if test "$always_export_symbols" = yes || test -n "$export_symbols_regex"; then - func_verbose "generating symbol list for \`$libname.la'" - export_symbols="$output_objdir/$libname.exp" + if test yes = "$always_export_symbols" || test -n "$export_symbols_regex"; then + func_verbose "generating symbol list for '$libname.la'" + export_symbols=$output_objdir/$libname.exp $opt_dry_run || $RM $export_symbols cmds=$export_symbols_cmds - save_ifs="$IFS"; IFS='~' + save_ifs=$IFS; IFS='~' for cmd1 in $cmds; do - IFS="$save_ifs" + IFS=$save_ifs # Take the normal branch if the nm_file_list_spec branch # doesn't work or if tool conversion is not needed. case $nm_file_list_spec~$to_tool_file_cmd in @@ -8181,7 +9865,7 @@ try_normal_branch=no ;; esac - if test "$try_normal_branch" = yes \ + if test yes = "$try_normal_branch" \ && { test "$len" -lt "$max_cmd_len" \ || test "$max_cmd_len" -le -1; } then @@ -8192,7 +9876,7 @@ output_la=$func_basename_result save_libobjs=$libobjs save_output=$output - output=${output_objdir}/${output_la}.nm + output=$output_objdir/$output_la.nm func_to_tool_file "$output" libobjs=$nm_file_list_spec$func_to_tool_file_result func_append delfiles " $output" @@ -8215,8 +9899,8 @@ break fi done - IFS="$save_ifs" - if test -n "$export_symbols_regex" && test "X$skipped_export" != "X:"; then + IFS=$save_ifs + if test -n "$export_symbols_regex" && test : != "$skipped_export"; then func_show_eval '$EGREP -e "$export_symbols_regex" "$export_symbols" > "${export_symbols}T"' func_show_eval '$MV "${export_symbols}T" "$export_symbols"' fi @@ -8224,16 +9908,16 @@ fi if test -n "$export_symbols" && test -n "$include_expsyms"; then - tmp_export_symbols="$export_symbols" - test -n "$orig_export_symbols" && tmp_export_symbols="$orig_export_symbols" + tmp_export_symbols=$export_symbols + test -n "$orig_export_symbols" && tmp_export_symbols=$orig_export_symbols $opt_dry_run || eval '$ECHO "$include_expsyms" | $SP2NL >> "$tmp_export_symbols"' fi - if test "X$skipped_export" != "X:" && test -n "$orig_export_symbols"; then + if test : != "$skipped_export" && test -n "$orig_export_symbols"; then # The given exports_symbols file has to be filtered, so filter it. - func_verbose "filter symbol list for \`$libname.la' to tag DATA exports" + func_verbose "filter symbol list for '$libname.la' to tag DATA exports" # FIXME: $output_objdir/$libname.filter potentially contains lots of - # 's' commands which not all seds can handle. GNU sed should be fine + # 's' commands, which not all seds can handle. GNU sed should be fine # though. Also, the filter scales superlinearly with the number of # global variables. join(1) would be nice here, but unfortunately # isn't a blessed tool. @@ -8252,11 +9936,11 @@ ;; esac done - deplibs="$tmp_deplibs" + deplibs=$tmp_deplibs if test -n "$convenience"; then if test -n "$whole_archive_flag_spec" && - test "$compiler_needs_object" = yes && + test yes = "$compiler_needs_object" && test -z "$libobjs"; then # extract the archives, so we have objects to list. # TODO: could optimize this to just extract one archive. @@ -8267,7 +9951,7 @@ eval libobjs=\"\$libobjs $whole_archive_flag_spec\" test "X$libobjs" = "X " && libobjs= else - gentop="$output_objdir/${outputname}x" + gentop=$output_objdir/${outputname}x func_append generated " $gentop" func_extract_archives $gentop $convenience @@ -8276,18 +9960,18 @@ fi fi - if test "$thread_safe" = yes && test -n "$thread_safe_flag_spec"; then + if test yes = "$thread_safe" && test -n "$thread_safe_flag_spec"; then eval flag=\"$thread_safe_flag_spec\" func_append linker_flags " $flag" fi # Make a backup of the uninstalled library when relinking - if test "$opt_mode" = relink; then + if test relink = "$opt_mode"; then $opt_dry_run || eval '(cd $output_objdir && $RM ${realname}U && $MV $realname ${realname}U)' || exit $? fi # Do each of the archive commands. - if test "$module" = yes && test -n "$module_cmds" ; then + if test yes = "$module" && test -n "$module_cmds"; then if test -n "$export_symbols" && test -n "$module_expsym_cmds"; then eval test_cmds=\"$module_expsym_cmds\" cmds=$module_expsym_cmds @@ -8305,7 +9989,7 @@ fi fi - if test "X$skipped_export" != "X:" && + if test : != "$skipped_export" && func_len " $test_cmds" && len=$func_len_result && test "$len" -lt "$max_cmd_len" || test "$max_cmd_len" -le -1; then @@ -8338,8 +10022,8 @@ last_robj= k=1 - if test -n "$save_libobjs" && test "X$skipped_export" != "X:" && test "$with_gnu_ld" = yes; then - output=${output_objdir}/${output_la}.lnkscript + if test -n "$save_libobjs" && test : != "$skipped_export" && test yes = "$with_gnu_ld"; then + output=$output_objdir/$output_la.lnkscript func_verbose "creating GNU ld script: $output" echo 'INPUT (' > $output for obj in $save_libobjs @@ -8351,14 +10035,14 @@ func_append delfiles " $output" func_to_tool_file "$output" output=$func_to_tool_file_result - elif test -n "$save_libobjs" && test "X$skipped_export" != "X:" && test "X$file_list_spec" != X; then - output=${output_objdir}/${output_la}.lnk + elif test -n "$save_libobjs" && test : != "$skipped_export" && test -n "$file_list_spec"; then + output=$output_objdir/$output_la.lnk func_verbose "creating linker input file list: $output" : > $output set x $save_libobjs shift firstobj= - if test "$compiler_needs_object" = yes; then + if test yes = "$compiler_needs_object"; then firstobj="$1 " shift fi @@ -8373,7 +10057,7 @@ else if test -n "$save_libobjs"; then func_verbose "creating reloadable object files..." - output=$output_objdir/$output_la-${k}.$objext + output=$output_objdir/$output_la-$k.$objext eval test_cmds=\"$reload_cmds\" func_len " $test_cmds" len0=$func_len_result @@ -8385,13 +10069,13 @@ func_len " $obj" func_arith $len + $func_len_result len=$func_arith_result - if test "X$objlist" = X || + if test -z "$objlist" || test "$len" -lt "$max_cmd_len"; then func_append objlist " $obj" else # The command $test_cmds is almost too long, add a # command to the queue. - if test "$k" -eq 1 ; then + if test 1 -eq "$k"; then # The first file doesn't have a previous command to add. reload_objs=$objlist eval concat_cmds=\"$reload_cmds\" @@ -8401,10 +10085,10 @@ reload_objs="$objlist $last_robj" eval concat_cmds=\"\$concat_cmds~$reload_cmds~\$RM $last_robj\" fi - last_robj=$output_objdir/$output_la-${k}.$objext + last_robj=$output_objdir/$output_la-$k.$objext func_arith $k + 1 k=$func_arith_result - output=$output_objdir/$output_la-${k}.$objext + output=$output_objdir/$output_la-$k.$objext objlist=" $obj" func_len " $last_robj" func_arith $len0 + $func_len_result @@ -8416,9 +10100,9 @@ # files will link in the last one created. test -z "$concat_cmds" || concat_cmds=$concat_cmds~ reload_objs="$objlist $last_robj" - eval concat_cmds=\"\${concat_cmds}$reload_cmds\" + eval concat_cmds=\"\$concat_cmds$reload_cmds\" if test -n "$last_robj"; then - eval concat_cmds=\"\${concat_cmds}~\$RM $last_robj\" + eval concat_cmds=\"\$concat_cmds~\$RM $last_robj\" fi func_append delfiles " $output" @@ -8426,9 +10110,9 @@ output= fi - if ${skipped_export-false}; then - func_verbose "generating symbol list for \`$libname.la'" - export_symbols="$output_objdir/$libname.exp" + ${skipped_export-false} && { + func_verbose "generating symbol list for '$libname.la'" + export_symbols=$output_objdir/$libname.exp $opt_dry_run || $RM $export_symbols libobjs=$output # Append the command to create the export file. @@ -8437,24 +10121,24 @@ if test -n "$last_robj"; then eval concat_cmds=\"\$concat_cmds~\$RM $last_robj\" fi - fi + } test -n "$save_libobjs" && func_verbose "creating a temporary reloadable object file: $output" # Loop through the commands generated above and execute them. - save_ifs="$IFS"; IFS='~' + save_ifs=$IFS; IFS='~' for cmd in $concat_cmds; do - IFS="$save_ifs" - $opt_silent || { - func_quote_for_expand "$cmd" - eval "func_echo $func_quote_for_expand_result" + IFS=$save_ifs + $opt_quiet || { + func_quote_arg expand,pretty "$cmd" + eval "func_echo $func_quote_arg_result" } $opt_dry_run || eval "$cmd" || { lt_exit=$? # Restore the uninstalled library and exit - if test "$opt_mode" = relink; then + if test relink = "$opt_mode"; then ( cd "$output_objdir" && \ $RM "${realname}T" && \ $MV "${realname}U" "$realname" ) @@ -8463,7 +10147,7 @@ exit $lt_exit } done - IFS="$save_ifs" + IFS=$save_ifs if test -n "$export_symbols_regex" && ${skipped_export-false}; then func_show_eval '$EGREP -e "$export_symbols_regex" "$export_symbols" > "${export_symbols}T"' @@ -8471,18 +10155,18 @@ fi fi - if ${skipped_export-false}; then + ${skipped_export-false} && { if test -n "$export_symbols" && test -n "$include_expsyms"; then - tmp_export_symbols="$export_symbols" - test -n "$orig_export_symbols" && tmp_export_symbols="$orig_export_symbols" + tmp_export_symbols=$export_symbols + test -n "$orig_export_symbols" && tmp_export_symbols=$orig_export_symbols $opt_dry_run || eval '$ECHO "$include_expsyms" | $SP2NL >> "$tmp_export_symbols"' fi if test -n "$orig_export_symbols"; then # The given exports_symbols file has to be filtered, so filter it. - func_verbose "filter symbol list for \`$libname.la' to tag DATA exports" + func_verbose "filter symbol list for '$libname.la' to tag DATA exports" # FIXME: $output_objdir/$libname.filter potentially contains lots of - # 's' commands which not all seds can handle. GNU sed should be fine + # 's' commands, which not all seds can handle. GNU sed should be fine # though. Also, the filter scales superlinearly with the number of # global variables. join(1) would be nice here, but unfortunately # isn't a blessed tool. @@ -8491,7 +10175,7 @@ export_symbols=$output_objdir/$libname.def $opt_dry_run || $SED -f $output_objdir/$libname.filter < $orig_export_symbols > $export_symbols fi - fi + } libobjs=$output # Restore the value of output. @@ -8505,7 +10189,7 @@ # value of $libobjs for piecewise linking. # Do each of the archive commands. - if test "$module" = yes && test -n "$module_cmds" ; then + if test yes = "$module" && test -n "$module_cmds"; then if test -n "$export_symbols" && test -n "$module_expsym_cmds"; then cmds=$module_expsym_cmds else @@ -8527,7 +10211,7 @@ # Add any objects from preloaded convenience libraries if test -n "$dlprefiles"; then - gentop="$output_objdir/${outputname}x" + gentop=$output_objdir/${outputname}x func_append generated " $gentop" func_extract_archives $gentop $dlprefiles @@ -8535,19 +10219,20 @@ test "X$libobjs" = "X " && libobjs= fi - save_ifs="$IFS"; IFS='~' + save_ifs=$IFS; IFS='~' for cmd in $cmds; do - IFS="$save_ifs" + IFS=$sp$nl eval cmd=\"$cmd\" - $opt_silent || { - func_quote_for_expand "$cmd" - eval "func_echo $func_quote_for_expand_result" + IFS=$save_ifs + $opt_quiet || { + func_quote_arg expand,pretty "$cmd" + eval "func_echo $func_quote_arg_result" } $opt_dry_run || eval "$cmd" || { lt_exit=$? # Restore the uninstalled library and exit - if test "$opt_mode" = relink; then + if test relink = "$opt_mode"; then ( cd "$output_objdir" && \ $RM "${realname}T" && \ $MV "${realname}U" "$realname" ) @@ -8556,10 +10241,10 @@ exit $lt_exit } done - IFS="$save_ifs" + IFS=$save_ifs # Restore the uninstalled library and exit - if test "$opt_mode" = relink; then + if test relink = "$opt_mode"; then $opt_dry_run || eval '(cd $output_objdir && $RM ${realname}T && $MV $realname ${realname}T && $MV ${realname}U $realname)' || exit $? if test -n "$convenience"; then @@ -8579,39 +10264,39 @@ done # If -module or -export-dynamic was specified, set the dlname. - if test "$module" = yes || test "$export_dynamic" = yes; then + if test yes = "$module" || test yes = "$export_dynamic"; then # On all known operating systems, these are identical. - dlname="$soname" + dlname=$soname fi fi ;; obj) - if test -n "$dlfiles$dlprefiles" || test "$dlself" != no; then - func_warning "\`-dlopen' is ignored for objects" + if test -n "$dlfiles$dlprefiles" || test no != "$dlself"; then + func_warning "'-dlopen' is ignored for objects" fi case " $deplibs" in *\ -l* | *\ -L*) - func_warning "\`-l' and \`-L' are ignored for objects" ;; + func_warning "'-l' and '-L' are ignored for objects" ;; esac test -n "$rpath" && \ - func_warning "\`-rpath' is ignored for objects" + func_warning "'-rpath' is ignored for objects" test -n "$xrpath" && \ - func_warning "\`-R' is ignored for objects" + func_warning "'-R' is ignored for objects" test -n "$vinfo" && \ - func_warning "\`-version-info' is ignored for objects" + func_warning "'-version-info' is ignored for objects" test -n "$release" && \ - func_warning "\`-release' is ignored for objects" + func_warning "'-release' is ignored for objects" case $output in *.lo) test -n "$objs$old_deplibs" && \ - func_fatal_error "cannot build library object \`$output' from non-libtool objects" + func_fatal_error "cannot build library object '$output' from non-libtool objects" libobj=$output func_lo2o "$libobj" @@ -8619,7 +10304,7 @@ ;; *) libobj= - obj="$output" + obj=$output ;; esac @@ -8632,17 +10317,19 @@ # the extraction. reload_conv_objs= gentop= - # reload_cmds runs $LD directly, so let us get rid of - # -Wl from whole_archive_flag_spec and hope we can get by with - # turning comma into space.. - wl= - + # if reload_cmds runs $LD directly, get rid of -Wl from + # whole_archive_flag_spec and hope we can get by with turning comma + # into space. + case $reload_cmds in + *\$LD[\ \$]*) wl= ;; + esac if test -n "$convenience"; then if test -n "$whole_archive_flag_spec"; then eval tmp_whole_archive_flags=\"$whole_archive_flag_spec\" - reload_conv_objs=$reload_objs\ `$ECHO "$tmp_whole_archive_flags" | $SED 's|,| |g'` + test -n "$wl" || tmp_whole_archive_flags=`$ECHO "$tmp_whole_archive_flags" | $SED 's|,| |g'` + reload_conv_objs=$reload_objs\ $tmp_whole_archive_flags else - gentop="$output_objdir/${obj}x" + gentop=$output_objdir/${obj}x func_append generated " $gentop" func_extract_archives $gentop $convenience @@ -8651,12 +10338,12 @@ fi # If we're not building shared, we need to use non_pic_objs - test "$build_libtool_libs" != yes && libobjs="$non_pic_objects" + test yes = "$build_libtool_libs" || libobjs=$non_pic_objects # Create the old-style object. - reload_objs="$objs$old_deplibs "`$ECHO "$libobjs" | $SP2NL | $SED "/\.${libext}$/d; /\.lib$/d; $lo2o" | $NL2SP`" $reload_conv_objs" ### testsuite: skip nested quoting test + reload_objs=$objs$old_deplibs' '`$ECHO "$libobjs" | $SP2NL | $SED "/\.$libext$/d; /\.lib$/d; $lo2o" | $NL2SP`' '$reload_conv_objs - output="$obj" + output=$obj func_execute_cmds "$reload_cmds" 'exit $?' # Exit if we aren't doing a library object file. @@ -8668,7 +10355,7 @@ exit $EXIT_SUCCESS fi - if test "$build_libtool_libs" != yes; then + test yes = "$build_libtool_libs" || { if test -n "$gentop"; then func_show_eval '${RM}r "$gentop"' fi @@ -8678,12 +10365,12 @@ # $show "echo timestamp > $libobj" # $opt_dry_run || eval "echo timestamp > $libobj" || exit $? exit $EXIT_SUCCESS - fi + } - if test -n "$pic_flag" || test "$pic_mode" != default; then + if test -n "$pic_flag" || test default != "$pic_mode"; then # Only do commands if we really have different PIC objects. reload_objs="$libobjs $reload_conv_objs" - output="$libobj" + output=$libobj func_execute_cmds "$reload_cmds" 'exit $?' fi @@ -8700,16 +10387,14 @@ output=$func_stripname_result.exe;; esac test -n "$vinfo" && \ - func_warning "\`-version-info' is ignored for programs" + func_warning "'-version-info' is ignored for programs" test -n "$release" && \ - func_warning "\`-release' is ignored for programs" + func_warning "'-release' is ignored for programs" - test "$preload" = yes \ - && test "$dlopen_support" = unknown \ - && test "$dlopen_self" = unknown \ - && test "$dlopen_self_static" = unknown && \ - func_warning "\`LT_INIT([dlopen])' not used. Assuming no dlopen support." + $preload \ + && test unknown,unknown,unknown = "$dlopen_support,$dlopen_self,$dlopen_self_static" \ + && func_warning "'LT_INIT([dlopen])' not used. Assuming no dlopen support." case $host in *-*-rhapsody* | *-*-darwin1.[012]) @@ -8723,11 +10408,11 @@ *-*-darwin*) # Don't allow lazy linking, it breaks C++ global constructors # But is supposedly fixed on 10.4 or later (yay!). - if test "$tagname" = CXX ; then + if test CXX = "$tagname"; then case ${MACOSX_DEPLOYMENT_TARGET-10.0} in 10.[0123]) - func_append compile_command " ${wl}-bind_at_load" - func_append finalize_command " ${wl}-bind_at_load" + func_append compile_command " $wl-bind_at_load" + func_append finalize_command " $wl-bind_at_load" ;; esac fi @@ -8763,7 +10448,7 @@ *) func_append new_libs " $deplib" ;; esac done - compile_deplibs="$new_libs" + compile_deplibs=$new_libs func_append compile_command " $compile_deplibs" @@ -8787,7 +10472,7 @@ if test -n "$hardcode_libdir_flag_spec"; then if test -n "$hardcode_libdir_separator"; then if test -z "$hardcode_libdirs"; then - hardcode_libdirs="$libdir" + hardcode_libdirs=$libdir else # Just accumulate the unique libdirs. case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in @@ -8810,7 +10495,7 @@ fi case $host in *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-cegcc*) - testbindir=`${ECHO} "$libdir" | ${SED} -e 's*/lib$*/bin*'` + testbindir=`$ECHO "$libdir" | $SED -e 's*/lib$*/bin*'` case :$dllsearchpath: in *":$libdir:"*) ;; ::) dllsearchpath=$libdir;; @@ -8827,10 +10512,10 @@ # Substitute the hardcoded libdirs into the rpath. if test -n "$hardcode_libdir_separator" && test -n "$hardcode_libdirs"; then - libdir="$hardcode_libdirs" + libdir=$hardcode_libdirs eval rpath=\" $hardcode_libdir_flag_spec\" fi - compile_rpath="$rpath" + compile_rpath=$rpath rpath= hardcode_libdirs= @@ -8838,7 +10523,7 @@ if test -n "$hardcode_libdir_flag_spec"; then if test -n "$hardcode_libdir_separator"; then if test -z "$hardcode_libdirs"; then - hardcode_libdirs="$libdir" + hardcode_libdirs=$libdir else # Just accumulate the unique libdirs. case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in @@ -8863,45 +10548,43 @@ # Substitute the hardcoded libdirs into the rpath. if test -n "$hardcode_libdir_separator" && test -n "$hardcode_libdirs"; then - libdir="$hardcode_libdirs" + libdir=$hardcode_libdirs eval rpath=\" $hardcode_libdir_flag_spec\" fi - finalize_rpath="$rpath" + finalize_rpath=$rpath - if test -n "$libobjs" && test "$build_old_libs" = yes; then + if test -n "$libobjs" && test yes = "$build_old_libs"; then # Transform all the library objects into standard objects. compile_command=`$ECHO "$compile_command" | $SP2NL | $SED "$lo2o" | $NL2SP` finalize_command=`$ECHO "$finalize_command" | $SP2NL | $SED "$lo2o" | $NL2SP` fi - func_generate_dlsyms "$outputname" "@PROGRAM@" "no" + func_generate_dlsyms "$outputname" "@PROGRAM@" false # template prelinking step if test -n "$prelink_cmds"; then func_execute_cmds "$prelink_cmds" 'exit $?' fi - wrappers_required=yes + wrappers_required=: case $host in *cegcc* | *mingw32ce*) # Disable wrappers for cegcc and mingw32ce hosts, we are cross compiling anyway. - wrappers_required=no + wrappers_required=false ;; *cygwin* | *mingw* ) - if test "$build_libtool_libs" != yes; then - wrappers_required=no - fi + test yes = "$build_libtool_libs" || wrappers_required=false ;; *) - if test "$need_relink" = no || test "$build_libtool_libs" != yes; then - wrappers_required=no + if test no = "$need_relink" || test yes != "$build_libtool_libs"; then + wrappers_required=false fi ;; esac - if test "$wrappers_required" = no; then + $wrappers_required || { # Replace the output file specification. compile_command=`$ECHO "$compile_command" | $SED 's%@OUTPUT@%'"$output"'%g'` - link_command="$compile_command$compile_rpath" + link_command=$compile_command$compile_rpath # We have no uninstalled library dependencies, so finalize right now. exit_status=0 @@ -8914,12 +10597,12 @@ fi # Delete the generated files. - if test -f "$output_objdir/${outputname}S.${objext}"; then - func_show_eval '$RM "$output_objdir/${outputname}S.${objext}"' + if test -f "$output_objdir/${outputname}S.$objext"; then + func_show_eval '$RM "$output_objdir/${outputname}S.$objext"' fi exit $exit_status - fi + } if test -n "$compile_shlibpath$finalize_shlibpath"; then compile_command="$shlibpath_var=\"$compile_shlibpath$finalize_shlibpath\$$shlibpath_var\" $compile_command" @@ -8949,9 +10632,9 @@ fi fi - if test "$no_install" = yes; then + if test yes = "$no_install"; then # We don't need to create a wrapper script. - link_command="$compile_var$compile_command$compile_rpath" + link_command=$compile_var$compile_command$compile_rpath # Replace the output file specification. link_command=`$ECHO "$link_command" | $SED 's%@OUTPUT@%'"$output"'%g'` # Delete the old output file. @@ -8968,27 +10651,28 @@ exit $EXIT_SUCCESS fi - if test "$hardcode_action" = relink; then - # Fast installation is not supported - link_command="$compile_var$compile_command$compile_rpath" - relink_command="$finalize_var$finalize_command$finalize_rpath" - - func_warning "this platform does not like uninstalled shared libraries" - func_warning "\`$output' will be relinked during installation" - else - if test "$fast_install" != no; then - link_command="$finalize_var$compile_command$finalize_rpath" - if test "$fast_install" = yes; then - relink_command=`$ECHO "$compile_var$compile_command$compile_rpath" | $SED 's%@OUTPUT@%\$progdir/\$file%g'` - else - # fast_install is set to needless - relink_command= - fi - else - link_command="$compile_var$compile_command$compile_rpath" - relink_command="$finalize_var$finalize_command$finalize_rpath" - fi - fi + case $hardcode_action,$fast_install in + relink,*) + # Fast installation is not supported + link_command=$compile_var$compile_command$compile_rpath + relink_command=$finalize_var$finalize_command$finalize_rpath + + func_warning "this platform does not like uninstalled shared libraries" + func_warning "'$output' will be relinked during installation" + ;; + *,yes) + link_command=$finalize_var$compile_command$finalize_rpath + relink_command=`$ECHO "$compile_var$compile_command$compile_rpath" | $SED 's%@OUTPUT@%\$progdir/\$file%g'` + ;; + *,no) + link_command=$compile_var$compile_command$compile_rpath + relink_command=$finalize_var$finalize_command$finalize_rpath + ;; + *,needless) + link_command=$finalize_var$compile_command$finalize_rpath + relink_command= + ;; + esac # Replace the output file specification. link_command=`$ECHO "$link_command" | $SED 's%@OUTPUT@%'"$output_objdir/$outputname"'%g'` @@ -9016,12 +10700,12 @@ elif eval var_value=\$$var; test -z "$var_value"; then relink_command="$var=; export $var; $relink_command" else - func_quote_for_eval "$var_value" - relink_command="$var=$func_quote_for_eval_result; export $var; $relink_command" + func_quote_arg pretty "$var_value" + relink_command="$var=$func_quote_arg_result; export $var; $relink_command" fi done - relink_command="(cd `pwd`; $relink_command)" - relink_command=`$ECHO "$relink_command" | $SED "$sed_quote_subst"` + func_quote_arg pretty,unquoted "(cd `pwd`; $relink_command)" + relink_command=$func_quote_arg_unquoted_result fi # Only actually do things if not in dry run mode. @@ -9045,8 +10729,8 @@ func_dirname_and_basename "$output" "" "." output_name=$func_basename_result output_path=$func_dirname_result - cwrappersource="$output_path/$objdir/lt-$output_name.c" - cwrapper="$output_path/$output_name.exe" + cwrappersource=$output_path/$objdir/lt-$output_name.c + cwrapper=$output_path/$output_name.exe $RM $cwrappersource $cwrapper trap "$RM $cwrappersource $cwrapper; exit $EXIT_FAILURE" 1 2 15 @@ -9067,7 +10751,7 @@ trap "$RM $func_ltwrapper_scriptname_result; exit $EXIT_FAILURE" 1 2 15 $opt_dry_run || { # note: this script will not be executed, so do not chmod. - if test "x$build" = "x$host" ; then + if test "x$build" = "x$host"; then $cwrapper --lt-dump-script > $func_ltwrapper_scriptname_result else func_emit_wrapper no > $func_ltwrapper_scriptname_result @@ -9090,25 +10774,27 @@ # See if we need to build an old-fashioned archive. for oldlib in $oldlibs; do - if test "$build_libtool_libs" = convenience; then - oldobjs="$libobjs_save $symfileobj" - addlibs="$convenience" - build_libtool_libs=no - else - if test "$build_libtool_libs" = module; then - oldobjs="$libobjs_save" + case $build_libtool_libs in + convenience) + oldobjs="$libobjs_save $symfileobj" + addlibs=$convenience build_libtool_libs=no - else + ;; + module) + oldobjs=$libobjs_save + addlibs=$old_convenience + build_libtool_libs=no + ;; + *) oldobjs="$old_deplibs $non_pic_objects" - if test "$preload" = yes && test -f "$symfileobj"; then - func_append oldobjs " $symfileobj" - fi - fi - addlibs="$old_convenience" - fi + $preload && test -f "$symfileobj" \ + && func_append oldobjs " $symfileobj" + addlibs=$old_convenience + ;; + esac if test -n "$addlibs"; then - gentop="$output_objdir/${outputname}x" + gentop=$output_objdir/${outputname}x func_append generated " $gentop" func_extract_archives $gentop $addlibs @@ -9116,13 +10802,13 @@ fi # Do each command in the archive commands. - if test -n "$old_archive_from_new_cmds" && test "$build_libtool_libs" = yes; then + if test -n "$old_archive_from_new_cmds" && test yes = "$build_libtool_libs"; then cmds=$old_archive_from_new_cmds else # Add any objects from preloaded convenience libraries if test -n "$dlprefiles"; then - gentop="$output_objdir/${outputname}x" + gentop=$output_objdir/${outputname}x func_append generated " $gentop" func_extract_archives $gentop $dlprefiles @@ -9143,7 +10829,7 @@ : else echo "copying selected object files to avoid basename conflicts..." - gentop="$output_objdir/${outputname}x" + gentop=$output_objdir/${outputname}x func_append generated " $gentop" func_mkdir_p "$gentop" save_oldobjs=$oldobjs @@ -9152,7 +10838,7 @@ for obj in $save_oldobjs do func_basename "$obj" - objbase="$func_basename_result" + objbase=$func_basename_result case " $oldobjs " in " ") oldobjs=$obj ;; *[\ /]"$objbase "*) @@ -9221,18 +10907,18 @@ else # the above command should be used before it gets too long oldobjs=$objlist - if test "$obj" = "$last_oldobj" ; then + if test "$obj" = "$last_oldobj"; then RANLIB=$save_RANLIB fi test -z "$concat_cmds" || concat_cmds=$concat_cmds~ - eval concat_cmds=\"\${concat_cmds}$old_archive_cmds\" + eval concat_cmds=\"\$concat_cmds$old_archive_cmds\" objlist= len=$len0 fi done RANLIB=$save_RANLIB oldobjs=$objlist - if test "X$oldobjs" = "X" ; then + if test -z "$oldobjs"; then eval cmds=\"\$concat_cmds\" else eval cmds=\"\$concat_cmds~\$old_archive_cmds\" @@ -9249,7 +10935,7 @@ case $output in *.la) old_library= - test "$build_old_libs" = yes && old_library="$libname.$libext" + test yes = "$build_old_libs" && old_library=$libname.$libext func_verbose "creating $output" # Preserve any variables that may affect compiler behavior @@ -9259,36 +10945,37 @@ elif eval var_value=\$$var; test -z "$var_value"; then relink_command="$var=; export $var; $relink_command" else - func_quote_for_eval "$var_value" - relink_command="$var=$func_quote_for_eval_result; export $var; $relink_command" + func_quote_arg pretty,unquoted "$var_value" + relink_command="$var=$func_quote_arg_unquoted_result; export $var; $relink_command" fi done # Quote the link command for shipping. - relink_command="(cd `pwd`; $SHELL $progpath $preserve_args --mode=relink $libtool_args @inst_prefix_dir@)" - relink_command=`$ECHO "$relink_command" | $SED "$sed_quote_subst"` - if test "$hardcode_automatic" = yes ; then + relink_command="(cd `pwd`; $SHELL \"$progpath\" $preserve_args --mode=relink $libtool_args @inst_prefix_dir@)" + func_quote_arg pretty,unquoted "$relink_command" + relink_command=$func_quote_arg_unquoted_result + if test yes = "$hardcode_automatic"; then relink_command= fi # Only create the output if not a dry run. $opt_dry_run || { for installed in no yes; do - if test "$installed" = yes; then + if test yes = "$installed"; then if test -z "$install_libdir"; then break fi - output="$output_objdir/$outputname"i + output=$output_objdir/${outputname}i # Replace all uninstalled libtool libraries with the installed ones newdependency_libs= for deplib in $dependency_libs; do case $deplib in *.la) func_basename "$deplib" - name="$func_basename_result" + name=$func_basename_result func_resolve_sysroot "$deplib" - eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $func_resolve_sysroot_result` + eval libdir=`$SED -n -e 's/^libdir=\(.*\)$/\1/p' $func_resolve_sysroot_result` test -z "$libdir" && \ - func_fatal_error "\`$deplib' is not a valid libtool archive" + func_fatal_error "'$deplib' is not a valid libtool archive" func_append newdependency_libs " ${lt_sysroot:+=}$libdir/$name" ;; -L*) @@ -9304,23 +10991,23 @@ *) func_append newdependency_libs " $deplib" ;; esac done - dependency_libs="$newdependency_libs" + dependency_libs=$newdependency_libs newdlfiles= for lib in $dlfiles; do case $lib in *.la) func_basename "$lib" - name="$func_basename_result" - eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $lib` + name=$func_basename_result + eval libdir=`$SED -n -e 's/^libdir=\(.*\)$/\1/p' $lib` test -z "$libdir" && \ - func_fatal_error "\`$lib' is not a valid libtool archive" + func_fatal_error "'$lib' is not a valid libtool archive" func_append newdlfiles " ${lt_sysroot:+=}$libdir/$name" ;; *) func_append newdlfiles " $lib" ;; esac done - dlfiles="$newdlfiles" + dlfiles=$newdlfiles newdlprefiles= for lib in $dlprefiles; do case $lib in @@ -9330,34 +11017,34 @@ # didn't already link the preopened objects directly into # the library: func_basename "$lib" - name="$func_basename_result" - eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $lib` + name=$func_basename_result + eval libdir=`$SED -n -e 's/^libdir=\(.*\)$/\1/p' $lib` test -z "$libdir" && \ - func_fatal_error "\`$lib' is not a valid libtool archive" + func_fatal_error "'$lib' is not a valid libtool archive" func_append newdlprefiles " ${lt_sysroot:+=}$libdir/$name" ;; esac done - dlprefiles="$newdlprefiles" + dlprefiles=$newdlprefiles else newdlfiles= for lib in $dlfiles; do case $lib in - [\\/]* | [A-Za-z]:[\\/]*) abs="$lib" ;; + [\\/]* | [A-Za-z]:[\\/]*) abs=$lib ;; *) abs=`pwd`"/$lib" ;; esac func_append newdlfiles " $abs" done - dlfiles="$newdlfiles" + dlfiles=$newdlfiles newdlprefiles= for lib in $dlprefiles; do case $lib in - [\\/]* | [A-Za-z]:[\\/]*) abs="$lib" ;; + [\\/]* | [A-Za-z]:[\\/]*) abs=$lib ;; *) abs=`pwd`"/$lib" ;; esac func_append newdlprefiles " $abs" done - dlprefiles="$newdlprefiles" + dlprefiles=$newdlprefiles fi $RM $output # place dlname in correct position for cygwin @@ -9373,10 +11060,9 @@ case $host,$output,$installed,$module,$dlname in *cygwin*,*lai,yes,no,*.dll | *mingw*,*lai,yes,no,*.dll | *cegcc*,*lai,yes,no,*.dll) # If a -bindir argument was supplied, place the dll there. - if test "x$bindir" != x ; - then + if test -n "$bindir"; then func_relative_path "$install_libdir" "$bindir" - tdlname=$func_relative_path_result$dlname + tdlname=$func_relative_path_result/$dlname else # Otherwise fall back on heuristic. tdlname=../bin/$dlname @@ -9385,7 +11071,7 @@ esac $ECHO > $output "\ # $outputname - a libtool library file -# Generated by $PROGRAM (GNU $PACKAGE$TIMESTAMP) $VERSION +# Generated by $PROGRAM (GNU $PACKAGE) $VERSION # # Please DO NOT delete this file! # It is necessary for linking the library. @@ -9399,7 +11085,7 @@ # The name of the static archive. old_library='$old_library' -# Linker flags that can not go in dependency_libs. +# Linker flags that cannot go in dependency_libs. inherited_linker_flags='$new_inherited_linker_flags' # Libraries that this one depends upon. @@ -9425,7 +11111,7 @@ # Directory that this library needs to be installed in: libdir='$install_libdir'" - if test "$installed" = no && test "$need_relink" = yes; then + if test no,yes = "$installed,$need_relink"; then $ECHO >> $output "\ relink_command=\"$relink_command\"" fi @@ -9440,27 +11126,29 @@ exit $EXIT_SUCCESS } -{ test "$opt_mode" = link || test "$opt_mode" = relink; } && - func_mode_link ${1+"$@"} +if test link = "$opt_mode" || test relink = "$opt_mode"; then + func_mode_link ${1+"$@"} +fi # func_mode_uninstall arg... func_mode_uninstall () { - $opt_debug - RM="$nonopt" + $debug_cmd + + RM=$nonopt files= - rmforce= + rmforce=false exit_status=0 # This variable tells wrapper scripts just to set variables rather # than running their programs. - libtool_install_magic="$magic" + libtool_install_magic=$magic for arg do case $arg in - -f) func_append RM " $arg"; rmforce=yes ;; + -f) func_append RM " $arg"; rmforce=: ;; -*) func_append RM " $arg" ;; *) func_append files " $arg" ;; esac @@ -9473,18 +11161,18 @@ for file in $files; do func_dirname "$file" "" "." - dir="$func_dirname_result" - if test "X$dir" = X.; then - odir="$objdir" + dir=$func_dirname_result + if test . = "$dir"; then + odir=$objdir else - odir="$dir/$objdir" + odir=$dir/$objdir fi func_basename "$file" - name="$func_basename_result" - test "$opt_mode" = uninstall && odir="$dir" + name=$func_basename_result + test uninstall = "$opt_mode" && odir=$dir # Remember odir for removal later, being careful to avoid duplicates - if test "$opt_mode" = clean; then + if test clean = "$opt_mode"; then case " $rmdirs " in *" $odir "*) ;; *) func_append rmdirs " $odir" ;; @@ -9499,11 +11187,11 @@ elif test -d "$file"; then exit_status=1 continue - elif test "$rmforce" = yes; then + elif $rmforce; then continue fi - rmfiles="$file" + rmfiles=$file case $name in *.la) @@ -9517,7 +11205,7 @@ done test -n "$old_library" && func_append rmfiles " $odir/$old_library" - case "$opt_mode" in + case $opt_mode in clean) case " $library_names " in *" $dlname "*) ;; @@ -9528,12 +11216,12 @@ uninstall) if test -n "$library_names"; then # Do each command in the postuninstall commands. - func_execute_cmds "$postuninstall_cmds" 'test "$rmforce" = yes || exit_status=1' + func_execute_cmds "$postuninstall_cmds" '$rmforce || exit_status=1' fi if test -n "$old_library"; then # Do each command in the old_postuninstall commands. - func_execute_cmds "$old_postuninstall_cmds" 'test "$rmforce" = yes || exit_status=1' + func_execute_cmds "$old_postuninstall_cmds" '$rmforce || exit_status=1' fi # FIXME: should reinstall the best remaining shared library. ;; @@ -9549,21 +11237,19 @@ func_source $dir/$name # Add PIC object to the list of files to remove. - if test -n "$pic_object" && - test "$pic_object" != none; then + if test -n "$pic_object" && test none != "$pic_object"; then func_append rmfiles " $dir/$pic_object" fi # Add non-PIC object to the list of files to remove. - if test -n "$non_pic_object" && - test "$non_pic_object" != none; then + if test -n "$non_pic_object" && test none != "$non_pic_object"; then func_append rmfiles " $dir/$non_pic_object" fi fi ;; *) - if test "$opt_mode" = clean ; then + if test clean = "$opt_mode"; then noexename=$name case $file in *.exe) @@ -9590,12 +11276,12 @@ # note $name still contains .exe if it was in $file originally # as does the version of $file that was added into $rmfiles - func_append rmfiles " $odir/$name $odir/${name}S.${objext}" - if test "$fast_install" = yes && test -n "$relink_command"; then + func_append rmfiles " $odir/$name $odir/${name}S.$objext" + if test yes = "$fast_install" && test -n "$relink_command"; then func_append rmfiles " $odir/lt-$name" fi - if test "X$noexename" != "X$name" ; then - func_append rmfiles " $odir/lt-${noexename}.c" + if test "X$noexename" != "X$name"; then + func_append rmfiles " $odir/lt-$noexename.c" fi fi fi @@ -9604,7 +11290,7 @@ func_show_eval "$RM $rmfiles" 'exit_status=1' done - # Try to remove the ${objdir}s in the directories where we deleted files + # Try to remove the $objdir's in the directories where we deleted files for dir in $rmdirs; do if test -d "$dir"; then func_show_eval "rmdir $dir >/dev/null 2>&1" @@ -9614,16 +11300,17 @@ exit $exit_status } -{ test "$opt_mode" = uninstall || test "$opt_mode" = clean; } && - func_mode_uninstall ${1+"$@"} +if test uninstall = "$opt_mode" || test clean = "$opt_mode"; then + func_mode_uninstall ${1+"$@"} +fi test -z "$opt_mode" && { - help="$generic_help" + help=$generic_help func_fatal_help "you must specify a MODE" } test -z "$exec_cmd" && \ - func_fatal_help "invalid operation mode \`$opt_mode'" + func_fatal_help "invalid operation mode '$opt_mode'" if test -n "$exec_cmd"; then eval exec "$exec_cmd" @@ -9634,7 +11321,7 @@ # The TAGs below are defined such that we never get into a situation -# in which we disable both kinds of libraries. Given conflicting +# where we disable both kinds of libraries. Given conflicting # choices, we go for a static library, that is the most portable, # since we can't tell whether shared libraries were disabled because # the user asked for that or because the platform doesn't support @@ -9657,5 +11344,3 @@ # mode:shell-script # sh-indentation:2 # End: -# vi:sw=2 - diff -Nru atkmm1.6-2.24.2/build/lt~obsolete.m4 atkmm1.6-2.28.0/build/lt~obsolete.m4 --- atkmm1.6-2.24.2/build/lt~obsolete.m4 2015-11-29 20:04:44.580284588 +0000 +++ atkmm1.6-2.28.0/build/lt~obsolete.m4 2018-11-04 11:44:44.071483206 +0000 @@ -1,6 +1,7 @@ # lt~obsolete.m4 -- aclocal satisfying obsolete definitions. -*-Autoconf-*- # -# Copyright (C) 2004, 2005, 2007, 2009 Free Software Foundation, Inc. +# Copyright (C) 2004-2005, 2007, 2009, 2011-2015 Free Software +# Foundation, Inc. # Written by Scott James Remnant, 2004. # # This file is free software; the Free Software Foundation gives @@ -11,7 +12,7 @@ # These exist entirely to fool aclocal when bootstrapping libtool. # -# In the past libtool.m4 has provided macros via AC_DEFUN (or AU_DEFUN) +# In the past libtool.m4 has provided macros via AC_DEFUN (or AU_DEFUN), # which have later been changed to m4_define as they aren't part of the # exported API, or moved to Autoconf or Automake where they belong. # @@ -25,7 +26,7 @@ # included after everything else. This provides aclocal with the # AC_DEFUNs it wants, but when m4 processes it, it doesn't do anything # because those macros already exist, or will be overwritten later. -# We use AC_DEFUN over AU_DEFUN for compatibility with aclocal-1.6. +# We use AC_DEFUN over AU_DEFUN for compatibility with aclocal-1.6. # # Anytime we withdraw an AC_DEFUN or AU_DEFUN, remember to add it here. # Yes, that means every name once taken will need to remain here until diff -Nru atkmm1.6-2.24.2/build/ltoptions.m4 atkmm1.6-2.28.0/build/ltoptions.m4 --- atkmm1.6-2.24.2/build/ltoptions.m4 2015-11-29 20:04:44.504294241 +0000 +++ atkmm1.6-2.28.0/build/ltoptions.m4 2018-11-04 11:44:43.991482443 +0000 @@ -1,14 +1,14 @@ # Helper functions for option handling. -*- Autoconf -*- # -# Copyright (C) 2004, 2005, 2007, 2008, 2009 Free Software Foundation, -# Inc. +# Copyright (C) 2004-2005, 2007-2009, 2011-2015 Free Software +# Foundation, Inc. # Written by Gary V. Vaughan, 2004 # # This file is free software; the Free Software Foundation gives # unlimited permission to copy and/or distribute it, with or without # modifications, as long as this notice is preserved. -# serial 7 ltoptions.m4 +# serial 8 ltoptions.m4 # This is to help aclocal find these macros, as it can't see m4_define. AC_DEFUN([LTOPTIONS_VERSION], [m4_if([1])]) @@ -29,7 +29,7 @@ [m4_define(_LT_MANGLE_OPTION([$1], [$2]))dnl m4_ifdef(_LT_MANGLE_DEFUN([$1], [$2]), _LT_MANGLE_DEFUN([$1], [$2]), - [m4_warning([Unknown $1 option `$2'])])[]dnl + [m4_warning([Unknown $1 option '$2'])])[]dnl ]) @@ -75,13 +75,15 @@ dnl dnl If no reference was made to various pairs of opposing options, then dnl we run the default mode handler for the pair. For example, if neither - dnl `shared' nor `disable-shared' was passed, we enable building of shared + dnl 'shared' nor 'disable-shared' was passed, we enable building of shared dnl archives by default: _LT_UNLESS_OPTIONS([LT_INIT], [shared disable-shared], [_LT_ENABLE_SHARED]) _LT_UNLESS_OPTIONS([LT_INIT], [static disable-static], [_LT_ENABLE_STATIC]) _LT_UNLESS_OPTIONS([LT_INIT], [pic-only no-pic], [_LT_WITH_PIC]) _LT_UNLESS_OPTIONS([LT_INIT], [fast-install disable-fast-install], - [_LT_ENABLE_FAST_INSTALL]) + [_LT_ENABLE_FAST_INSTALL]) + _LT_UNLESS_OPTIONS([LT_INIT], [aix-soname=aix aix-soname=both aix-soname=svr4], + [_LT_WITH_AIX_SONAME([aix])]) ]) ])# _LT_SET_OPTIONS @@ -112,7 +114,7 @@ [_LT_SET_OPTION([LT_INIT], [dlopen]) AC_DIAGNOSE([obsolete], [$0: Remove this warning and the call to _LT_SET_OPTION when you -put the `dlopen' option into LT_INIT's first parameter.]) +put the 'dlopen' option into LT_INIT's first parameter.]) ]) dnl aclocal-1.4 backwards compatibility: @@ -148,7 +150,7 @@ _LT_SET_OPTION([LT_INIT], [win32-dll]) AC_DIAGNOSE([obsolete], [$0: Remove this warning and the call to _LT_SET_OPTION when you -put the `win32-dll' option into LT_INIT's first parameter.]) +put the 'win32-dll' option into LT_INIT's first parameter.]) ]) dnl aclocal-1.4 backwards compatibility: @@ -157,9 +159,9 @@ # _LT_ENABLE_SHARED([DEFAULT]) # ---------------------------- -# implement the --enable-shared flag, and supports the `shared' and -# `disable-shared' LT_INIT options. -# DEFAULT is either `yes' or `no'. If omitted, it defaults to `yes'. +# implement the --enable-shared flag, and supports the 'shared' and +# 'disable-shared' LT_INIT options. +# DEFAULT is either 'yes' or 'no'. If omitted, it defaults to 'yes'. m4_define([_LT_ENABLE_SHARED], [m4_define([_LT_ENABLE_SHARED_DEFAULT], [m4_if($1, no, no, yes)])dnl AC_ARG_ENABLE([shared], @@ -172,14 +174,14 @@ *) enable_shared=no # Look at the argument we got. We use all the common list separators. - lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," + lt_save_ifs=$IFS; IFS=$IFS$PATH_SEPARATOR, for pkg in $enableval; do - IFS="$lt_save_ifs" + IFS=$lt_save_ifs if test "X$pkg" = "X$p"; then enable_shared=yes fi done - IFS="$lt_save_ifs" + IFS=$lt_save_ifs ;; esac], [enable_shared=]_LT_ENABLE_SHARED_DEFAULT) @@ -211,9 +213,9 @@ # _LT_ENABLE_STATIC([DEFAULT]) # ---------------------------- -# implement the --enable-static flag, and support the `static' and -# `disable-static' LT_INIT options. -# DEFAULT is either `yes' or `no'. If omitted, it defaults to `yes'. +# implement the --enable-static flag, and support the 'static' and +# 'disable-static' LT_INIT options. +# DEFAULT is either 'yes' or 'no'. If omitted, it defaults to 'yes'. m4_define([_LT_ENABLE_STATIC], [m4_define([_LT_ENABLE_STATIC_DEFAULT], [m4_if($1, no, no, yes)])dnl AC_ARG_ENABLE([static], @@ -226,14 +228,14 @@ *) enable_static=no # Look at the argument we got. We use all the common list separators. - lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," + lt_save_ifs=$IFS; IFS=$IFS$PATH_SEPARATOR, for pkg in $enableval; do - IFS="$lt_save_ifs" + IFS=$lt_save_ifs if test "X$pkg" = "X$p"; then enable_static=yes fi done - IFS="$lt_save_ifs" + IFS=$lt_save_ifs ;; esac], [enable_static=]_LT_ENABLE_STATIC_DEFAULT) @@ -265,9 +267,9 @@ # _LT_ENABLE_FAST_INSTALL([DEFAULT]) # ---------------------------------- -# implement the --enable-fast-install flag, and support the `fast-install' -# and `disable-fast-install' LT_INIT options. -# DEFAULT is either `yes' or `no'. If omitted, it defaults to `yes'. +# implement the --enable-fast-install flag, and support the 'fast-install' +# and 'disable-fast-install' LT_INIT options. +# DEFAULT is either 'yes' or 'no'. If omitted, it defaults to 'yes'. m4_define([_LT_ENABLE_FAST_INSTALL], [m4_define([_LT_ENABLE_FAST_INSTALL_DEFAULT], [m4_if($1, no, no, yes)])dnl AC_ARG_ENABLE([fast-install], @@ -280,14 +282,14 @@ *) enable_fast_install=no # Look at the argument we got. We use all the common list separators. - lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," + lt_save_ifs=$IFS; IFS=$IFS$PATH_SEPARATOR, for pkg in $enableval; do - IFS="$lt_save_ifs" + IFS=$lt_save_ifs if test "X$pkg" = "X$p"; then enable_fast_install=yes fi done - IFS="$lt_save_ifs" + IFS=$lt_save_ifs ;; esac], [enable_fast_install=]_LT_ENABLE_FAST_INSTALL_DEFAULT) @@ -304,14 +306,14 @@ [_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[fast-install]) AC_DIAGNOSE([obsolete], [$0: Remove this warning and the call to _LT_SET_OPTION when you put -the `fast-install' option into LT_INIT's first parameter.]) +the 'fast-install' option into LT_INIT's first parameter.]) ]) AU_DEFUN([AC_DISABLE_FAST_INSTALL], [_LT_SET_OPTION([LT_INIT], [disable-fast-install]) AC_DIAGNOSE([obsolete], [$0: Remove this warning and the call to _LT_SET_OPTION when you put -the `disable-fast-install' option into LT_INIT's first parameter.]) +the 'disable-fast-install' option into LT_INIT's first parameter.]) ]) dnl aclocal-1.4 backwards compatibility: @@ -319,11 +321,64 @@ dnl AC_DEFUN([AM_DISABLE_FAST_INSTALL], []) +# _LT_WITH_AIX_SONAME([DEFAULT]) +# ---------------------------------- +# implement the --with-aix-soname flag, and support the `aix-soname=aix' +# and `aix-soname=both' and `aix-soname=svr4' LT_INIT options. DEFAULT +# is either `aix', `both' or `svr4'. If omitted, it defaults to `aix'. +m4_define([_LT_WITH_AIX_SONAME], +[m4_define([_LT_WITH_AIX_SONAME_DEFAULT], [m4_if($1, svr4, svr4, m4_if($1, both, both, aix))])dnl +shared_archive_member_spec= +case $host,$enable_shared in +power*-*-aix[[5-9]]*,yes) + AC_MSG_CHECKING([which variant of shared library versioning to provide]) + AC_ARG_WITH([aix-soname], + [AS_HELP_STRING([--with-aix-soname=aix|svr4|both], + [shared library versioning (aka "SONAME") variant to provide on AIX, @<:@default=]_LT_WITH_AIX_SONAME_DEFAULT[@:>@.])], + [case $withval in + aix|svr4|both) + ;; + *) + AC_MSG_ERROR([Unknown argument to --with-aix-soname]) + ;; + esac + lt_cv_with_aix_soname=$with_aix_soname], + [AC_CACHE_VAL([lt_cv_with_aix_soname], + [lt_cv_with_aix_soname=]_LT_WITH_AIX_SONAME_DEFAULT) + with_aix_soname=$lt_cv_with_aix_soname]) + AC_MSG_RESULT([$with_aix_soname]) + if test aix != "$with_aix_soname"; then + # For the AIX way of multilib, we name the shared archive member + # based on the bitwidth used, traditionally 'shr.o' or 'shr_64.o', + # and 'shr.imp' or 'shr_64.imp', respectively, for the Import File. + # Even when GNU compilers ignore OBJECT_MODE but need '-maix64' flag, + # the AIX toolchain works better with OBJECT_MODE set (default 32). + if test 64 = "${OBJECT_MODE-32}"; then + shared_archive_member_spec=shr_64 + else + shared_archive_member_spec=shr + fi + fi + ;; +*) + with_aix_soname=aix + ;; +esac + +_LT_DECL([], [shared_archive_member_spec], [0], + [Shared archive member basename, for filename based shared library versioning on AIX])dnl +])# _LT_WITH_AIX_SONAME + +LT_OPTION_DEFINE([LT_INIT], [aix-soname=aix], [_LT_WITH_AIX_SONAME([aix])]) +LT_OPTION_DEFINE([LT_INIT], [aix-soname=both], [_LT_WITH_AIX_SONAME([both])]) +LT_OPTION_DEFINE([LT_INIT], [aix-soname=svr4], [_LT_WITH_AIX_SONAME([svr4])]) + + # _LT_WITH_PIC([MODE]) # -------------------- -# implement the --with-pic flag, and support the `pic-only' and `no-pic' +# implement the --with-pic flag, and support the 'pic-only' and 'no-pic' # LT_INIT options. -# MODE is either `yes' or `no'. If omitted, it defaults to `both'. +# MODE is either 'yes' or 'no'. If omitted, it defaults to 'both'. m4_define([_LT_WITH_PIC], [AC_ARG_WITH([pic], [AS_HELP_STRING([--with-pic@<:@=PKGS@:>@], @@ -334,19 +389,17 @@ *) pic_mode=default # Look at the argument we got. We use all the common list separators. - lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," + lt_save_ifs=$IFS; IFS=$IFS$PATH_SEPARATOR, for lt_pkg in $withval; do - IFS="$lt_save_ifs" + IFS=$lt_save_ifs if test "X$lt_pkg" = "X$lt_p"; then pic_mode=yes fi done - IFS="$lt_save_ifs" + IFS=$lt_save_ifs ;; esac], - [pic_mode=default]) - -test -z "$pic_mode" && pic_mode=m4_default([$1], [default]) + [pic_mode=m4_default([$1], [default])]) _LT_DECL([], [pic_mode], [0], [What type of objects to build])dnl ])# _LT_WITH_PIC @@ -359,7 +412,7 @@ [_LT_SET_OPTION([LT_INIT], [pic-only]) AC_DIAGNOSE([obsolete], [$0: Remove this warning and the call to _LT_SET_OPTION when you -put the `pic-only' option into LT_INIT's first parameter.]) +put the 'pic-only' option into LT_INIT's first parameter.]) ]) dnl aclocal-1.4 backwards compatibility: diff -Nru atkmm1.6-2.24.2/build/ltsugar.m4 atkmm1.6-2.28.0/build/ltsugar.m4 --- atkmm1.6-2.24.2/build/ltsugar.m4 2015-11-29 20:04:44.532290685 +0000 +++ atkmm1.6-2.28.0/build/ltsugar.m4 2018-11-04 11:44:44.015482672 +0000 @@ -1,6 +1,7 @@ # ltsugar.m4 -- libtool m4 base layer. -*-Autoconf-*- # -# Copyright (C) 2004, 2005, 2007, 2008 Free Software Foundation, Inc. +# Copyright (C) 2004-2005, 2007-2008, 2011-2015 Free Software +# Foundation, Inc. # Written by Gary V. Vaughan, 2004 # # This file is free software; the Free Software Foundation gives @@ -33,7 +34,7 @@ # ------------ # Manipulate m4 lists. # These macros are necessary as long as will still need to support -# Autoconf-2.59 which quotes differently. +# Autoconf-2.59, which quotes differently. m4_define([lt_car], [[$1]]) m4_define([lt_cdr], [m4_if([$#], 0, [m4_fatal([$0: cannot be called without arguments])], @@ -44,7 +45,7 @@ # lt_append(MACRO-NAME, STRING, [SEPARATOR]) # ------------------------------------------ -# Redefine MACRO-NAME to hold its former content plus `SEPARATOR'`STRING'. +# Redefine MACRO-NAME to hold its former content plus 'SEPARATOR''STRING'. # Note that neither SEPARATOR nor STRING are expanded; they are appended # to MACRO-NAME as is (leaving the expansion for when MACRO-NAME is invoked). # No SEPARATOR is output if MACRO-NAME was previously undefined (different diff -Nru atkmm1.6-2.24.2/build/ltversion.m4 atkmm1.6-2.28.0/build/ltversion.m4 --- atkmm1.6-2.24.2/build/ltversion.m4 2015-11-29 20:04:44.556287637 +0000 +++ atkmm1.6-2.28.0/build/ltversion.m4 2018-11-04 11:44:44.043482939 +0000 @@ -1,6 +1,6 @@ # ltversion.m4 -- version numbers -*- Autoconf -*- # -# Copyright (C) 2004 Free Software Foundation, Inc. +# Copyright (C) 2004, 2011-2015 Free Software Foundation, Inc. # Written by Scott James Remnant, 2004 # # This file is free software; the Free Software Foundation gives @@ -9,15 +9,15 @@ # @configure_input@ -# serial 3337 ltversion.m4 +# serial 4179 ltversion.m4 # This file is part of GNU Libtool -m4_define([LT_PACKAGE_VERSION], [2.4.2]) -m4_define([LT_PACKAGE_REVISION], [1.3337]) +m4_define([LT_PACKAGE_VERSION], [2.4.6]) +m4_define([LT_PACKAGE_REVISION], [2.4.6]) AC_DEFUN([LTVERSION_VERSION], -[macro_version='2.4.2' -macro_revision='1.3337' +[macro_version='2.4.6' +macro_revision='2.4.6' _LT_DECL(, macro_version, 0, [Which release of libtool.m4 was used?]) _LT_DECL(, macro_revision, 0) ]) diff -Nru atkmm1.6-2.24.2/build/missing atkmm1.6-2.28.0/build/missing --- atkmm1.6-2.24.2/build/missing 2015-11-29 20:04:51.155452302 +0000 +++ atkmm1.6-2.28.0/build/missing 2018-11-04 11:44:50.463543834 +0000 @@ -1,9 +1,9 @@ #! /bin/sh # Common wrapper for a few potentially missing GNU programs. -scriptversion=2013-10-28.13; # UTC +scriptversion=2018-03-07.03; # UTC -# Copyright (C) 1996-2014 Free Software Foundation, Inc. +# Copyright (C) 1996-2018 Free Software Foundation, Inc. # Originally written by Fran,cois Pinard , 1996. # This program is free software; you can redistribute it and/or modify @@ -17,7 +17,7 @@ # GNU General Public License for more details. # You should have received a copy of the GNU General Public License -# along with this program. If not, see . +# along with this program. If not, see . # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a @@ -101,9 +101,9 @@ exit $st fi -perl_URL=http://www.perl.org/ -flex_URL=http://flex.sourceforge.net/ -gnu_software_URL=http://www.gnu.org/software +perl_URL=https://www.perl.org/ +flex_URL=https://github.com/westes/flex +gnu_software_URL=https://www.gnu.org/software program_details () { @@ -207,9 +207,9 @@ exit $st # Local variables: -# eval: (add-hook 'write-file-hooks 'time-stamp) +# eval: (add-hook 'before-save-hook 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" -# time-stamp-time-zone: "UTC" +# time-stamp-time-zone: "UTC0" # time-stamp-end: "; # UTC" # End: diff -Nru atkmm1.6-2.24.2/ChangeLog atkmm1.6-2.28.0/ChangeLog --- atkmm1.6-2.24.2/ChangeLog 2015-11-29 20:05:34.563286967 +0000 +++ atkmm1.6-2.28.0/ChangeLog 2018-11-04 11:54:26.843149868 +0000 @@ -1,3 +1,103 @@ +2018-11-04 Kjell Ahlstedt + + 2.28.0 + +2018-11-04 Kjell Ahlstedt + + 2.24.3 + +2018-10-29 Chun-wei Fan + + Update .gitignore + + The Visual Studio build files now reside in MSVC_NMake, not MSVC_201x. + +2018-10-26 Chun-wei Fan + + build: Remove the Visual Studio 2013 projects + + Since they have been replaced by the NMake Makefiles, it is time that + they should be dropped. + +2018-10-26 Chun-wei Fan + + build: Add a set of NMake Makefiles + + This is the set of NMake Makefiles that is used to build atkmm using + Visual Studio 2013 and later, which will replace the current Visual + Studio 2013 project files, so that the Visual Studio build files are + easier to maintain. + + Note that for the C++-11 version of atkmm, the DLL and library that are + generated from both the visual Studio 2015 and 2017 builds are + atkmm-vc140-1_6.[dll|lib] or atkmm-vc140-d-1_6.[dll|lib] as both Visual + Studio 2015 and 2017 link to the v140 Windows C/C++ runtime DLLs. + +2018-10-26 Chun-wei Fan + + atk/atkmm/filelist.am: Split out automake'ism + + Move the automake-specific part out so that this file can also be + re-used by the NMake Makefiles. + +2018-10-26 Chun-wei Fan + + builds: Rename MSVC_Net2013 to MSVC_NMake + + This is to prepare the transition of the Visual Studio build files to + NMake Makefiles. + +2018-10-25 Kjell Ahlstedt + + configure.ac, atkmm.doap: Update bug report address + +2018-09-11 Kjell Ahlstedt + + doc/reference/Doxyfile.in: Use doxygen-extra.css + +2017-09-13 Kjell Ahlstedt + + Update .gitignore + +2017-09-13 Kjell Ahlstedt + + generate_defs_and_docs.sh: Update for atk built with meson + + When atk is built with meson instead of autotools, generated .h and .c + files are stored in atk/build/atk. Files in that directory shall be read + when atk_docs.xml and the .defs files are generated. + +2017-06-27 Kjell Ahlstedt + + Text: Fix memory leaks in vfuncs + + get_text_vfunc(), get_text_after_offset_vfunc(), get_text_at_offset_vfunc(), + get_text_before_offset_vfunc() and get_selection_vfunc() shall delete + the returned character array after it has been copied to a Glib::ustring. + Bug 783360 + +2017-01-04 Chun-wei Fan + + Visual Studio builds: "Install" the .pdb files + + Since we already generate the .pdb file during the build, we should make + good use of it to help debugging. + +2016-07-19 Kjell Ahlstedt + + Build: Fix silent builds + + * configure.ac: Pass yes to AM_SILENT_RULES, thus enabling silent builds. + Replace MM_AX_CXX_COMPILE_STDCXX_11 by MM_AX_CXX_COMPILE_STDCXX (not necessary + for silent builds). + * docs/reference/Doxyfile.in: Set QUIET=YES. + Update for doxygen 1.8.11 (not necessary for silent builds). + Bug #768797 + +2015-11-29 Murray Cumming + + 2.24.2 + 2015-11-29 Murray Cumming Require a recent glibmm. diff -Nru atkmm1.6-2.24.2/codegen/generate_defs_and_docs.sh atkmm1.6-2.28.0/codegen/generate_defs_and_docs.sh --- atkmm1.6-2.24.2/codegen/generate_defs_and_docs.sh 2014-12-09 08:04:03.793553865 +0000 +++ atkmm1.6-2.28.0/codegen/generate_defs_and_docs.sh 2018-05-06 10:59:07.564153544 +0000 @@ -8,8 +8,8 @@ # glibmm/tools/defs_gen/docextract_to_xml.py # glibmm/tools/defs_gen/h2def.py # glibmm/tools/enum.pl -# atk/atk/*.h -# atk/atk/*.c +# atk/atk/*.h atk/build/atk/*.h +# atk/atk/*.c atk/build/atk/*.c # atkmm/codegen/extradefs/generate_extra_defs # Generated files: @@ -18,22 +18,64 @@ # atkmm/atk/src/atk_methods.defs # atkmm/atk/src/atk_signals.defs +# To update the atk_docs.xml file and the .defs files: +# 1. ./generate_defs_and_docs.sh +# Generates atk/src/atk_signals.defs.orig and atk/src/atk_signals.defs. +# If any hunks from the patch file fail to apply, apply them manually to the +# atk_signals.defs file, if required. +# 2. Optional: Remove atk/src/atk_signals.defs.orig. + +# To update the atk_signals.defs file and the patch file: +# 1. Like step 1 when updating only the docs.xml and .defs files. +# 2. Apply new patches manually to the atk_signals.defs file. +# 3. ./generate_defs_and_docs.sh --make-patch +# 4. Like step 2 when updating only the nly the docs.xml and .defs files. + GLIBMM_TOOLS_DIR=../../glibmm/tools ATK_DIR=../../atk ATKMM_ATK_SRC_DIR=../atk/src -$GLIBMM_TOOLS_DIR/defs_gen/docextract_to_xml.py \ - -s $ATK_DIR/atk \ - >$ATKMM_ATK_SRC_DIR/atk_docs.xml - -$GLIBMM_TOOLS_DIR/enum.pl \ - $ATK_DIR/atk/*.h \ - >$ATKMM_ATK_SRC_DIR/atk_enums.defs - -$GLIBMM_TOOLS_DIR/defs_gen/h2def.py \ - $ATK_DIR/atk/*.h \ - >$ATKMM_ATK_SRC_DIR/atk_methods.defs - -extradefs/generate_extra_defs \ - >$ATKMM_ATK_SRC_DIR/atk_signals.defs - +if [ $# -eq 0 ] +then + # Documentation + PARAMS="--with-properties --no-recursion" + for dir in $ATK_DIR/atk $ATK_DIR/build/atk; do + if [ -d "$dir" ]; then + PARAMS="$PARAMS -s $dir" + fi + done + $GLIBMM_TOOLS_DIR/defs_gen/docextract_to_xml.py $PARAMS \ + >$ATKMM_ATK_SRC_DIR/atk_docs.xml + + shopt -s nullglob # Skip a filename pattern that matches no file + + # Enums + $GLIBMM_TOOLS_DIR/enum.pl \ + $ATK_DIR/atk/*.h $ATK_DIR/build/atk/*.h \ + >$ATKMM_ATK_SRC_DIR/atk_enums.defs + + # Functions and methods + $GLIBMM_TOOLS_DIR/defs_gen/h2def.py \ + $ATK_DIR/atk/*.h $ATK_DIR/build/atk/*.h \ + >$ATKMM_ATK_SRC_DIR/atk_methods.defs + + # Properties and signals + extradefs/generate_extra_defs \ + >$ATKMM_ATK_SRC_DIR/atk_signals.defs + if [ -f $ATKMM_ATK_SRC_DIR/atk_signals.defs.patch ]; then + # patch version 2.7.5 does not like directory names. + cd "$ATKMM_ATK_SRC_DIR" + PATCH_OPTIONS="--backup --version-control=simple --suffix=.orig" + patch $PATCH_OPTIONS atk_signals.defs atk_signals.defs.patch + else + echo "File $ATKMM_ATK_SRC_DIR/atk_signals.defs.patch does not exist." + echo "You may have to patch $ATKMM_ATK_SRC_DIR/atk_signals.defs manually." + fi +elif [ "$1" = "--make-patch" ] +then + ATKMM_ATK_SRC_DIR_FILE=$ATKMM_ATK_SRC_DIR/atk_signals.defs + diff --unified=5 $ATKMM_ATK_SRC_DIR_FILE.orig $ATKMM_ATK_SRC_DIR_FILE > $ATKMM_ATK_SRC_DIR_FILE.patch +else + echo "Usage: $0 [--make-patch]" + exit 1 +fi diff -Nru atkmm1.6-2.24.2/codegen/Makefile.in atkmm1.6-2.28.0/codegen/Makefile.in --- atkmm1.6-2.24.2/codegen/Makefile.in 2015-11-29 20:04:51.383423558 +0000 +++ atkmm1.6-2.28.0/codegen/Makefile.in 2018-11-04 11:44:50.843547419 +0000 @@ -1,7 +1,7 @@ -# Makefile.in generated by automake 1.15 from Makefile.am. +# Makefile.in generated by automake 1.16.1 from Makefile.am. # @configure_input@ -# Copyright (C) 1994-2014 Free Software Foundation, Inc. +# Copyright (C) 1994-2018 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -138,7 +138,8 @@ am__v_at_1 = DEFAULT_INCLUDES = depcomp = $(SHELL) $(top_srcdir)/build/depcomp -am__depfiles_maybe = depfiles +am__maybe_remake_depfiles = depfiles +am__depfiles_remade = extradefs/$(DEPDIR)/generate_extra_defs_atk.Po am__mv = mv -f CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) @@ -279,6 +280,7 @@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ +LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ MAINT = @MAINT@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ @@ -354,6 +356,7 @@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ +runstatedir = @runstatedir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ @@ -398,8 +401,8 @@ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ - echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \ esac; $(srcdir)/m4/filelist.am $(am__empty): @@ -440,7 +443,13 @@ distclean-compile: -rm -f *.tab.c -@AMDEP_TRUE@@am__include@ @am__quote@extradefs/$(DEPDIR)/generate_extra_defs_atk.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@extradefs/$(DEPDIR)/generate_extra_defs_atk.Po@am__quote@ # am--include-marker + +$(am__depfiles_remade): + @$(MKDIR_P) $(@D) + @echo '# dummy' >$@-t && $(am__mv) $@-t $@ + +am--depfiles: $(am__depfiles_remade) .cc.o: @am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\ @@ -546,7 +555,10 @@ distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags -distdir: $(DISTFILES) +distdir: $(BUILT_SOURCES) + $(MAKE) $(AM_MAKEFLAGS) distdir-am + +distdir-am: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ @@ -621,7 +633,7 @@ mostlyclean-am distclean: distclean-am - -rm -rf extradefs/$(DEPDIR) + -rm -f extradefs/$(DEPDIR)/generate_extra_defs_atk.Po -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-tags @@ -667,7 +679,7 @@ installcheck-am: maintainer-clean: maintainer-clean-am - -rm -rf extradefs/$(DEPDIR) + -rm -f extradefs/$(DEPDIR)/generate_extra_defs_atk.Po -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic @@ -688,9 +700,9 @@ .MAKE: install-am install-strip -.PHONY: CTAGS GTAGS TAGS all all-am check check-am clean clean-generic \ - clean-libtool clean-noinstPROGRAMS cscopelist-am ctags \ - ctags-am distclean distclean-compile distclean-generic \ +.PHONY: CTAGS GTAGS TAGS all all-am am--depfiles check check-am clean \ + clean-generic clean-libtool clean-noinstPROGRAMS cscopelist-am \ + ctags ctags-am distclean distclean-compile distclean-generic \ distclean-libtool distclean-tags distdir dvi dvi-am html \ html-am info info-am install install-am install-data \ install-data-am install-dist_gmmproc_m4DATA install-dvi \ diff -Nru atkmm1.6-2.24.2/configure atkmm1.6-2.28.0/configure --- atkmm1.6-2.24.2/configure 2015-11-29 20:04:50.155578485 +0000 +++ atkmm1.6-2.28.0/configure 2018-11-04 11:44:48.915529211 +0000 @@ -1,8 +1,8 @@ #! /bin/sh # Guess values for system-dependent variables and create Makefiles. -# Generated by GNU Autoconf 2.69 for atkmm 2.24.2. +# Generated by GNU Autoconf 2.69 for atkmm 2.28.0. # -# Report bugs to . +# Report bugs to . # # # Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc. @@ -275,11 +275,10 @@ $as_echo "$0: be upgraded to zsh 4.3.4 or later." else $as_echo "$0: Please tell bug-autoconf@gnu.org and -$0: https://bugzilla.gnome.org/enter_bug.cgi?product=atkmm -$0: about your system, including any error possibly output -$0: before this message. Then install a modern shell, or -$0: manually run the script under such a shell if you do -$0: have one." +$0: https://gitlab.gnome.org/GNOME/atkmm/issues/ about your +$0: system, including any error possibly output before this +$0: message. Then install a modern shell, or manually run +$0: the script under such a shell if you do have one." fi exit 1 fi @@ -591,9 +590,9 @@ # Identity of this package. PACKAGE_NAME='atkmm' PACKAGE_TARNAME='atkmm' -PACKAGE_VERSION='2.24.2' -PACKAGE_STRING='atkmm 2.24.2' -PACKAGE_BUGREPORT='https://bugzilla.gnome.org/enter_bug.cgi?product=atkmm' +PACKAGE_VERSION='2.28.0' +PACKAGE_STRING='atkmm 2.28.0' +PACKAGE_BUGREPORT='https://gitlab.gnome.org/GNOME/atkmm/issues/' PACKAGE_URL='http://www.gtkmm.org/' ac_unique_file="atk/atkmm.h" @@ -658,6 +657,7 @@ ATKMM_MODULES CXXCPP CPP +LT_SYS_LIBRARY_PATH OTOOL64 OTOOL LIPO @@ -702,7 +702,6 @@ AMDEPBACKSLASH AMDEP_FALSE AMDEP_TRUE -am__quote am__include DEPDIR OBJEXT @@ -772,6 +771,7 @@ docdir oldincludedir includedir +runstatedir localstatedir sharedstatedir sysconfdir @@ -790,7 +790,8 @@ PACKAGE_TARNAME PACKAGE_NAME PATH_SEPARATOR -SHELL' +SHELL +am__quote' ac_subst_files='' ac_user_opts=' enable_option_checking @@ -801,6 +802,7 @@ enable_shared with_pic enable_fast_install +with_aix_soname with_gnu_ld with_sysroot enable_libtool_lock @@ -823,6 +825,7 @@ CCC CC CFLAGS +LT_SYS_LIBRARY_PATH CPP CXXCPP PKG_CONFIG @@ -872,6 +875,7 @@ sysconfdir='${prefix}/etc' sharedstatedir='${prefix}/com' localstatedir='${prefix}/var' +runstatedir='${localstatedir}/run' includedir='${prefix}/include' oldincludedir='/usr/include' docdir='${datarootdir}/doc/${PACKAGE_TARNAME}' @@ -1124,6 +1128,15 @@ | -silent | --silent | --silen | --sile | --sil) silent=yes ;; + -runstatedir | --runstatedir | --runstatedi | --runstated \ + | --runstate | --runstat | --runsta | --runst | --runs \ + | --run | --ru | --r) + ac_prev=runstatedir ;; + -runstatedir=* | --runstatedir=* | --runstatedi=* | --runstated=* \ + | --runstate=* | --runstat=* | --runsta=* | --runst=* | --runs=* \ + | --run=* | --ru=* | --r=*) + runstatedir=$ac_optarg ;; + -sbindir | --sbindir | --sbindi | --sbind | --sbin | --sbi | --sb) ac_prev=sbindir ;; -sbindir=* | --sbindir=* | --sbindi=* | --sbind=* | --sbin=* \ @@ -1261,7 +1274,7 @@ for ac_var in exec_prefix prefix bindir sbindir libexecdir datarootdir \ datadir sysconfdir sharedstatedir localstatedir includedir \ oldincludedir docdir infodir htmldir dvidir pdfdir psdir \ - libdir localedir mandir + libdir localedir mandir runstatedir do eval ac_val=\$$ac_var # Remove trailing slashes. @@ -1374,7 +1387,7 @@ # Omit some internal or obsolete options to make the list less imposing. # This message is too long to be a string in the A/UX 3.1 sh. cat <<_ACEOF -\`configure' configures atkmm 2.24.2 to adapt to many kinds of systems. +\`configure' configures atkmm 2.28.0 to adapt to many kinds of systems. Usage: $0 [OPTION]... [VAR=VALUE]... @@ -1414,6 +1427,7 @@ --sysconfdir=DIR read-only single-machine data [PREFIX/etc] --sharedstatedir=DIR modifiable architecture-independent data [PREFIX/com] --localstatedir=DIR modifiable single-machine data [PREFIX/var] + --runstatedir=DIR modifiable per-process data [LOCALSTATEDIR/run] --libdir=DIR object code libraries [EPREFIX/lib] --includedir=DIR C header files [PREFIX/include] --oldincludedir=DIR C header files for non-gcc [/usr/include] @@ -1444,7 +1458,7 @@ if test -n "$ac_init_help"; then case $ac_init_help in - short | recursive ) echo "Configuration of atkmm 2.24.2:";; + short | recursive ) echo "Configuration of atkmm 2.28.0:";; esac cat <<\_ACEOF @@ -1477,9 +1491,12 @@ --without-PACKAGE do not use PACKAGE (same as --with-PACKAGE=no) --with-pic[=PKGS] try to use only PIC/non-PIC objects [default=use both] + --with-aix-soname=aix|svr4|both + shared library versioning (aka "SONAME") variant to + provide on AIX, [default=aix]. --with-gnu-ld assume the C compiler uses GNU ld [default=no] - --with-sysroot=DIR Search for dependent libraries within DIR - (or the compiler's sysroot if not specified). + --with-sysroot[=DIR] Search for dependent libraries within DIR (or the + compiler's sysroot if not specified). --with-libstdc-doc=[TAGFILE@]HTMLREFDIR Link to external libstdc documentation [auto] --with-libsigc-doc=[TAGFILE@]HTMLREFDIR @@ -1499,6 +1516,8 @@ you have headers in a nonstandard directory CC C compiler command CFLAGS C compiler flags + LT_SYS_LIBRARY_PATH + User-defined run-time library search path. CPP C preprocessor CXXCPP C++ preprocessor PKG_CONFIG path to pkg-config utility @@ -1517,7 +1536,7 @@ Use these variables to override the choices made by `configure' or to help it to find libraries and programs with nonstandard names/locations. -Report bugs to . +Report bugs to . atkmm home page: . _ACEOF ac_status=$? @@ -1581,7 +1600,7 @@ test -n "$ac_init_help" && exit $ac_status if $ac_init_version; then cat <<\_ACEOF -atkmm configure 2.24.2 +atkmm configure 2.28.0 generated by GNU Autoconf 2.69 Copyright (C) 2012 Free Software Foundation, Inc. @@ -1980,7 +1999,7 @@ This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. -It was created by atkmm $as_me 2.24.2, which was +It was created by atkmm $as_me 2.28.0, which was generated by GNU Autoconf 2.69. Invocation command line was $ $0 $@ @@ -2364,7 +2383,7 @@ ac_config_headers="$ac_config_headers build/config.h atk/atkmmconfig.h" -am__api_version='1.15' +am__api_version='1.16' # Find a good install program. We prefer a C program (faster), # so one script is as good as another. But avoid the broken or @@ -2850,7 +2869,7 @@ # Define the identity of the package. PACKAGE='atkmm' - VERSION='2.24.2' + VERSION='2.28.0' # Some tools Automake needs. @@ -2871,8 +2890,8 @@ # For better backward compatibility. To be removed once Automake 1.9.x # dies out for good. For more background, see: -# -# +# +# mkdir_p='$(MKDIR_P)' # We need awk for the "check" target (and possibly the TAP driver). The @@ -3008,7 +3027,7 @@ Aborting the configuration process, to ensure you take notice of the issue. You can download and install GNU coreutils to get an 'rm' implementation -that behaves properly: . +that behaves properly: . If you want to complete the configuration process using your problematic 'rm' anyway, export the environment variable ACCEPT_INFERIOR_RM_PROGRAM @@ -3019,6 +3038,8 @@ fi fi +# Support silent build rules. +# Disable by either passing --disable-silent-rules to configure or passing V=1 to make. # Check whether --enable-silent-rules was given. if test "${enable_silent_rules+set}" = set; then : enableval=$enable_silent_rules; @@ -3027,7 +3048,7 @@ case $enable_silent_rules in # ((( yes) AM_DEFAULT_VERBOSITY=0;; no) AM_DEFAULT_VERBOSITY=1;; - *) AM_DEFAULT_VERBOSITY=1;; + *) AM_DEFAULT_VERBOSITY=0;; esac am_make=${MAKE-make} { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $am_make supports nested variables" >&5 @@ -3110,7 +3131,7 @@ ATKMM_MODULE_NAME='atkmm-1.6' -ATKMM_VERSION='2.24.2' +ATKMM_VERSION='2.28.0' ATKMM_API_VERSION='1.6' @@ -3119,20 +3140,19 @@ $as_echo "#define ATKMM_MAJOR_VERSION 2" >>confdefs.h -ATKMM_MINOR_VERSION=24 +ATKMM_MINOR_VERSION=28 -$as_echo "#define ATKMM_MINOR_VERSION 24" >>confdefs.h +$as_echo "#define ATKMM_MINOR_VERSION 28" >>confdefs.h -ATKMM_MICRO_VERSION=2 +ATKMM_MICRO_VERSION=0 -$as_echo "#define ATKMM_MICRO_VERSION 2" >>confdefs.h +$as_echo "#define ATKMM_MICRO_VERSION 0" >>confdefs.h -# Copy the mm-common .pl scripts into docs/, -# and use them from there, +# Copy the mm-common .pl scripts into doc/, and use them from there, # so we can dist them to avoid a tarball-build dependency. MMDOCTOOLDIR='${top_srcdir}/doc' if test 'xdoc' != 'x'; then @@ -3658,45 +3678,45 @@ ac_config_commands="$ac_config_commands depfiles" - -am_make=${MAKE-make} -cat > confinc << 'END' +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether ${MAKE-make} supports the include directive" >&5 +$as_echo_n "checking whether ${MAKE-make} supports the include directive... " >&6; } +cat > confinc.mk << 'END' am__doit: - @echo this is the am__doit target + @echo this is the am__doit target >confinc.out .PHONY: am__doit END -# If we don't find an include directive, just comment out the code. -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for style of include used by $am_make" >&5 -$as_echo_n "checking for style of include used by $am_make... " >&6; } am__include="#" am__quote= -_am_result=none -# First try GNU make style include. -echo "include confinc" > confmf -# Ignore all kinds of additional output from 'make'. -case `$am_make -s -f confmf 2> /dev/null` in #( -*the\ am__doit\ target*) - am__include=include - am__quote= - _am_result=GNU - ;; -esac -# Now try BSD make style include. -if test "$am__include" = "#"; then - echo '.include "confinc"' > confmf - case `$am_make -s -f confmf 2> /dev/null` in #( - *the\ am__doit\ target*) - am__include=.include - am__quote="\"" - _am_result=BSD +# BSD make does it like this. +echo '.include "confinc.mk" # ignored' > confmf.BSD +# Other make implementations (GNU, Solaris 10, AIX) do it like this. +echo 'include confinc.mk # ignored' > confmf.GNU +_am_result=no +for s in GNU BSD; do + { echo "$as_me:$LINENO: ${MAKE-make} -f confmf.$s && cat confinc.out" >&5 + (${MAKE-make} -f confmf.$s && cat confinc.out) >&5 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } + case $?:`cat confinc.out 2>/dev/null` in #( + '0:this is the am__doit target') : + case $s in #( + BSD) : + am__include='.include' am__quote='"' ;; #( + *) : + am__include='include' am__quote='' ;; +esac ;; #( + *) : ;; - esac -fi - - -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $_am_result" >&5 -$as_echo "$_am_result" >&6; } -rm -f confinc confmf +esac + if test "$am__include" != "#"; then + _am_result="yes ($s style)" + break + fi +done +rm -f confinc.* confmf.* +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: ${_am_result}" >&5 +$as_echo "${_am_result}" >&6; } # Check whether --enable-dependency-tracking was given. if test "${enable_dependency_tracking+set}" = set; then : @@ -3847,7 +3867,7 @@ - ax_cxx_compile_cxx11_required=true + ax_cxx_compile_alternatives="11 0x" ax_cxx_compile_cxx11_required=true ac_ext=cpp ac_cpp='$CXXCPP $CPPFLAGS' ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' @@ -3862,54 +3882,291 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ - template + +// If the compiler admits that it is not ready for C++11, why torture it? +// Hopefully, this will speed up the test. + +#ifndef __cplusplus + +#error "This is not a C++ compiler" + +#elif __cplusplus < 201103L + +#error "This is not a C++11 compiler" + +#else + +namespace cxx11 +{ + + namespace test_static_assert + { + + template struct check { static_assert(sizeof(int) <= sizeof(T), "not big enough"); }; - struct Base { - virtual void f() {} + } + + namespace test_final_override + { + + struct Base + { + virtual void f() {} }; - struct Child : public Base { - virtual void f() override {} + + struct Derived : public Base + { + virtual void f() override {} }; - typedef check> right_angle_brackets; + } - int a; - decltype(a) b; + namespace test_double_right_angle_brackets + { - typedef check check_type; - check_type c; - check_type&& cr = static_cast(c); + template < typename T > + struct check {}; - auto d = a; - auto l = [](){}; - // Prevent Clang error: unused variable 'l' [-Werror,-Wunused-variable] - struct use_l { use_l() { l(); } }; + typedef check single_type; + typedef check> double_type; + typedef check>> triple_type; + typedef check>>> quadruple_type; - // http://stackoverflow.com/questions/13728184/template-aliases-and-sfinae - // Clang 3.1 fails with headers of libstd++ 4.8.3 when using std::function because of this - namespace test_template_alias_sfinae { - struct foo {}; + } - template - using member = typename T::member_type; + namespace test_decltype + { - template - void func(...) {} + int + f() + { + int a = 1; + decltype(a) b = 2; + return a + b; + } - template - void func(member*) {} + } - void test(); + namespace test_type_deduction + { - void test() { - func(0); - } + template < typename T1, typename T2 > + struct is_same + { + static const bool value = false; + }; + + template < typename T > + struct is_same + { + static const bool value = true; + }; + + template < typename T1, typename T2 > + auto + add(T1 a1, T2 a2) -> decltype(a1 + a2) + { + return a1 + a2; + } + + int + test(const int c, volatile int v) + { + static_assert(is_same::value == true, ""); + static_assert(is_same::value == false, ""); + static_assert(is_same::value == false, ""); + auto ac = c; + auto av = v; + auto sumi = ac + av + 'x'; + auto sumf = ac + av + 1.0; + static_assert(is_same::value == true, ""); + static_assert(is_same::value == true, ""); + static_assert(is_same::value == true, ""); + static_assert(is_same::value == false, ""); + static_assert(is_same::value == true, ""); + return (sumf > 0.0) ? sumi : add(c, v); + } + + } + + namespace test_noexcept + { + + int f() { return 0; } + int g() noexcept { return 0; } + + static_assert(noexcept(f()) == false, ""); + static_assert(noexcept(g()) == true, ""); + + } + + namespace test_constexpr + { + + template < typename CharT > + unsigned long constexpr + strlen_c_r(const CharT *const s, const unsigned long acc) noexcept + { + return *s ? strlen_c_r(s + 1, acc + 1) : acc; + } + + template < typename CharT > + unsigned long constexpr + strlen_c(const CharT *const s) noexcept + { + return strlen_c_r(s, 0UL); + } + + static_assert(strlen_c("") == 0UL, ""); + static_assert(strlen_c("1") == 1UL, ""); + static_assert(strlen_c("example") == 7UL, ""); + static_assert(strlen_c("another\0example") == 7UL, ""); + + } + + namespace test_rvalue_references + { + + template < int N > + struct answer + { + static constexpr int value = N; + }; + + answer<1> f(int&) { return answer<1>(); } + answer<2> f(const int&) { return answer<2>(); } + answer<3> f(int&&) { return answer<3>(); } + + void + test() + { + int i = 0; + const int c = 0; + static_assert(decltype(f(i))::value == 1, ""); + static_assert(decltype(f(c))::value == 2, ""); + static_assert(decltype(f(0))::value == 3, ""); } + } + + namespace test_uniform_initialization + { + + struct test + { + static const int zero {}; + static const int one {1}; + }; + + static_assert(test::zero == 0, ""); + static_assert(test::one == 1, ""); + + } + + namespace test_lambdas + { + + void + test1() + { + auto lambda1 = [](){}; + auto lambda2 = lambda1; + lambda1(); + lambda2(); + } + + int + test2() + { + auto a = [](int i, int j){ return i + j; }(1, 2); + auto b = []() -> int { return '0'; }(); + auto c = [=](){ return a + b; }(); + auto d = [&](){ return c; }(); + auto e = [a, &b](int x) mutable { + const auto identity = [](int y){ return y; }; + for (auto i = 0; i < a; ++i) + a += b--; + return x + identity(a + b); + }(0); + return a + b + c + d + e; + } + + int + test3() + { + const auto nullary = [](){ return 0; }; + const auto unary = [](int x){ return x; }; + using nullary_t = decltype(nullary); + using unary_t = decltype(unary); + const auto higher1st = [](nullary_t f){ return f(); }; + const auto higher2nd = [unary](nullary_t f1){ + return [unary, f1](unary_t f2){ return f2(unary(f1())); }; + }; + return higher1st(nullary) + higher2nd(nullary)(unary); + } + + } + + namespace test_variadic_templates + { + + template + struct sum; + + template + struct sum + { + static constexpr auto value = N0 + sum::value; + }; + + template <> + struct sum<> + { + static constexpr auto value = 0; + }; + + static_assert(sum<>::value == 0, ""); + static_assert(sum<1>::value == 1, ""); + static_assert(sum<23>::value == 23, ""); + static_assert(sum<1, 2>::value == 3, ""); + static_assert(sum<5, 5, 11>::value == 21, ""); + static_assert(sum<2, 3, 5, 7, 11, 13>::value == 41, ""); + + } + + // http://stackoverflow.com/questions/13728184/template-aliases-and-sfinae + // Clang 3.1 fails with headers of libstd++ 4.8.3 when using std::function + // because of this. + namespace test_template_alias_sfinae + { + + struct foo {}; + + template + using member = typename T::member_type; + + template + void func(...) {} + + template + void func(member*) {} + + void test(); + + void test() { func(0); } + + } + +} // namespace cxx11 + +#endif // __cplusplus >= 201103L + + + _ACEOF if ac_fn_cxx_try_compile "$LINENO"; then : ax_cv_cxx_compile_cxx11=yes @@ -3927,66 +4184,304 @@ if test x$ac_success = xno; then - for switch in -std=c++11 -std=c++0x +std=c++11; do - cachevar=`$as_echo "ax_cv_cxx_compile_cxx11_$switch" | $as_tr_sh` - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CXX supports C++11 features with $switch" >&5 + for alternative in ${ax_cxx_compile_alternatives}; do + for switch in -std=c++${alternative} +std=c++${alternative} "-h std=c++${alternative}"; do + cachevar=`$as_echo "ax_cv_cxx_compile_cxx11_$switch" | $as_tr_sh` + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CXX supports C++11 features with $switch" >&5 $as_echo_n "checking whether $CXX supports C++11 features with $switch... " >&6; } if eval \${$cachevar+:} false; then : $as_echo_n "(cached) " >&6 else - ac_save_CXXFLAGS="$CXXFLAGS" - CXXFLAGS="$CXXFLAGS $switch" - cat confdefs.h - <<_ACEOF >conftest.$ac_ext + ac_save_CXX="$CXX" + CXX="$CXX $switch" + cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ - template + +// If the compiler admits that it is not ready for C++11, why torture it? +// Hopefully, this will speed up the test. + +#ifndef __cplusplus + +#error "This is not a C++ compiler" + +#elif __cplusplus < 201103L + +#error "This is not a C++11 compiler" + +#else + +namespace cxx11 +{ + + namespace test_static_assert + { + + template struct check { static_assert(sizeof(int) <= sizeof(T), "not big enough"); }; - struct Base { - virtual void f() {} + } + + namespace test_final_override + { + + struct Base + { + virtual void f() {} }; - struct Child : public Base { - virtual void f() override {} + + struct Derived : public Base + { + virtual void f() override {} }; - typedef check> right_angle_brackets; + } - int a; - decltype(a) b; + namespace test_double_right_angle_brackets + { - typedef check check_type; - check_type c; - check_type&& cr = static_cast(c); + template < typename T > + struct check {}; - auto d = a; - auto l = [](){}; - // Prevent Clang error: unused variable 'l' [-Werror,-Wunused-variable] - struct use_l { use_l() { l(); } }; + typedef check single_type; + typedef check> double_type; + typedef check>> triple_type; + typedef check>>> quadruple_type; - // http://stackoverflow.com/questions/13728184/template-aliases-and-sfinae - // Clang 3.1 fails with headers of libstd++ 4.8.3 when using std::function because of this - namespace test_template_alias_sfinae { - struct foo {}; + } - template - using member = typename T::member_type; + namespace test_decltype + { - template - void func(...) {} + int + f() + { + int a = 1; + decltype(a) b = 2; + return a + b; + } - template - void func(member*) {} + } - void test(); + namespace test_type_deduction + { - void test() { - func(0); - } + template < typename T1, typename T2 > + struct is_same + { + static const bool value = false; + }; + + template < typename T > + struct is_same + { + static const bool value = true; + }; + + template < typename T1, typename T2 > + auto + add(T1 a1, T2 a2) -> decltype(a1 + a2) + { + return a1 + a2; + } + + int + test(const int c, volatile int v) + { + static_assert(is_same::value == true, ""); + static_assert(is_same::value == false, ""); + static_assert(is_same::value == false, ""); + auto ac = c; + auto av = v; + auto sumi = ac + av + 'x'; + auto sumf = ac + av + 1.0; + static_assert(is_same::value == true, ""); + static_assert(is_same::value == true, ""); + static_assert(is_same::value == true, ""); + static_assert(is_same::value == false, ""); + static_assert(is_same::value == true, ""); + return (sumf > 0.0) ? sumi : add(c, v); + } + + } + + namespace test_noexcept + { + + int f() { return 0; } + int g() noexcept { return 0; } + + static_assert(noexcept(f()) == false, ""); + static_assert(noexcept(g()) == true, ""); + + } + + namespace test_constexpr + { + + template < typename CharT > + unsigned long constexpr + strlen_c_r(const CharT *const s, const unsigned long acc) noexcept + { + return *s ? strlen_c_r(s + 1, acc + 1) : acc; + } + + template < typename CharT > + unsigned long constexpr + strlen_c(const CharT *const s) noexcept + { + return strlen_c_r(s, 0UL); + } + + static_assert(strlen_c("") == 0UL, ""); + static_assert(strlen_c("1") == 1UL, ""); + static_assert(strlen_c("example") == 7UL, ""); + static_assert(strlen_c("another\0example") == 7UL, ""); + + } + + namespace test_rvalue_references + { + + template < int N > + struct answer + { + static constexpr int value = N; + }; + + answer<1> f(int&) { return answer<1>(); } + answer<2> f(const int&) { return answer<2>(); } + answer<3> f(int&&) { return answer<3>(); } + + void + test() + { + int i = 0; + const int c = 0; + static_assert(decltype(f(i))::value == 1, ""); + static_assert(decltype(f(c))::value == 2, ""); + static_assert(decltype(f(0))::value == 3, ""); + } + + } + + namespace test_uniform_initialization + { + + struct test + { + static const int zero {}; + static const int one {1}; + }; + + static_assert(test::zero == 0, ""); + static_assert(test::one == 1, ""); + + } + + namespace test_lambdas + { + + void + test1() + { + auto lambda1 = [](){}; + auto lambda2 = lambda1; + lambda1(); + lambda2(); + } + + int + test2() + { + auto a = [](int i, int j){ return i + j; }(1, 2); + auto b = []() -> int { return '0'; }(); + auto c = [=](){ return a + b; }(); + auto d = [&](){ return c; }(); + auto e = [a, &b](int x) mutable { + const auto identity = [](int y){ return y; }; + for (auto i = 0; i < a; ++i) + a += b--; + return x + identity(a + b); + }(0); + return a + b + c + d + e; } + int + test3() + { + const auto nullary = [](){ return 0; }; + const auto unary = [](int x){ return x; }; + using nullary_t = decltype(nullary); + using unary_t = decltype(unary); + const auto higher1st = [](nullary_t f){ return f(); }; + const auto higher2nd = [unary](nullary_t f1){ + return [unary, f1](unary_t f2){ return f2(unary(f1())); }; + }; + return higher1st(nullary) + higher2nd(nullary)(unary); + } + + } + + namespace test_variadic_templates + { + + template + struct sum; + + template + struct sum + { + static constexpr auto value = N0 + sum::value; + }; + + template <> + struct sum<> + { + static constexpr auto value = 0; + }; + + static_assert(sum<>::value == 0, ""); + static_assert(sum<1>::value == 1, ""); + static_assert(sum<23>::value == 23, ""); + static_assert(sum<1, 2>::value == 3, ""); + static_assert(sum<5, 5, 11>::value == 21, ""); + static_assert(sum<2, 3, 5, 7, 11, 13>::value == 41, ""); + + } + + // http://stackoverflow.com/questions/13728184/template-aliases-and-sfinae + // Clang 3.1 fails with headers of libstd++ 4.8.3 when using std::function + // because of this. + namespace test_template_alias_sfinae + { + + struct foo {}; + + template + using member = typename T::member_type; + + template + void func(...) {} + + template + void func(member*) {} + + void test(); + + void test() { func(0); } + + } + +} // namespace cxx11 + +#endif // __cplusplus >= 201103L + + + _ACEOF if ac_fn_cxx_try_compile "$LINENO"; then : eval $cachevar=yes @@ -3994,14 +4489,21 @@ eval $cachevar=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext - CXXFLAGS="$ac_save_CXXFLAGS" + CXX="$ac_save_CXX" fi eval ac_res=\$$cachevar { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } - if eval test x\$$cachevar = xyes; then - CXXFLAGS="$CXXFLAGS $switch" - ac_success=yes + if eval test x\$$cachevar = xyes; then + CXX="$CXX $switch" + if test -n "$CXXCPP" ; then + CXXCPP="$CXXCPP $switch" + fi + ac_success=yes + break + fi + done + if test x$ac_success = xyes; then break fi done @@ -4016,22 +4518,20 @@ if test x$ac_success = xno; then as_fn_error $? "*** A compiler with support for C++11 language features is required." "$LINENO" 5 fi - else - if test x$ac_success = xno; then - HAVE_CXX11=0 - { $as_echo "$as_me:${as_lineno-$LINENO}: No compiler with C++11 support was found" >&5 + fi + if test x$ac_success = xno; then + HAVE_CXX11=0 + { $as_echo "$as_me:${as_lineno-$LINENO}: No compiler with C++11 support was found" >&5 $as_echo "$as_me: No compiler with C++11 support was found" >&6;} - else - HAVE_CXX11=1 + else + HAVE_CXX11=1 $as_echo "#define HAVE_CXX11 1" >>confdefs.h - fi - - fi + # Check whether --enable-static was given. if test "${enable_static+set}" = set; then : enableval=$enable_static; p=${PACKAGE-default} @@ -4041,14 +4541,14 @@ *) enable_static=no # Look at the argument we got. We use all the common list separators. - lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," + lt_save_ifs=$IFS; IFS=$IFS$PATH_SEPARATOR, for pkg in $enableval; do - IFS="$lt_save_ifs" + IFS=$lt_save_ifs if test "X$pkg" = "X$p"; then enable_static=yes fi done - IFS="$lt_save_ifs" + IFS=$lt_save_ifs ;; esac else @@ -4071,8 +4571,8 @@ -macro_version='2.4.2' -macro_revision='1.3337' +macro_version='2.4.6' +macro_revision='2.4.6' @@ -4086,7 +4586,7 @@ -ltmain="$ac_aux_dir/ltmain.sh" +ltmain=$ac_aux_dir/ltmain.sh # Make sure we can run config.sub. $SHELL "$ac_aux_dir/config.sub" sun4 >/dev/null 2>&1 || @@ -4206,7 +4706,7 @@ $ECHO "" } -case "$ECHO" in +case $ECHO in printf*) { $as_echo "$as_me:${as_lineno-$LINENO}: result: printf" >&5 $as_echo "printf" >&6; } ;; print*) { $as_echo "$as_me:${as_lineno-$LINENO}: result: print -r" >&5 @@ -5255,19 +5755,19 @@ # Check whether --with-gnu-ld was given. if test "${with_gnu_ld+set}" = set; then : - withval=$with_gnu_ld; test "$withval" = no || with_gnu_ld=yes + withval=$with_gnu_ld; test no = "$withval" || with_gnu_ld=yes else with_gnu_ld=no fi ac_prog=ld -if test "$GCC" = yes; then +if test yes = "$GCC"; then # Check if gcc -print-prog-name=ld gives a path. { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ld used by $CC" >&5 $as_echo_n "checking for ld used by $CC... " >&6; } case $host in *-*-mingw*) - # gcc leaves a trailing carriage return which upsets mingw + # gcc leaves a trailing carriage return, which upsets mingw ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;; *) ac_prog=`($CC -print-prog-name=ld) 2>&5` ;; @@ -5281,7 +5781,7 @@ while $ECHO "$ac_prog" | $GREP "$re_direlt" > /dev/null 2>&1; do ac_prog=`$ECHO $ac_prog| $SED "s%$re_direlt%/%"` done - test -z "$LD" && LD="$ac_prog" + test -z "$LD" && LD=$ac_prog ;; "") # If it fails, then pretend we aren't using GCC. @@ -5292,7 +5792,7 @@ with_gnu_ld=unknown ;; esac -elif test "$with_gnu_ld" = yes; then +elif test yes = "$with_gnu_ld"; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking for GNU ld" >&5 $as_echo_n "checking for GNU ld... " >&6; } else @@ -5303,32 +5803,32 @@ $as_echo_n "(cached) " >&6 else if test -z "$LD"; then - lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR + lt_save_ifs=$IFS; IFS=$PATH_SEPARATOR for ac_dir in $PATH; do - IFS="$lt_save_ifs" + IFS=$lt_save_ifs test -z "$ac_dir" && ac_dir=. if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then - lt_cv_path_LD="$ac_dir/$ac_prog" + lt_cv_path_LD=$ac_dir/$ac_prog # Check to see if the program is GNU ld. I'd rather use --version, # but apparently some variants of GNU ld only accept -v. # Break only if it was the GNU/non-GNU ld that we prefer. case `"$lt_cv_path_LD" -v 2>&1 &5 $as_echo "$LD" >&6; } @@ -5371,33 +5871,38 @@ else if test -n "$NM"; then # Let the user override the test. - lt_cv_path_NM="$NM" + lt_cv_path_NM=$NM else - lt_nm_to_check="${ac_tool_prefix}nm" + lt_nm_to_check=${ac_tool_prefix}nm if test -n "$ac_tool_prefix" && test "$build" = "$host"; then lt_nm_to_check="$lt_nm_to_check nm" fi for lt_tmp_nm in $lt_nm_to_check; do - lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR + lt_save_ifs=$IFS; IFS=$PATH_SEPARATOR for ac_dir in $PATH /usr/ccs/bin/elf /usr/ccs/bin /usr/ucb /bin; do - IFS="$lt_save_ifs" + IFS=$lt_save_ifs test -z "$ac_dir" && ac_dir=. - tmp_nm="$ac_dir/$lt_tmp_nm" - if test -f "$tmp_nm" || test -f "$tmp_nm$ac_exeext" ; then + tmp_nm=$ac_dir/$lt_tmp_nm + if test -f "$tmp_nm" || test -f "$tmp_nm$ac_exeext"; then # Check to see if the nm accepts a BSD-compat flag. - # Adding the `sed 1q' prevents false positives on HP-UX, which says: + # Adding the 'sed 1q' prevents false positives on HP-UX, which says: # nm: unknown option "B" ignored # Tru64's nm complains that /dev/null is an invalid object file - case `"$tmp_nm" -B /dev/null 2>&1 | sed '1q'` in - */dev/null* | *'Invalid file or object type'*) + # MSYS converts /dev/null to NUL, MinGW nm treats NUL as empty + case $build_os in + mingw*) lt_bad_file=conftest.nm/nofile ;; + *) lt_bad_file=/dev/null ;; + esac + case `"$tmp_nm" -B $lt_bad_file 2>&1 | sed '1q'` in + *$lt_bad_file* | *'Invalid file or object type'*) lt_cv_path_NM="$tmp_nm -B" - break + break 2 ;; *) case `"$tmp_nm" -p /dev/null 2>&1 | sed '1q'` in */dev/null*) lt_cv_path_NM="$tmp_nm -p" - break + break 2 ;; *) lt_cv_path_NM=${lt_cv_path_NM="$tmp_nm"} # keep the first match, but @@ -5408,15 +5913,15 @@ esac fi done - IFS="$lt_save_ifs" + IFS=$lt_save_ifs done : ${lt_cv_path_NM=no} fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_path_NM" >&5 $as_echo "$lt_cv_path_NM" >&6; } -if test "$lt_cv_path_NM" != "no"; then - NM="$lt_cv_path_NM" +if test no != "$lt_cv_path_NM"; then + NM=$lt_cv_path_NM else # Didn't find any BSD compatible name lister, look for dumpbin. if test -n "$DUMPBIN"; then : @@ -5522,9 +6027,9 @@ fi fi - case `$DUMPBIN -symbols /dev/null 2>&1 | sed '1q'` in + case `$DUMPBIN -symbols -headers /dev/null 2>&1 | sed '1q'` in *COFF*) - DUMPBIN="$DUMPBIN -symbols" + DUMPBIN="$DUMPBIN -symbols -headers" ;; *) DUMPBIN=: @@ -5532,8 +6037,8 @@ esac fi - if test "$DUMPBIN" != ":"; then - NM="$DUMPBIN" + if test : != "$DUMPBIN"; then + NM=$DUMPBIN fi fi test -z "$NM" && NM=nm @@ -5584,7 +6089,7 @@ $as_echo_n "(cached) " >&6 else i=0 - teststring="ABCD" + teststring=ABCD case $build_os in msdosdjgpp*) @@ -5624,7 +6129,7 @@ lt_cv_sys_max_cmd_len=8192; ;; - netbsd* | freebsd* | openbsd* | darwin* | dragonfly*) + bitrig* | darwin* | dragonfly* | freebsd* | netbsd* | openbsd*) # This has been around since 386BSD, at least. Likely further. if test -x /sbin/sysctl; then lt_cv_sys_max_cmd_len=`/sbin/sysctl -n kern.argmax` @@ -5675,22 +6180,22 @@ *) lt_cv_sys_max_cmd_len=`(getconf ARG_MAX) 2> /dev/null` if test -n "$lt_cv_sys_max_cmd_len" && \ - test undefined != "$lt_cv_sys_max_cmd_len"; then + test undefined != "$lt_cv_sys_max_cmd_len"; then lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4` lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3` else # Make teststring a little bigger before we do anything with it. # a 1K string should be a reasonable start. - for i in 1 2 3 4 5 6 7 8 ; do + for i in 1 2 3 4 5 6 7 8; do teststring=$teststring$teststring done SHELL=${SHELL-${CONFIG_SHELL-/bin/sh}} # If test is not a shell built-in, we'll probably end up computing a # maximum length that is only half of the actual maximum length, but # we can't tell. - while { test "X"`env echo "$teststring$teststring" 2>/dev/null` \ + while { test X`env echo "$teststring$teststring" 2>/dev/null` \ = "X$teststring$teststring"; } >/dev/null 2>&1 && - test $i != 17 # 1/2 MB should be enough + test 17 != "$i" # 1/2 MB should be enough do i=`expr $i + 1` teststring=$teststring$teststring @@ -5708,7 +6213,7 @@ fi -if test -n $lt_cv_sys_max_cmd_len ; then +if test -n "$lt_cv_sys_max_cmd_len"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_sys_max_cmd_len" >&5 $as_echo "$lt_cv_sys_max_cmd_len" >&6; } else @@ -5726,30 +6231,6 @@ : ${MV="mv -f"} : ${RM="rm -f"} -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the shell understands some XSI constructs" >&5 -$as_echo_n "checking whether the shell understands some XSI constructs... " >&6; } -# Try some XSI features -xsi_shell=no -( _lt_dummy="a/b/c" - test "${_lt_dummy##*/},${_lt_dummy%/*},${_lt_dummy#??}"${_lt_dummy%"$_lt_dummy"}, \ - = c,a/b,b/c, \ - && eval 'test $(( 1 + 1 )) -eq 2 \ - && test "${#_lt_dummy}" -eq 5' ) >/dev/null 2>&1 \ - && xsi_shell=yes -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $xsi_shell" >&5 -$as_echo "$xsi_shell" >&6; } - - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the shell understands \"+=\"" >&5 -$as_echo_n "checking whether the shell understands \"+=\"... " >&6; } -lt_shell_append=no -( foo=bar; set foo baz; eval "$1+=\$2" && test "$foo" = barbaz ) \ - >/dev/null 2>&1 \ - && lt_shell_append=yes -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_shell_append" >&5 -$as_echo "$lt_shell_append" >&6; } - - if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then lt_unset=unset else @@ -5872,13 +6353,13 @@ reload_cmds='$LD$reload_flag -o $output$reload_objs' case $host_os in cygwin* | mingw* | pw32* | cegcc*) - if test "$GCC" != yes; then + if test yes != "$GCC"; then reload_cmds=false fi ;; darwin*) - if test "$GCC" = yes; then - reload_cmds='$LTCC $LTCFLAGS -nostdlib ${wl}-r -o $output$reload_objs' + if test yes = "$GCC"; then + reload_cmds='$LTCC $LTCFLAGS -nostdlib $wl-r -o $output$reload_objs' else reload_cmds='$LD$reload_flag -o $output$reload_objs' fi @@ -6003,13 +6484,13 @@ # Need to set the preceding variable on all platforms that support # interlibrary dependencies. # 'none' -- dependencies not supported. -# `unknown' -- same as none, but documents that we really don't know. +# 'unknown' -- same as none, but documents that we really don't know. # 'pass_all' -- all dependencies passed with no checks. # 'test_compile' -- check by making test program. # 'file_magic [[regex]]' -- check by looking for files in library path -# which responds to the $file_magic_cmd with a given extended regex. -# If you have `file' or equivalent on your system and you're not sure -# whether `pass_all' will *always* work, you probably want this one. +# that responds to the $file_magic_cmd with a given extended regex. +# If you have 'file' or equivalent on your system and you're not sure +# whether 'pass_all' will *always* work, you probably want this one. case $host_os in aix[4-9]*) @@ -6036,8 +6517,7 @@ # Base MSYS/MinGW do not provide the 'file' command needed by # func_win32_libid shell function, so use a weaker test based on 'objdump', # unless we find 'file', for example because we are cross-compiling. - # func_win32_libid assumes BSD nm, so disallow it if using MS dumpbin. - if ( test "$lt_cv_nm_interface" = "BSD nm" && file / ) >/dev/null 2>&1; then + if ( file / ) >/dev/null 2>&1; then lt_cv_deplibs_check_method='file_magic ^x86 archive import|^x86 DLL' lt_cv_file_magic_cmd='func_win32_libid' else @@ -6133,8 +6613,8 @@ lt_cv_deplibs_check_method=pass_all ;; -openbsd*) - if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then +openbsd* | bitrig*) + if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`"; then lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so\.[0-9]+\.[0-9]+|\.so|_pic\.a)$' else lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so\.[0-9]+\.[0-9]+|_pic\.a)$' @@ -6187,6 +6667,9 @@ tpf*) lt_cv_deplibs_check_method=pass_all ;; +os2*) + lt_cv_deplibs_check_method=pass_all + ;; esac fi @@ -6341,8 +6824,8 @@ case $host_os in cygwin* | mingw* | pw32* | cegcc*) - # two different shell functions defined in ltmain.sh - # decide which to use based on capabilities of $DLLTOOL + # two different shell functions defined in ltmain.sh; + # decide which one to use based on capabilities of $DLLTOOL case `$DLLTOOL --help 2>&1` in *--identify-strict*) lt_cv_sharedlib_from_linklib_cmd=func_cygming_dll_for_implib @@ -6354,7 +6837,7 @@ ;; *) # fallback: assume linklib IS sharedlib - lt_cv_sharedlib_from_linklib_cmd="$ECHO" + lt_cv_sharedlib_from_linklib_cmd=$ECHO ;; esac @@ -6509,7 +6992,7 @@ ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } - if test "$ac_status" -eq 0; then + if test 0 -eq "$ac_status"; then # Ensure the archiver fails upon bogus file names. rm -f conftest.$ac_objext libconftest.a { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$lt_ar_try\""; } >&5 @@ -6517,7 +7000,7 @@ ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } - if test "$ac_status" -ne 0; then + if test 0 -ne "$ac_status"; then lt_cv_ar_at_file=@ fi fi @@ -6530,7 +7013,7 @@ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_ar_at_file" >&5 $as_echo "$lt_cv_ar_at_file" >&6; } -if test "x$lt_cv_ar_at_file" = xno; then +if test no = "$lt_cv_ar_at_file"; then archiver_list_spec= else archiver_list_spec=$lt_cv_ar_at_file @@ -6747,7 +7230,7 @@ if test -n "$RANLIB"; then case $host_os in - openbsd*) + bitrig* | openbsd*) old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB -t \$tool_oldlib" ;; *) @@ -6837,7 +7320,7 @@ symcode='[ABCDGISTW]' ;; hpux*) - if test "$host_cpu" = ia64; then + if test ia64 = "$host_cpu"; then symcode='[ABCDEGRST]' fi ;; @@ -6870,14 +7353,44 @@ symcode='[ABCDGIRSTW]' ;; esac +if test "$lt_cv_nm_interface" = "MS dumpbin"; then + # Gets list of data symbols to import. + lt_cv_sys_global_symbol_to_import="sed -n -e 's/^I .* \(.*\)$/\1/p'" + # Adjust the below global symbol transforms to fixup imported variables. + lt_cdecl_hook=" -e 's/^I .* \(.*\)$/extern __declspec(dllimport) char \1;/p'" + lt_c_name_hook=" -e 's/^I .* \(.*\)$/ {\"\1\", (void *) 0},/p'" + lt_c_name_lib_hook="\ + -e 's/^I .* \(lib.*\)$/ {\"\1\", (void *) 0},/p'\ + -e 's/^I .* \(.*\)$/ {\"lib\1\", (void *) 0},/p'" +else + # Disable hooks by default. + lt_cv_sys_global_symbol_to_import= + lt_cdecl_hook= + lt_c_name_hook= + lt_c_name_lib_hook= +fi + # Transform an extracted symbol line into a proper C declaration. # Some systems (esp. on ia64) link data and code symbols differently, # so use this general approach. -lt_cv_sys_global_symbol_to_cdecl="sed -n -e 's/^T .* \(.*\)$/extern int \1();/p' -e 's/^$symcode* .* \(.*\)$/extern char \1;/p'" +lt_cv_sys_global_symbol_to_cdecl="sed -n"\ +$lt_cdecl_hook\ +" -e 's/^T .* \(.*\)$/extern int \1();/p'"\ +" -e 's/^$symcode$symcode* .* \(.*\)$/extern char \1;/p'" # Transform an extracted symbol line into symbol name and symbol address -lt_cv_sys_global_symbol_to_c_name_address="sed -n -e 's/^: \([^ ]*\)[ ]*$/ {\\\"\1\\\", (void *) 0},/p' -e 's/^$symcode* \([^ ]*\) \([^ ]*\)$/ {\"\2\", (void *) \&\2},/p'" -lt_cv_sys_global_symbol_to_c_name_address_lib_prefix="sed -n -e 's/^: \([^ ]*\)[ ]*$/ {\\\"\1\\\", (void *) 0},/p' -e 's/^$symcode* \([^ ]*\) \(lib[^ ]*\)$/ {\"\2\", (void *) \&\2},/p' -e 's/^$symcode* \([^ ]*\) \([^ ]*\)$/ {\"lib\2\", (void *) \&\2},/p'" +lt_cv_sys_global_symbol_to_c_name_address="sed -n"\ +$lt_c_name_hook\ +" -e 's/^: \(.*\) .*$/ {\"\1\", (void *) 0},/p'"\ +" -e 's/^$symcode$symcode* .* \(.*\)$/ {\"\1\", (void *) \&\1},/p'" + +# Transform an extracted symbol line into symbol name with lib prefix and +# symbol address. +lt_cv_sys_global_symbol_to_c_name_address_lib_prefix="sed -n"\ +$lt_c_name_lib_hook\ +" -e 's/^: \(.*\) .*$/ {\"\1\", (void *) 0},/p'"\ +" -e 's/^$symcode$symcode* .* \(lib.*\)$/ {\"\1\", (void *) \&\1},/p'"\ +" -e 's/^$symcode$symcode* .* \(.*\)$/ {\"lib\1\", (void *) \&\1},/p'" # Handle CRLF in mingw tool chain opt_cr= @@ -6895,21 +7408,24 @@ # Write the raw and C identifiers. if test "$lt_cv_nm_interface" = "MS dumpbin"; then - # Fake it for dumpbin and say T for any non-static function - # and D for any global variable. + # Fake it for dumpbin and say T for any non-static function, + # D for any global variable and I for any imported variable. # Also find C++ and __fastcall symbols from MSVC++, # which start with @ or ?. lt_cv_sys_global_symbol_pipe="$AWK '"\ " {last_section=section; section=\$ 3};"\ " /^COFF SYMBOL TABLE/{for(i in hide) delete hide[i]};"\ " /Section length .*#relocs.*(pick any)/{hide[last_section]=1};"\ +" /^ *Symbol name *: /{split(\$ 0,sn,\":\"); si=substr(sn[2],2)};"\ +" /^ *Type *: code/{print \"T\",si,substr(si,length(prfx))};"\ +" /^ *Type *: data/{print \"I\",si,substr(si,length(prfx))};"\ " \$ 0!~/External *\|/{next};"\ " / 0+ UNDEF /{next}; / UNDEF \([^|]\)*()/{next};"\ " {if(hide[section]) next};"\ -" {f=0}; \$ 0~/\(\).*\|/{f=1}; {printf f ? \"T \" : \"D \"};"\ -" {split(\$ 0, a, /\||\r/); split(a[2], s)};"\ -" s[1]~/^[@?]/{print s[1], s[1]; next};"\ -" s[1]~prfx {split(s[1],t,\"@\"); print t[1], substr(t[1],length(prfx))}"\ +" {f=\"D\"}; \$ 0~/\(\).*\|/{f=\"T\"};"\ +" {split(\$ 0,a,/\||\r/); split(a[2],s)};"\ +" s[1]~/^[@?]/{print f,s[1],s[1]; next};"\ +" s[1]~prfx {split(s[1],t,\"@\"); print f,t[1],substr(t[1],length(prfx))}"\ " ' prfx=^$ac_symprfx" else lt_cv_sys_global_symbol_pipe="sed -n -e 's/^.*[ ]\($symcode$symcode*\)[ ][ ]*$ac_symprfx$sympat$opt_cr$/$symxfrm/p'" @@ -6957,11 +7473,11 @@ if $GREP ' nm_test_func$' "$nlist" >/dev/null; then cat <<_LT_EOF > conftest.$ac_ext /* Keep this code in sync between libtool.m4, ltmain, lt_system.h, and tests. */ -#if defined(_WIN32) || defined(__CYGWIN__) || defined(_WIN32_WCE) -/* DATA imports from DLLs on WIN32 con't be const, because runtime +#if defined _WIN32 || defined __CYGWIN__ || defined _WIN32_WCE +/* DATA imports from DLLs on WIN32 can't be const, because runtime relocations are performed -- see ld's documentation on pseudo-relocs. */ # define LT_DLSYM_CONST -#elif defined(__osf__) +#elif defined __osf__ /* This system does not cope well with relocations in const data. */ # define LT_DLSYM_CONST #else @@ -6987,7 +7503,7 @@ { { "@PROGRAM@", (void *) 0 }, _LT_EOF - $SED "s/^$symcode$symcode* \(.*\) \(.*\)$/ {\"\2\", (void *) \&\2},/" < "$nlist" | $GREP -v main >> conftest.$ac_ext + $SED "s/^$symcode$symcode* .* \(.*\)$/ {\"\1\", (void *) \&\1},/" < "$nlist" | $GREP -v main >> conftest.$ac_ext cat <<\_LT_EOF >> conftest.$ac_ext {0, (void *) 0} }; @@ -7007,13 +7523,13 @@ mv conftest.$ac_objext conftstm.$ac_objext lt_globsym_save_LIBS=$LIBS lt_globsym_save_CFLAGS=$CFLAGS - LIBS="conftstm.$ac_objext" + LIBS=conftstm.$ac_objext CFLAGS="$CFLAGS$lt_prog_compiler_no_builtin_flag" if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_link\""; } >&5 (eval $ac_link) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; } && test -s conftest${ac_exeext}; then + test $ac_status = 0; } && test -s conftest$ac_exeext; then pipe_works=yes fi LIBS=$lt_globsym_save_LIBS @@ -7034,7 +7550,7 @@ rm -rf conftest* conftst* # Do not use the global_symbol_pipe unless it works. - if test "$pipe_works" = yes; then + if test yes = "$pipe_works"; then break else lt_cv_sys_global_symbol_pipe= @@ -7087,6 +7603,16 @@ + + + + + + + + + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for sysroot" >&5 $as_echo_n "checking for sysroot... " >&6; } @@ -7099,9 +7625,9 @@ lt_sysroot= -case ${with_sysroot} in #( +case $with_sysroot in #( yes) - if test "$GCC" = yes; then + if test yes = "$GCC"; then lt_sysroot=`$CC --print-sysroot 2>/dev/null` fi ;; #( @@ -7111,8 +7637,8 @@ no|'') ;; #( *) - { $as_echo "$as_me:${as_lineno-$LINENO}: result: ${with_sysroot}" >&5 -$as_echo "${with_sysroot}" >&6; } + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $with_sysroot" >&5 +$as_echo "$with_sysroot" >&6; } as_fn_error $? "The sysroot must be an absolute path." "$LINENO" 5 ;; esac @@ -7124,18 +7650,99 @@ +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for a working dd" >&5 +$as_echo_n "checking for a working dd... " >&6; } +if ${ac_cv_path_lt_DD+:} false; then : + $as_echo_n "(cached) " >&6 +else + printf 0123456789abcdef0123456789abcdef >conftest.i +cat conftest.i conftest.i >conftest2.i +: ${lt_DD:=$DD} +if test -z "$lt_DD"; then + ac_path_lt_DD_found=false + # Loop through the user's path and test for each of PROGNAME-LIST + as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_prog in dd; do + for ac_exec_ext in '' $ac_executable_extensions; do + ac_path_lt_DD="$as_dir/$ac_prog$ac_exec_ext" + as_fn_executable_p "$ac_path_lt_DD" || continue +if "$ac_path_lt_DD" bs=32 count=1 conftest.out 2>/dev/null; then + cmp -s conftest.i conftest.out \ + && ac_cv_path_lt_DD="$ac_path_lt_DD" ac_path_lt_DD_found=: +fi + $ac_path_lt_DD_found && break 3 + done + done + done +IFS=$as_save_IFS + if test -z "$ac_cv_path_lt_DD"; then + : + fi +else + ac_cv_path_lt_DD=$lt_DD +fi + +rm -f conftest.i conftest2.i conftest.out +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_lt_DD" >&5 +$as_echo "$ac_cv_path_lt_DD" >&6; } + + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking how to truncate binary pipes" >&5 +$as_echo_n "checking how to truncate binary pipes... " >&6; } +if ${lt_cv_truncate_bin+:} false; then : + $as_echo_n "(cached) " >&6 +else + printf 0123456789abcdef0123456789abcdef >conftest.i +cat conftest.i conftest.i >conftest2.i +lt_cv_truncate_bin= +if "$ac_cv_path_lt_DD" bs=32 count=1 conftest.out 2>/dev/null; then + cmp -s conftest.i conftest.out \ + && lt_cv_truncate_bin="$ac_cv_path_lt_DD bs=4096 count=1" +fi +rm -f conftest.i conftest2.i conftest.out +test -z "$lt_cv_truncate_bin" && lt_cv_truncate_bin="$SED -e 4q" +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_truncate_bin" >&5 +$as_echo "$lt_cv_truncate_bin" >&6; } + + + + + + + +# Calculate cc_basename. Skip known compiler wrappers and cross-prefix. +func_cc_basename () +{ + for cc_temp in $*""; do + case $cc_temp in + compile | *[\\/]compile | ccache | *[\\/]ccache ) ;; + distcc | *[\\/]distcc | purify | *[\\/]purify ) ;; + \-*) ;; + *) break;; + esac + done + func_cc_basename_result=`$ECHO "$cc_temp" | $SED "s%.*/%%; s%^$host_alias-%%"` +} + # Check whether --enable-libtool-lock was given. if test "${enable_libtool_lock+set}" = set; then : enableval=$enable_libtool_lock; fi -test "x$enable_libtool_lock" != xno && enable_libtool_lock=yes +test no = "$enable_libtool_lock" || enable_libtool_lock=yes # Some flags need to be propagated to the compiler or linker for good # libtool support. case $host in ia64-*-hpux*) - # Find out which ABI we are using. + # Find out what ABI is being produced by ac_compile, and set mode + # options accordingly. echo 'int i;' > conftest.$ac_ext if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 (eval $ac_compile) 2>&5 @@ -7144,24 +7751,25 @@ test $ac_status = 0; }; then case `/usr/bin/file conftest.$ac_objext` in *ELF-32*) - HPUX_IA64_MODE="32" + HPUX_IA64_MODE=32 ;; *ELF-64*) - HPUX_IA64_MODE="64" + HPUX_IA64_MODE=64 ;; esac fi rm -rf conftest* ;; *-*-irix6*) - # Find out which ABI we are using. + # Find out what ABI is being produced by ac_compile, and set linker + # options accordingly. echo '#line '$LINENO' "configure"' > conftest.$ac_ext if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 (eval $ac_compile) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then - if test "$lt_cv_prog_gnu_ld" = yes; then + if test yes = "$lt_cv_prog_gnu_ld"; then case `/usr/bin/file conftest.$ac_objext` in *32-bit*) LD="${LD-ld} -melf32bsmip" @@ -7190,9 +7798,50 @@ rm -rf conftest* ;; +mips64*-*linux*) + # Find out what ABI is being produced by ac_compile, and set linker + # options accordingly. + echo '#line '$LINENO' "configure"' > conftest.$ac_ext + if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 + (eval $ac_compile) 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; then + emul=elf + case `/usr/bin/file conftest.$ac_objext` in + *32-bit*) + emul="${emul}32" + ;; + *64-bit*) + emul="${emul}64" + ;; + esac + case `/usr/bin/file conftest.$ac_objext` in + *MSB*) + emul="${emul}btsmip" + ;; + *LSB*) + emul="${emul}ltsmip" + ;; + esac + case `/usr/bin/file conftest.$ac_objext` in + *N32*) + emul="${emul}n32" + ;; + esac + LD="${LD-ld} -m $emul" + fi + rm -rf conftest* + ;; + x86_64-*kfreebsd*-gnu|x86_64-*linux*|powerpc*-*linux*| \ s390*-*linux*|s390*-*tpf*|sparc*-*linux*) - # Find out which ABI we are using. + # Find out what ABI is being produced by ac_compile, and set linker + # options accordingly. Note that the listed cases only cover the + # situations where additional linker options are needed (such as when + # doing 32-bit compilation for a host where ld defaults to 64-bit, or + # vice versa); the common cases where no linker options are needed do + # not appear in the list. echo 'int i;' > conftest.$ac_ext if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 (eval $ac_compile) 2>&5 @@ -7215,10 +7864,10 @@ ;; esac ;; - powerpc64le-*) + powerpc64le-*linux*) LD="${LD-ld} -m elf32lppclinux" ;; - powerpc64-*) + powerpc64-*linux*) LD="${LD-ld} -m elf32ppclinux" ;; s390x-*linux*) @@ -7237,10 +7886,10 @@ x86_64-*linux*) LD="${LD-ld} -m elf_x86_64" ;; - powerpcle-*) + powerpcle-*linux*) LD="${LD-ld} -m elf64lppc" ;; - powerpc-*) + powerpc-*linux*) LD="${LD-ld} -m elf64ppc" ;; s390*-*linux*|s390*-*tpf*) @@ -7258,7 +7907,7 @@ *-*-sco3.2v5*) # On SCO OpenServer 5, we need -belf to get full-featured binaries. - SAVE_CFLAGS="$CFLAGS" + SAVE_CFLAGS=$CFLAGS CFLAGS="$CFLAGS -belf" { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the C compiler needs -belf" >&5 $as_echo_n "checking whether the C compiler needs -belf... " >&6; } @@ -7298,13 +7947,14 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_cc_needs_belf" >&5 $as_echo "$lt_cv_cc_needs_belf" >&6; } - if test x"$lt_cv_cc_needs_belf" != x"yes"; then + if test yes != "$lt_cv_cc_needs_belf"; then # this is probably gcc 2.8.0, egcs 1.0 or newer; no need for -belf - CFLAGS="$SAVE_CFLAGS" + CFLAGS=$SAVE_CFLAGS fi ;; *-*solaris*) - # Find out which ABI we are using. + # Find out what ABI is being produced by ac_compile, and set linker + # options accordingly. echo 'int i;' > conftest.$ac_ext if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 (eval $ac_compile) 2>&5 @@ -7316,7 +7966,7 @@ case $lt_cv_prog_gnu_ld in yes*) case $host in - i?86-*-solaris*) + i?86-*-solaris*|x86_64-*-solaris*) LD="${LD-ld} -m elf_x86_64" ;; sparc*-*-solaris*) @@ -7325,7 +7975,7 @@ esac # GNU ld 2.21 introduced _sol2 emulations. Use them if available. if ${LD-ld} -V | grep _sol2 >/dev/null 2>&1; then - LD="${LD-ld}_sol2" + LD=${LD-ld}_sol2 fi ;; *) @@ -7341,7 +7991,7 @@ ;; esac -need_locks="$enable_libtool_lock" +need_locks=$enable_libtool_lock if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}mt", so it can be a program name with args. @@ -7452,7 +8102,7 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_path_mainfest_tool" >&5 $as_echo "$lt_cv_path_mainfest_tool" >&6; } -if test "x$lt_cv_path_mainfest_tool" != xyes; then +if test yes != "$lt_cv_path_mainfest_tool"; then MANIFEST_TOOL=: fi @@ -7955,7 +8605,7 @@ $as_echo_n "(cached) " >&6 else lt_cv_apple_cc_single_mod=no - if test -z "${LT_MULTI_MODULE}"; then + if test -z "$LT_MULTI_MODULE"; then # By default we will add the -single_module flag. You can override # by either setting the environment variable LT_MULTI_MODULE # non-empty at configure time, or by adding -multi_module to the @@ -7973,7 +8623,7 @@ cat conftest.err >&5 # Otherwise, if the output was created with a 0 exit code from # the compiler, it worked. - elif test -f libconftest.dylib && test $_lt_result -eq 0; then + elif test -f libconftest.dylib && test 0 = "$_lt_result"; then lt_cv_apple_cc_single_mod=yes else cat conftest.err >&5 @@ -8012,7 +8662,7 @@ fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext - LDFLAGS="$save_LDFLAGS" + LDFLAGS=$save_LDFLAGS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_ld_exported_symbols_list" >&5 @@ -8041,7 +8691,7 @@ _lt_result=$? if test -s conftest.err && $GREP force_load conftest.err; then cat conftest.err >&5 - elif test -f conftest && test $_lt_result -eq 0 && $GREP forced_load conftest >/dev/null 2>&1 ; then + elif test -f conftest && test 0 = "$_lt_result" && $GREP forced_load conftest >/dev/null 2>&1; then lt_cv_ld_force_load=yes else cat conftest.err >&5 @@ -8054,32 +8704,32 @@ $as_echo "$lt_cv_ld_force_load" >&6; } case $host_os in rhapsody* | darwin1.[012]) - _lt_dar_allow_undefined='${wl}-undefined ${wl}suppress' ;; + _lt_dar_allow_undefined='$wl-undefined ${wl}suppress' ;; darwin1.*) - _lt_dar_allow_undefined='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' ;; + _lt_dar_allow_undefined='$wl-flat_namespace $wl-undefined ${wl}suppress' ;; darwin*) # darwin 5.x on # if running on 10.5 or later, the deployment target defaults # to the OS version, if on x86, and 10.4, the deployment # target defaults to 10.4. Don't you love it? case ${MACOSX_DEPLOYMENT_TARGET-10.0},$host in 10.0,*86*-darwin8*|10.0,*-darwin[91]*) - _lt_dar_allow_undefined='${wl}-undefined ${wl}dynamic_lookup' ;; - 10.[012]*) - _lt_dar_allow_undefined='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' ;; + _lt_dar_allow_undefined='$wl-undefined ${wl}dynamic_lookup' ;; + 10.[012][,.]*) + _lt_dar_allow_undefined='$wl-flat_namespace $wl-undefined ${wl}suppress' ;; 10.*) - _lt_dar_allow_undefined='${wl}-undefined ${wl}dynamic_lookup' ;; + _lt_dar_allow_undefined='$wl-undefined ${wl}dynamic_lookup' ;; esac ;; esac - if test "$lt_cv_apple_cc_single_mod" = "yes"; then + if test yes = "$lt_cv_apple_cc_single_mod"; then _lt_dar_single_mod='$single_module' fi - if test "$lt_cv_ld_exported_symbols_list" = "yes"; then - _lt_dar_export_syms=' ${wl}-exported_symbols_list,$output_objdir/${libname}-symbols.expsym' + if test yes = "$lt_cv_ld_exported_symbols_list"; then + _lt_dar_export_syms=' $wl-exported_symbols_list,$output_objdir/$libname-symbols.expsym' else - _lt_dar_export_syms='~$NMEDIT -s $output_objdir/${libname}-symbols.expsym ${lib}' + _lt_dar_export_syms='~$NMEDIT -s $output_objdir/$libname-symbols.expsym $lib' fi - if test "$DSYMUTIL" != ":" && test "$lt_cv_ld_force_load" = "no"; then + if test : != "$DSYMUTIL" && test no = "$lt_cv_ld_force_load"; then _lt_dsymutil='~$DSYMUTIL $lib || :' else _lt_dsymutil= @@ -8087,6 +8737,41 @@ ;; esac +# func_munge_path_list VARIABLE PATH +# ----------------------------------- +# VARIABLE is name of variable containing _space_ separated list of +# directories to be munged by the contents of PATH, which is string +# having a format: +# "DIR[:DIR]:" +# string "DIR[ DIR]" will be prepended to VARIABLE +# ":DIR[:DIR]" +# string "DIR[ DIR]" will be appended to VARIABLE +# "DIRP[:DIRP]::[DIRA:]DIRA" +# string "DIRP[ DIRP]" will be prepended to VARIABLE and string +# "DIRA[ DIRA]" will be appended to VARIABLE +# "DIR[:DIR]" +# VARIABLE will be replaced by "DIR[ DIR]" +func_munge_path_list () +{ + case x$2 in + x) + ;; + *:) + eval $1=\"`$ECHO $2 | $SED 's/:/ /g'` \$$1\" + ;; + x:*) + eval $1=\"\$$1 `$ECHO $2 | $SED 's/:/ /g'`\" + ;; + *::*) + eval $1=\"\$$1\ `$ECHO $2 | $SED -e 's/.*:://' -e 's/:/ /g'`\" + eval $1=\"`$ECHO $2 | $SED -e 's/::.*//' -e 's/:/ /g'`\ \$$1\" + ;; + *) + eval $1=\"`$ECHO $2 | $SED 's/:/ /g'`\" + ;; + esac +} + ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' @@ -8371,9 +9056,9 @@ func_stripname_cnf () { - case ${2} in - .*) func_stripname_result=`$ECHO "${3}" | $SED "s%^${1}%%; s%\\\\${2}\$%%"`;; - *) func_stripname_result=`$ECHO "${3}" | $SED "s%^${1}%%; s%${2}\$%%"`;; + case $2 in + .*) func_stripname_result=`$ECHO "$3" | $SED "s%^$1%%; s%\\\\$2\$%%"`;; + *) func_stripname_result=`$ECHO "$3" | $SED "s%^$1%%; s%$2\$%%"`;; esac } # func_stripname_cnf @@ -8698,14 +9383,14 @@ *) enable_shared=no # Look at the argument we got. We use all the common list separators. - lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," + lt_save_ifs=$IFS; IFS=$IFS$PATH_SEPARATOR, for pkg in $enableval; do - IFS="$lt_save_ifs" + IFS=$lt_save_ifs if test "X$pkg" = "X$p"; then enable_shared=yes fi done - IFS="$lt_save_ifs" + IFS=$lt_save_ifs ;; esac else @@ -8730,14 +9415,14 @@ *) pic_mode=default # Look at the argument we got. We use all the common list separators. - lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," + lt_save_ifs=$IFS; IFS=$IFS$PATH_SEPARATOR, for lt_pkg in $withval; do - IFS="$lt_save_ifs" + IFS=$lt_save_ifs if test "X$lt_pkg" = "X$lt_p"; then pic_mode=yes fi done - IFS="$lt_save_ifs" + IFS=$lt_save_ifs ;; esac else @@ -8745,8 +9430,6 @@ fi -test -z "$pic_mode" && pic_mode=default - @@ -8762,14 +9445,14 @@ *) enable_fast_install=no # Look at the argument we got. We use all the common list separators. - lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," + lt_save_ifs=$IFS; IFS=$IFS$PATH_SEPARATOR, for pkg in $enableval; do - IFS="$lt_save_ifs" + IFS=$lt_save_ifs if test "X$pkg" = "X$p"; then enable_fast_install=yes fi done - IFS="$lt_save_ifs" + IFS=$lt_save_ifs ;; esac else @@ -8783,11 +9466,63 @@ + shared_archive_member_spec= +case $host,$enable_shared in +power*-*-aix[5-9]*,yes) + { $as_echo "$as_me:${as_lineno-$LINENO}: checking which variant of shared library versioning to provide" >&5 +$as_echo_n "checking which variant of shared library versioning to provide... " >&6; } + +# Check whether --with-aix-soname was given. +if test "${with_aix_soname+set}" = set; then : + withval=$with_aix_soname; case $withval in + aix|svr4|both) + ;; + *) + as_fn_error $? "Unknown argument to --with-aix-soname" "$LINENO" 5 + ;; + esac + lt_cv_with_aix_soname=$with_aix_soname +else + if ${lt_cv_with_aix_soname+:} false; then : + $as_echo_n "(cached) " >&6 +else + lt_cv_with_aix_soname=aix +fi + + with_aix_soname=$lt_cv_with_aix_soname +fi + + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $with_aix_soname" >&5 +$as_echo "$with_aix_soname" >&6; } + if test aix != "$with_aix_soname"; then + # For the AIX way of multilib, we name the shared archive member + # based on the bitwidth used, traditionally 'shr.o' or 'shr_64.o', + # and 'shr.imp' or 'shr_64.imp', respectively, for the Import File. + # Even when GNU compilers ignore OBJECT_MODE but need '-maix64' flag, + # the AIX toolchain works better with OBJECT_MODE set (default 32). + if test 64 = "${OBJECT_MODE-32}"; then + shared_archive_member_spec=shr_64 + else + shared_archive_member_spec=shr + fi + fi + ;; +*) + with_aix_soname=aix + ;; +esac + + + + + + + # This can be used to rebuild libtool when needed -LIBTOOL_DEPS="$ltmain" +LIBTOOL_DEPS=$ltmain # Always use our own libtool. LIBTOOL='$(SHELL) $(top_builddir)/libtool' @@ -8836,7 +9571,7 @@ -if test -n "${ZSH_VERSION+set}" ; then +if test -n "${ZSH_VERSION+set}"; then setopt NO_GLOB_SUBST fi @@ -8875,7 +9610,7 @@ # AIX sometimes has problems with the GCC collect2 program. For some # reason, if we set the COLLECT_NAMES environment variable, the problems # vanish in a puff of smoke. - if test "X${COLLECT_NAMES+set}" != Xset; then + if test set != "${COLLECT_NAMES+set}"; then COLLECT_NAMES= export COLLECT_NAMES fi @@ -8886,14 +9621,14 @@ ofile=libtool can_build_shared=yes -# All known linkers require a `.a' archive for static linking (except MSVC, +# All known linkers require a '.a' archive for static linking (except MSVC, # which needs '.lib'). libext=a -with_gnu_ld="$lt_cv_prog_gnu_ld" +with_gnu_ld=$lt_cv_prog_gnu_ld -old_CC="$CC" -old_CFLAGS="$CFLAGS" +old_CC=$CC +old_CFLAGS=$CFLAGS # Set sane defaults for various variables test -z "$CC" && CC=cc @@ -8902,15 +9637,8 @@ test -z "$LD" && LD=ld test -z "$ac_objext" && ac_objext=o -for cc_temp in $compiler""; do - case $cc_temp in - compile | *[\\/]compile | ccache | *[\\/]ccache ) ;; - distcc | *[\\/]distcc | purify | *[\\/]purify ) ;; - \-*) ;; - *) break;; - esac -done -cc_basename=`$ECHO "$cc_temp" | $SED "s%.*/%%; s%^$host_alias-%%"` +func_cc_basename $compiler +cc_basename=$func_cc_basename_result # Only perform the check for file, if the check method requires it @@ -8925,22 +9653,22 @@ else case $MAGIC_CMD in [\\/*] | ?:[\\/]*) - lt_cv_path_MAGIC_CMD="$MAGIC_CMD" # Let the user override the test with a path. + lt_cv_path_MAGIC_CMD=$MAGIC_CMD # Let the user override the test with a path. ;; *) - lt_save_MAGIC_CMD="$MAGIC_CMD" - lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR + lt_save_MAGIC_CMD=$MAGIC_CMD + lt_save_ifs=$IFS; IFS=$PATH_SEPARATOR ac_dummy="/usr/bin$PATH_SEPARATOR$PATH" for ac_dir in $ac_dummy; do - IFS="$lt_save_ifs" + IFS=$lt_save_ifs test -z "$ac_dir" && ac_dir=. - if test -f $ac_dir/${ac_tool_prefix}file; then - lt_cv_path_MAGIC_CMD="$ac_dir/${ac_tool_prefix}file" + if test -f "$ac_dir/${ac_tool_prefix}file"; then + lt_cv_path_MAGIC_CMD=$ac_dir/"${ac_tool_prefix}file" if test -n "$file_magic_test_file"; then case $deplibs_check_method in "file_magic "*) file_magic_regex=`expr "$deplibs_check_method" : "file_magic \(.*\)"` - MAGIC_CMD="$lt_cv_path_MAGIC_CMD" + MAGIC_CMD=$lt_cv_path_MAGIC_CMD if eval $file_magic_cmd \$file_magic_test_file 2> /dev/null | $EGREP "$file_magic_regex" > /dev/null; then : @@ -8963,13 +9691,13 @@ break fi done - IFS="$lt_save_ifs" - MAGIC_CMD="$lt_save_MAGIC_CMD" + IFS=$lt_save_ifs + MAGIC_CMD=$lt_save_MAGIC_CMD ;; esac fi -MAGIC_CMD="$lt_cv_path_MAGIC_CMD" +MAGIC_CMD=$lt_cv_path_MAGIC_CMD if test -n "$MAGIC_CMD"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MAGIC_CMD" >&5 $as_echo "$MAGIC_CMD" >&6; } @@ -8991,22 +9719,22 @@ else case $MAGIC_CMD in [\\/*] | ?:[\\/]*) - lt_cv_path_MAGIC_CMD="$MAGIC_CMD" # Let the user override the test with a path. + lt_cv_path_MAGIC_CMD=$MAGIC_CMD # Let the user override the test with a path. ;; *) - lt_save_MAGIC_CMD="$MAGIC_CMD" - lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR + lt_save_MAGIC_CMD=$MAGIC_CMD + lt_save_ifs=$IFS; IFS=$PATH_SEPARATOR ac_dummy="/usr/bin$PATH_SEPARATOR$PATH" for ac_dir in $ac_dummy; do - IFS="$lt_save_ifs" + IFS=$lt_save_ifs test -z "$ac_dir" && ac_dir=. - if test -f $ac_dir/file; then - lt_cv_path_MAGIC_CMD="$ac_dir/file" + if test -f "$ac_dir/file"; then + lt_cv_path_MAGIC_CMD=$ac_dir/"file" if test -n "$file_magic_test_file"; then case $deplibs_check_method in "file_magic "*) file_magic_regex=`expr "$deplibs_check_method" : "file_magic \(.*\)"` - MAGIC_CMD="$lt_cv_path_MAGIC_CMD" + MAGIC_CMD=$lt_cv_path_MAGIC_CMD if eval $file_magic_cmd \$file_magic_test_file 2> /dev/null | $EGREP "$file_magic_regex" > /dev/null; then : @@ -9029,13 +9757,13 @@ break fi done - IFS="$lt_save_ifs" - MAGIC_CMD="$lt_save_MAGIC_CMD" + IFS=$lt_save_ifs + MAGIC_CMD=$lt_save_MAGIC_CMD ;; esac fi -MAGIC_CMD="$lt_cv_path_MAGIC_CMD" +MAGIC_CMD=$lt_cv_path_MAGIC_CMD if test -n "$MAGIC_CMD"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MAGIC_CMD" >&5 $as_echo "$MAGIC_CMD" >&6; } @@ -9056,7 +9784,7 @@ # Use C for the default configuration in the libtool script -lt_save_CC="$CC" +lt_save_CC=$CC ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' @@ -9118,7 +9846,7 @@ lt_prog_compiler_no_builtin_flag= -if test "$GCC" = yes; then +if test yes = "$GCC"; then case $cc_basename in nvcc*) lt_prog_compiler_no_builtin_flag=' -Xcompiler -fno-builtin' ;; @@ -9134,7 +9862,7 @@ lt_cv_prog_compiler_rtti_exceptions=no ac_outfile=conftest.$ac_objext echo "$lt_simple_compile_test_code" > conftest.$ac_ext - lt_compiler_flag="-fno-rtti -fno-exceptions" + lt_compiler_flag="-fno-rtti -fno-exceptions" ## exclude from sc_useless_quotes_in_assignment # Insert the option either (1) after the last *FLAGS variable, or # (2) before a word containing "conftest.", or (3) at the end. # Note that $ac_compile itself does not contain backslashes and begins @@ -9164,7 +9892,7 @@ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_rtti_exceptions" >&5 $as_echo "$lt_cv_prog_compiler_rtti_exceptions" >&6; } -if test x"$lt_cv_prog_compiler_rtti_exceptions" = xyes; then +if test yes = "$lt_cv_prog_compiler_rtti_exceptions"; then lt_prog_compiler_no_builtin_flag="$lt_prog_compiler_no_builtin_flag -fno-rtti -fno-exceptions" else : @@ -9182,17 +9910,18 @@ lt_prog_compiler_static= - if test "$GCC" = yes; then + if test yes = "$GCC"; then lt_prog_compiler_wl='-Wl,' lt_prog_compiler_static='-static' case $host_os in aix*) # All AIX code is PIC. - if test "$host_cpu" = ia64; then + if test ia64 = "$host_cpu"; then # AIX 5 now supports IA64 processor lt_prog_compiler_static='-Bstatic' fi + lt_prog_compiler_pic='-fPIC' ;; amigaos*) @@ -9203,8 +9932,8 @@ ;; m68k) # FIXME: we need at least 68020 code to build shared libraries, but - # adding the `-m68020' flag to GCC prevents building anything better, - # like `-m68040'. + # adding the '-m68020' flag to GCC prevents building anything better, + # like '-m68040'. lt_prog_compiler_pic='-m68020 -resident32 -malways-restore-a4' ;; esac @@ -9220,6 +9949,11 @@ # Although the cygwin gcc ignores -fPIC, still need this for old-style # (--disable-auto-import) libraries lt_prog_compiler_pic='-DDLL_EXPORT' + case $host_os in + os2*) + lt_prog_compiler_static='$wl-static' + ;; + esac ;; darwin* | rhapsody*) @@ -9290,7 +10024,7 @@ case $host_os in aix*) lt_prog_compiler_wl='-Wl,' - if test "$host_cpu" = ia64; then + if test ia64 = "$host_cpu"; then # AIX 5 now supports IA64 processor lt_prog_compiler_static='-Bstatic' else @@ -9298,10 +10032,29 @@ fi ;; + darwin* | rhapsody*) + # PIC is the default on this platform + # Common symbols not allowed in MH_DYLIB files + lt_prog_compiler_pic='-fno-common' + case $cc_basename in + nagfor*) + # NAG Fortran compiler + lt_prog_compiler_wl='-Wl,-Wl,,' + lt_prog_compiler_pic='-PIC' + lt_prog_compiler_static='-Bstatic' + ;; + esac + ;; + mingw* | cygwin* | pw32* | os2* | cegcc*) # This hack is so that the source file can tell whether it is being # built for inclusion in a dll (and should export symbols for example). lt_prog_compiler_pic='-DDLL_EXPORT' + case $host_os in + os2*) + lt_prog_compiler_static='$wl-static' + ;; + esac ;; hpux9* | hpux10* | hpux11*) @@ -9317,7 +10070,7 @@ ;; esac # Is there a better lt_prog_compiler_static that works with the bundled CC? - lt_prog_compiler_static='${wl}-a ${wl}archive' + lt_prog_compiler_static='$wl-a ${wl}archive' ;; irix5* | irix6* | nonstopux*) @@ -9328,7 +10081,7 @@ linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) case $cc_basename in - # old Intel for x86_64 which still supported -KPIC. + # old Intel for x86_64, which still supported -KPIC. ecc*) lt_prog_compiler_wl='-Wl,' lt_prog_compiler_pic='-KPIC' @@ -9353,6 +10106,12 @@ lt_prog_compiler_pic='-PIC' lt_prog_compiler_static='-Bstatic' ;; + tcc*) + # Fabrice Bellard et al's Tiny C Compiler + lt_prog_compiler_wl='-Wl,' + lt_prog_compiler_pic='-fPIC' + lt_prog_compiler_static='-static' + ;; pgcc* | pgf77* | pgf90* | pgf95* | pgfortran*) # Portland Group compilers (*not* the Pentium gcc compiler, # which looks to be a dead project) @@ -9450,7 +10209,7 @@ ;; sysv4*MP*) - if test -d /usr/nec ;then + if test -d /usr/nec; then lt_prog_compiler_pic='-Kconform_pic' lt_prog_compiler_static='-Bstatic' fi @@ -9479,7 +10238,7 @@ fi case $host_os in - # For platforms which do not support PIC, -DPIC is meaningless: + # For platforms that do not support PIC, -DPIC is meaningless: *djgpp*) lt_prog_compiler_pic= ;; @@ -9511,7 +10270,7 @@ lt_cv_prog_compiler_pic_works=no ac_outfile=conftest.$ac_objext echo "$lt_simple_compile_test_code" > conftest.$ac_ext - lt_compiler_flag="$lt_prog_compiler_pic -DPIC" + lt_compiler_flag="$lt_prog_compiler_pic -DPIC" ## exclude from sc_useless_quotes_in_assignment # Insert the option either (1) after the last *FLAGS variable, or # (2) before a word containing "conftest.", or (3) at the end. # Note that $ac_compile itself does not contain backslashes and begins @@ -9541,7 +10300,7 @@ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_pic_works" >&5 $as_echo "$lt_cv_prog_compiler_pic_works" >&6; } -if test x"$lt_cv_prog_compiler_pic_works" = xyes; then +if test yes = "$lt_cv_prog_compiler_pic_works"; then case $lt_prog_compiler_pic in "" | " "*) ;; *) lt_prog_compiler_pic=" $lt_prog_compiler_pic" ;; @@ -9573,7 +10332,7 @@ $as_echo_n "(cached) " >&6 else lt_cv_prog_compiler_static_works=no - save_LDFLAGS="$LDFLAGS" + save_LDFLAGS=$LDFLAGS LDFLAGS="$LDFLAGS $lt_tmp_static_flag" echo "$lt_simple_link_test_code" > conftest.$ac_ext if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then @@ -9592,13 +10351,13 @@ fi fi $RM -r conftest* - LDFLAGS="$save_LDFLAGS" + LDFLAGS=$save_LDFLAGS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_static_works" >&5 $as_echo "$lt_cv_prog_compiler_static_works" >&6; } -if test x"$lt_cv_prog_compiler_static_works" = xyes; then +if test yes = "$lt_cv_prog_compiler_static_works"; then : else lt_prog_compiler_static= @@ -9718,8 +10477,8 @@ -hard_links="nottested" -if test "$lt_cv_prog_compiler_c_o" = no && test "$need_locks" != no; then +hard_links=nottested +if test no = "$lt_cv_prog_compiler_c_o" && test no != "$need_locks"; then # do not overwrite the value of need_locks provided by the user { $as_echo "$as_me:${as_lineno-$LINENO}: checking if we can lock with hard links" >&5 $as_echo_n "checking if we can lock with hard links... " >&6; } @@ -9731,9 +10490,9 @@ ln conftest.a conftest.b 2>/dev/null && hard_links=no { $as_echo "$as_me:${as_lineno-$LINENO}: result: $hard_links" >&5 $as_echo "$hard_links" >&6; } - if test "$hard_links" = no; then - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&5 -$as_echo "$as_me: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&2;} + if test no = "$hard_links"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: '$CC' does not support '-c -o', so 'make -j' may be unsafe" >&5 +$as_echo "$as_me: WARNING: '$CC' does not support '-c -o', so 'make -j' may be unsafe" >&2;} need_locks=warn fi else @@ -9776,9 +10535,9 @@ # included in the symbol list include_expsyms= # exclude_expsyms can be an extended regexp of symbols to exclude - # it will be wrapped by ` (' and `)$', so one must not match beginning or - # end of line. Example: `a|bc|.*d.*' will exclude the symbols `a' and `bc', - # as well as any symbol that contains `d'. + # it will be wrapped by ' (' and ')$', so one must not match beginning or + # end of line. Example: 'a|bc|.*d.*' will exclude the symbols 'a' and 'bc', + # as well as any symbol that contains 'd'. exclude_expsyms='_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*' # Although _GLOBAL_OFFSET_TABLE_ is a valid symbol C name, most a.out # platforms (ab)use it in PIC code, but their linkers get confused if @@ -9793,7 +10552,7 @@ # FIXME: the MSVC++ port hasn't been tested in a loooong time # When not using gcc, we currently assume that we are using # Microsoft Visual C++. - if test "$GCC" != yes; then + if test yes != "$GCC"; then with_gnu_ld=no fi ;; @@ -9801,7 +10560,7 @@ # we just hope/assume this is gcc and not c89 (= MSVC++) with_gnu_ld=yes ;; - openbsd*) + openbsd* | bitrig*) with_gnu_ld=no ;; linux* | k*bsd*-gnu | gnu*) @@ -9814,7 +10573,7 @@ # On some targets, GNU ld is compatible enough with the native linker # that we're better off using the native interface for both. lt_use_gnu_ld_interface=no - if test "$with_gnu_ld" = yes; then + if test yes = "$with_gnu_ld"; then case $host_os in aix*) # The AIX port of GNU ld has always aspired to compatibility @@ -9836,24 +10595,24 @@ esac fi - if test "$lt_use_gnu_ld_interface" = yes; then + if test yes = "$lt_use_gnu_ld_interface"; then # If archive_cmds runs LD, not CC, wlarc should be empty - wlarc='${wl}' + wlarc='$wl' # Set some defaults for GNU ld with shared library support. These # are reset later if shared libraries are not supported. Putting them # here allows them to be overridden if necessary. runpath_var=LD_RUN_PATH - hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' - export_dynamic_flag_spec='${wl}--export-dynamic' + hardcode_libdir_flag_spec='$wl-rpath $wl$libdir' + export_dynamic_flag_spec='$wl--export-dynamic' # ancient GNU ld didn't support --whole-archive et. al. if $LD --help 2>&1 | $GREP 'no-whole-archive' > /dev/null; then - whole_archive_flag_spec="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' + whole_archive_flag_spec=$wlarc'--whole-archive$convenience '$wlarc'--no-whole-archive' else whole_archive_flag_spec= fi supports_anon_versioning=no - case `$LD -v 2>&1` in + case `$LD -v | $SED -e 's/(^)\+)\s\+//' 2>&1` in *GNU\ gold*) supports_anon_versioning=yes ;; *\ [01].* | *\ 2.[0-9].* | *\ 2.10.*) ;; # catch versions < 2.11 *\ 2.11.93.0.2\ *) supports_anon_versioning=yes ;; # RH7.3 ... @@ -9866,7 +10625,7 @@ case $host_os in aix[3-9]*) # On AIX/PPC, the GNU linker is very broken - if test "$host_cpu" != ia64; then + if test ia64 != "$host_cpu"; then ld_shlibs=no cat <<_LT_EOF 1>&2 @@ -9885,7 +10644,7 @@ case $host_cpu in powerpc) # see comment about AmigaOS4 .so support - archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' archive_expsym_cmds='' ;; m68k) @@ -9901,7 +10660,7 @@ allow_undefined_flag=unsupported # Joseph Beckenbach says some releases of gcc # support --undefined. This deserves some investigation. FIXME - archive_cmds='$CC -nostart $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + archive_cmds='$CC -nostart $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' else ld_shlibs=no fi @@ -9911,7 +10670,7 @@ # _LT_TAGVAR(hardcode_libdir_flag_spec, ) is actually meaningless, # as there is no search path for DLLs. hardcode_libdir_flag_spec='-L$libdir' - export_dynamic_flag_spec='${wl}--export-all-symbols' + export_dynamic_flag_spec='$wl--export-all-symbols' allow_undefined_flag=unsupported always_export_symbols=no enable_shared_with_static_runtimes=yes @@ -9919,61 +10678,89 @@ exclude_expsyms='[_]+GLOBAL_OFFSET_TABLE_|[_]+GLOBAL__[FID]_.*|[_]+head_[A-Za-z0-9_]+_dll|[A-Za-z0-9_]+_dll_iname' if $LD --help 2>&1 | $GREP 'auto-import' > /dev/null; then - archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' - # If the export-symbols file already is a .def file (1st line - # is EXPORTS), use it as is; otherwise, prepend... - archive_expsym_cmds='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then - cp $export_symbols $output_objdir/$soname.def; - else - echo EXPORTS > $output_objdir/$soname.def; - cat $export_symbols >> $output_objdir/$soname.def; - fi~ - $CC -shared $output_objdir/$soname.def $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' + archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags -o $output_objdir/$soname $wl--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' + # If the export-symbols file already is a .def file, use it as + # is; otherwise, prepend EXPORTS... + archive_expsym_cmds='if test DEF = "`$SED -n -e '\''s/^[ ]*//'\'' -e '\''/^\(;.*\)*$/d'\'' -e '\''s/^\(EXPORTS\|LIBRARY\)\([ ].*\)*$/DEF/p'\'' -e q $export_symbols`" ; then + cp $export_symbols $output_objdir/$soname.def; + else + echo EXPORTS > $output_objdir/$soname.def; + cat $export_symbols >> $output_objdir/$soname.def; + fi~ + $CC -shared $output_objdir/$soname.def $libobjs $deplibs $compiler_flags -o $output_objdir/$soname $wl--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' else ld_shlibs=no fi ;; haiku*) - archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' link_all_deplibs=yes ;; + os2*) + hardcode_libdir_flag_spec='-L$libdir' + hardcode_minus_L=yes + allow_undefined_flag=unsupported + shrext_cmds=.dll + archive_cmds='$ECHO "LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE" > $output_objdir/$libname.def~ + $ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~ + $ECHO "DATA MULTIPLE NONSHARED" >> $output_objdir/$libname.def~ + $ECHO EXPORTS >> $output_objdir/$libname.def~ + emxexp $libobjs | $SED /"_DLL_InitTerm"/d >> $output_objdir/$libname.def~ + $CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~ + emximp -o $lib $output_objdir/$libname.def' + archive_expsym_cmds='$ECHO "LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE" > $output_objdir/$libname.def~ + $ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~ + $ECHO "DATA MULTIPLE NONSHARED" >> $output_objdir/$libname.def~ + $ECHO EXPORTS >> $output_objdir/$libname.def~ + prefix_cmds="$SED"~ + if test EXPORTS = "`$SED 1q $export_symbols`"; then + prefix_cmds="$prefix_cmds -e 1d"; + fi~ + prefix_cmds="$prefix_cmds -e \"s/^\(.*\)$/_\1/g\""~ + cat $export_symbols | $prefix_cmds >> $output_objdir/$libname.def~ + $CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~ + emximp -o $lib $output_objdir/$libname.def' + old_archive_From_new_cmds='emximp -o $output_objdir/${libname}_dll.a $output_objdir/$libname.def' + enable_shared_with_static_runtimes=yes + ;; + interix[3-9]*) hardcode_direct=no hardcode_shlibpath_var=no - hardcode_libdir_flag_spec='${wl}-rpath,$libdir' - export_dynamic_flag_spec='${wl}-E' + hardcode_libdir_flag_spec='$wl-rpath,$libdir' + export_dynamic_flag_spec='$wl-E' # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc. # Instead, shared libraries are loaded at an image base (0x10000000 by # default) and relocated if they conflict, which is a slow very memory # consuming and fragmenting process. To avoid this, we pick a random, # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link # time. Moving up from 0x10000000 also allows more sbrk(2) space. - archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' - 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' + archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-h,$soname $wl--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' + 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' ;; gnu* | linux* | tpf* | k*bsd*-gnu | kopensolaris*-gnu) tmp_diet=no - if test "$host_os" = linux-dietlibc; then + if test linux-dietlibc = "$host_os"; then case $cc_basename in diet\ *) tmp_diet=yes;; # linux-dietlibc with static linking (!diet-dyn) esac fi if $LD --help 2>&1 | $EGREP ': supported targets:.* elf' > /dev/null \ - && test "$tmp_diet" = no + && test no = "$tmp_diet" then tmp_addflag=' $pic_flag' tmp_sharedflag='-shared' case $cc_basename,$host_cpu in pgcc*) # Portland Group C compiler - whole_archive_flag_spec='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' + whole_archive_flag_spec='$wl--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` $wl--no-whole-archive' tmp_addflag=' $pic_flag' ;; pgf77* | pgf90* | pgf95* | pgfortran*) # Portland Group f77 and f90 compilers - whole_archive_flag_spec='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' + whole_archive_flag_spec='$wl--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` $wl--no-whole-archive' tmp_addflag=' $pic_flag -Mnomain' ;; ecc*,ia64* | icc*,ia64*) # Intel C compiler on ia64 tmp_addflag=' -i_dynamic' ;; @@ -9984,42 +10771,47 @@ lf95*) # Lahey Fortran 8.1 whole_archive_flag_spec= tmp_sharedflag='--shared' ;; + nagfor*) # NAGFOR 5.3 + tmp_sharedflag='-Wl,-shared' ;; xl[cC]* | bgxl[cC]* | mpixl[cC]*) # IBM XL C 8.0 on PPC (deal with xlf below) tmp_sharedflag='-qmkshrobj' tmp_addflag= ;; nvcc*) # Cuda Compiler Driver 2.2 - whole_archive_flag_spec='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' + whole_archive_flag_spec='$wl--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` $wl--no-whole-archive' compiler_needs_object=yes ;; esac case `$CC -V 2>&1 | sed 5q` in *Sun\ C*) # Sun C 5.9 - whole_archive_flag_spec='${wl}--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' + whole_archive_flag_spec='$wl--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` $wl--no-whole-archive' compiler_needs_object=yes tmp_sharedflag='-G' ;; *Sun\ F*) # Sun Fortran 8.3 tmp_sharedflag='-G' ;; esac - archive_cmds='$CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + archive_cmds='$CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' - if test "x$supports_anon_versioning" = xyes; then + if test yes = "$supports_anon_versioning"; then archive_expsym_cmds='echo "{ global:" > $output_objdir/$libname.ver~ - cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ - echo "local: *; };" >> $output_objdir/$libname.ver~ - $CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script ${wl}$output_objdir/$libname.ver -o $lib' + cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ + echo "local: *; };" >> $output_objdir/$libname.ver~ + $CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-version-script $wl$output_objdir/$libname.ver -o $lib' fi case $cc_basename in + tcc*) + export_dynamic_flag_spec='-rdynamic' + ;; xlf* | bgf* | bgxlf* | mpixlf*) # IBM XL Fortran 10.1 on PPC cannot create shared libs itself whole_archive_flag_spec='--whole-archive$convenience --no-whole-archive' - hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' + hardcode_libdir_flag_spec='$wl-rpath $wl$libdir' archive_cmds='$LD -shared $libobjs $deplibs $linker_flags -soname $soname -o $lib' - if test "x$supports_anon_versioning" = xyes; then + if test yes = "$supports_anon_versioning"; then archive_expsym_cmds='echo "{ global:" > $output_objdir/$libname.ver~ - cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ - echo "local: *; };" >> $output_objdir/$libname.ver~ - $LD -shared $libobjs $deplibs $linker_flags -soname $soname -version-script $output_objdir/$libname.ver -o $lib' + cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ + echo "local: *; };" >> $output_objdir/$libname.ver~ + $LD -shared $libobjs $deplibs $linker_flags -soname $soname -version-script $output_objdir/$libname.ver -o $lib' fi ;; esac @@ -10033,8 +10825,8 @@ archive_cmds='$LD -Bshareable $libobjs $deplibs $linker_flags -o $lib' wlarc= else - archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' - archive_expsym_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' + archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' + archive_expsym_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' fi ;; @@ -10052,8 +10844,8 @@ _LT_EOF elif $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then - archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' - archive_expsym_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' + archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' + archive_expsym_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' else ld_shlibs=no fi @@ -10065,7 +10857,7 @@ ld_shlibs=no cat <<_LT_EOF 1>&2 -*** Warning: Releases of the GNU linker prior to 2.16.91.0.3 can not +*** Warning: Releases of the GNU linker prior to 2.16.91.0.3 cannot *** reliably create shared libraries on SCO systems. Therefore, libtool *** is disabling shared libraries support. We urge you to upgrade GNU *** binutils to release 2.16.91.0.3 or newer. Another option is to modify @@ -10080,9 +10872,9 @@ # DT_RUNPATH tag from executables and libraries. But doing so # requires that you compile everything twice, which is a pain. if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then - hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' - archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' - archive_expsym_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' + hardcode_libdir_flag_spec='$wl-rpath $wl$libdir' + archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' + archive_expsym_cmds='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' else ld_shlibs=no fi @@ -10099,15 +10891,15 @@ *) if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then - archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' - archive_expsym_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' + archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' + archive_expsym_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' else ld_shlibs=no fi ;; esac - if test "$ld_shlibs" = no; then + if test no = "$ld_shlibs"; then runpath_var= hardcode_libdir_flag_spec= export_dynamic_flag_spec= @@ -10123,7 +10915,7 @@ # Note: this linker hardcodes the directories in LIBPATH if there # are no directories specified by -L. hardcode_minus_L=yes - if test "$GCC" = yes && test -z "$lt_prog_compiler_static"; then + if test yes = "$GCC" && test -z "$lt_prog_compiler_static"; then # Neither direct hardcoding nor static linking is supported with a # broken collect2. hardcode_direct=unsupported @@ -10131,34 +10923,57 @@ ;; aix[4-9]*) - if test "$host_cpu" = ia64; then + if test ia64 = "$host_cpu"; then # On IA64, the linker does run time linking by default, so we don't # have to do anything special. aix_use_runtimelinking=no exp_sym_flag='-Bexport' - no_entry_flag="" + no_entry_flag= else # If we're using GNU nm, then we don't want the "-C" option. - # -C means demangle to AIX nm, but means don't demangle with GNU nm - # Also, AIX nm treats weak defined symbols like other global - # defined symbols, whereas GNU nm marks them as "W". + # -C means demangle to GNU nm, but means don't demangle to AIX nm. + # Without the "-l" option, or with the "-B" option, AIX nm treats + # weak defined symbols like other global defined symbols, whereas + # GNU nm marks them as "W". + # While the 'weak' keyword is ignored in the Export File, we need + # it in the Import File for the 'aix-soname' feature, so we have + # to replace the "-B" option with "-P" for AIX nm. if $NM -V 2>&1 | $GREP 'GNU' > /dev/null; then - export_symbols_cmds='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W")) && (substr(\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols' + export_symbols_cmds='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W")) && (substr(\$ 3,1,1) != ".")) { if (\$ 2 == "W") { print \$ 3 " weak" } else { print \$ 3 } } }'\'' | sort -u > $export_symbols' else - export_symbols_cmds='$NM -BCpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B")) && (substr(\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols' + export_symbols_cmds='`func_echo_all $NM | $SED -e '\''s/B\([^B]*\)$/P\1/'\''` -PCpgl $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W") || (\$ 2 == "V") || (\$ 2 == "Z")) && (substr(\$ 1,1,1) != ".")) { if ((\$ 2 == "W") || (\$ 2 == "V") || (\$ 2 == "Z")) { print \$ 1 " weak" } else { print \$ 1 } } }'\'' | sort -u > $export_symbols' fi aix_use_runtimelinking=no # Test if we are trying to use run time linking or normal # AIX style linking. If -brtl is somewhere in LDFLAGS, we - # need to do runtime linking. + # have runtime linking enabled, and use it for executables. + # For shared libraries, we enable/disable runtime linking + # depending on the kind of the shared library created - + # when "with_aix_soname,aix_use_runtimelinking" is: + # "aix,no" lib.a(lib.so.V) shared, rtl:no, for executables + # "aix,yes" lib.so shared, rtl:yes, for executables + # lib.a static archive + # "both,no" lib.so.V(shr.o) shared, rtl:yes + # lib.a(lib.so.V) shared, rtl:no, for executables + # "both,yes" lib.so.V(shr.o) shared, rtl:yes, for executables + # lib.a(lib.so.V) shared, rtl:no + # "svr4,*" lib.so.V(shr.o) shared, rtl:yes, for executables + # lib.a static archive case $host_os in aix4.[23]|aix4.[23].*|aix[5-9]*) for ld_flag in $LDFLAGS; do - if (test $ld_flag = "-brtl" || test $ld_flag = "-Wl,-brtl"); then + if (test x-brtl = "x$ld_flag" || test x-Wl,-brtl = "x$ld_flag"); then aix_use_runtimelinking=yes break fi done + if test svr4,no = "$with_aix_soname,$aix_use_runtimelinking"; then + # With aix-soname=svr4, we create the lib.so.V shared archives only, + # so we don't have lib.a shared libs to link our executables. + # We have to force runtime linking in this case. + aix_use_runtimelinking=yes + LDFLAGS="$LDFLAGS -Wl,-brtl" + fi ;; esac @@ -10177,13 +10992,21 @@ hardcode_direct_absolute=yes hardcode_libdir_separator=':' link_all_deplibs=yes - file_list_spec='${wl}-f,' + file_list_spec='$wl-f,' + case $with_aix_soname,$aix_use_runtimelinking in + aix,*) ;; # traditional, no import file + svr4,* | *,yes) # use import file + # The Import File defines what to hardcode. + hardcode_direct=no + hardcode_direct_absolute=no + ;; + esac - if test "$GCC" = yes; then + if test yes = "$GCC"; then case $host_os in aix4.[012]|aix4.[012].*) # We only want to do this on AIX 4.2 and lower, the check # below for broken collect2 doesn't work under 4.3+ - collect2name=`${CC} -print-prog-name=collect2` + collect2name=`$CC -print-prog-name=collect2` if test -f "$collect2name" && strings "$collect2name" | $GREP resolve_lib_name >/dev/null then @@ -10202,36 +11025,42 @@ ;; esac shared_flag='-shared' - if test "$aix_use_runtimelinking" = yes; then - shared_flag="$shared_flag "'${wl}-G' + if test yes = "$aix_use_runtimelinking"; then + shared_flag="$shared_flag "'$wl-G' fi - link_all_deplibs=no + # Need to ensure runtime linking is disabled for the traditional + # shared library, or the linker may eventually find shared libraries + # /with/ Import File - we do not want to mix them. + shared_flag_aix='-shared' + shared_flag_svr4='-shared $wl-G' else # not using gcc - if test "$host_cpu" = ia64; then + if test ia64 = "$host_cpu"; then # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release # chokes on -Wl,-G. The following line is correct: shared_flag='-G' else - if test "$aix_use_runtimelinking" = yes; then - shared_flag='${wl}-G' + if test yes = "$aix_use_runtimelinking"; then + shared_flag='$wl-G' else - shared_flag='${wl}-bM:SRE' + shared_flag='$wl-bM:SRE' fi + shared_flag_aix='$wl-bM:SRE' + shared_flag_svr4='$wl-G' fi fi - export_dynamic_flag_spec='${wl}-bexpall' + export_dynamic_flag_spec='$wl-bexpall' # It seems that -bexpall does not export symbols beginning with # underscore (_), so it is better to generate a list of symbols to export. always_export_symbols=yes - if test "$aix_use_runtimelinking" = yes; then + if test aix,yes = "$with_aix_soname,$aix_use_runtimelinking"; then # Warning - without using the other runtime loading flags (-brtl), # -berok will link without error, but may produce a broken library. allow_undefined_flag='-berok' # Determine the default libpath from the value encoded in an # empty executable. - if test "${lt_cv_aix_libpath+set}" = set; then + if test set = "${lt_cv_aix_libpath+set}"; then aix_libpath=$lt_cv_aix_libpath else if ${lt_cv_aix_libpath_+:} false; then : @@ -10266,7 +11095,7 @@ rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext if test -z "$lt_cv_aix_libpath_"; then - lt_cv_aix_libpath_="/usr/lib:/lib" + lt_cv_aix_libpath_=/usr/lib:/lib fi fi @@ -10274,17 +11103,17 @@ aix_libpath=$lt_cv_aix_libpath_ fi - hardcode_libdir_flag_spec='${wl}-blibpath:$libdir:'"$aix_libpath" - archive_expsym_cmds='$CC -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then func_echo_all "${wl}${allow_undefined_flag}"; else :; fi` '"\${wl}$exp_sym_flag:\$export_symbols $shared_flag" + hardcode_libdir_flag_spec='$wl-blibpath:$libdir:'"$aix_libpath" + archive_expsym_cmds='$CC -o $output_objdir/$soname $libobjs $deplibs $wl'$no_entry_flag' $compiler_flags `if test -n "$allow_undefined_flag"; then func_echo_all "$wl$allow_undefined_flag"; else :; fi` $wl'$exp_sym_flag:\$export_symbols' '$shared_flag else - if test "$host_cpu" = ia64; then - hardcode_libdir_flag_spec='${wl}-R $libdir:/usr/lib:/lib' + if test ia64 = "$host_cpu"; then + hardcode_libdir_flag_spec='$wl-R $libdir:/usr/lib:/lib' allow_undefined_flag="-z nodefs" - archive_expsym_cmds="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags ${wl}${allow_undefined_flag} '"\${wl}$exp_sym_flag:\$export_symbols" + archive_expsym_cmds="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\$wl$no_entry_flag"' $compiler_flags $wl$allow_undefined_flag '"\$wl$exp_sym_flag:\$export_symbols" else # Determine the default libpath from the value encoded in an # empty executable. - if test "${lt_cv_aix_libpath+set}" = set; then + if test set = "${lt_cv_aix_libpath+set}"; then aix_libpath=$lt_cv_aix_libpath else if ${lt_cv_aix_libpath_+:} false; then : @@ -10319,7 +11148,7 @@ rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext if test -z "$lt_cv_aix_libpath_"; then - lt_cv_aix_libpath_="/usr/lib:/lib" + lt_cv_aix_libpath_=/usr/lib:/lib fi fi @@ -10327,21 +11156,33 @@ aix_libpath=$lt_cv_aix_libpath_ fi - hardcode_libdir_flag_spec='${wl}-blibpath:$libdir:'"$aix_libpath" + hardcode_libdir_flag_spec='$wl-blibpath:$libdir:'"$aix_libpath" # Warning - without using the other run time loading flags, # -berok will link without error, but may produce a broken library. - no_undefined_flag=' ${wl}-bernotok' - allow_undefined_flag=' ${wl}-berok' - if test "$with_gnu_ld" = yes; then + no_undefined_flag=' $wl-bernotok' + allow_undefined_flag=' $wl-berok' + if test yes = "$with_gnu_ld"; then # We only use this code for GNU lds that support --whole-archive. - whole_archive_flag_spec='${wl}--whole-archive$convenience ${wl}--no-whole-archive' + whole_archive_flag_spec='$wl--whole-archive$convenience $wl--no-whole-archive' else # Exported symbols can be pulled into shared objects from archives whole_archive_flag_spec='$convenience' fi archive_cmds_need_lc=yes - # This is similar to how AIX traditionally builds its shared libraries. - archive_expsym_cmds="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs ${wl}-bnoentry $compiler_flags ${wl}-bE:$export_symbols${allow_undefined_flag}~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$soname' + archive_expsym_cmds='$RM -r $output_objdir/$realname.d~$MKDIR $output_objdir/$realname.d' + # -brtl affects multiple linker settings, -berok does not and is overridden later + compiler_flags_filtered='`func_echo_all "$compiler_flags " | $SED -e "s%-brtl\\([, ]\\)%-berok\\1%g"`' + if test svr4 != "$with_aix_soname"; then + # This is similar to how AIX traditionally builds its shared libraries. + archive_expsym_cmds="$archive_expsym_cmds"'~$CC '$shared_flag_aix' -o $output_objdir/$realname.d/$soname $libobjs $deplibs $wl-bnoentry '$compiler_flags_filtered'$wl-bE:$export_symbols$allow_undefined_flag~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$realname.d/$soname' + fi + if test aix != "$with_aix_soname"; then + archive_expsym_cmds="$archive_expsym_cmds"'~$CC '$shared_flag_svr4' -o $output_objdir/$realname.d/$shared_archive_member_spec.o $libobjs $deplibs $wl-bnoentry '$compiler_flags_filtered'$wl-bE:$export_symbols$allow_undefined_flag~$STRIP -e $output_objdir/$realname.d/$shared_archive_member_spec.o~( func_echo_all "#! $soname($shared_archive_member_spec.o)"; if test shr_64 = "$shared_archive_member_spec"; then func_echo_all "# 64"; else func_echo_all "# 32"; fi; cat $export_symbols ) > $output_objdir/$realname.d/$shared_archive_member_spec.imp~$AR $AR_FLAGS $output_objdir/$soname $output_objdir/$realname.d/$shared_archive_member_spec.o $output_objdir/$realname.d/$shared_archive_member_spec.imp' + else + # used by -dlpreopen to get the symbols + archive_expsym_cmds="$archive_expsym_cmds"'~$MV $output_objdir/$realname.d/$soname $output_objdir' + fi + archive_expsym_cmds="$archive_expsym_cmds"'~$RM -r $output_objdir/$realname.d' fi fi ;; @@ -10350,7 +11191,7 @@ case $host_cpu in powerpc) # see comment about AmigaOS4 .so support - archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' archive_expsym_cmds='' ;; m68k) @@ -10380,16 +11221,17 @@ # Tell ltmain to make .lib files, not .a files. libext=lib # Tell ltmain to make .dll files, not .so files. - shrext_cmds=".dll" + shrext_cmds=.dll # FIXME: Setting linknames here is a bad hack. - archive_cmds='$CC -o $output_objdir/$soname $libobjs $compiler_flags $deplibs -Wl,-dll~linknames=' - archive_expsym_cmds='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then - sed -n -e 's/\\\\\\\(.*\\\\\\\)/-link\\\ -EXPORT:\\\\\\\1/' -e '1\\\!p' < $export_symbols > $output_objdir/$soname.exp; - else - sed -e 's/\\\\\\\(.*\\\\\\\)/-link\\\ -EXPORT:\\\\\\\1/' < $export_symbols > $output_objdir/$soname.exp; - fi~ - $CC -o $tool_output_objdir$soname $libobjs $compiler_flags $deplibs "@$tool_output_objdir$soname.exp" -Wl,-DLL,-IMPLIB:"$tool_output_objdir$libname.dll.lib"~ - linknames=' + archive_cmds='$CC -o $output_objdir/$soname $libobjs $compiler_flags $deplibs -Wl,-DLL,-IMPLIB:"$tool_output_objdir$libname.dll.lib"~linknames=' + archive_expsym_cmds='if test DEF = "`$SED -n -e '\''s/^[ ]*//'\'' -e '\''/^\(;.*\)*$/d'\'' -e '\''s/^\(EXPORTS\|LIBRARY\)\([ ].*\)*$/DEF/p'\'' -e q $export_symbols`" ; then + cp "$export_symbols" "$output_objdir/$soname.def"; + echo "$tool_output_objdir$soname.def" > "$output_objdir/$soname.exp"; + else + $SED -e '\''s/^/-link -EXPORT:/'\'' < $export_symbols > $output_objdir/$soname.exp; + fi~ + $CC -o $tool_output_objdir$soname $libobjs $compiler_flags $deplibs "@$tool_output_objdir$soname.exp" -Wl,-DLL,-IMPLIB:"$tool_output_objdir$libname.dll.lib"~ + linknames=' # The linker will not automatically build a static lib if we build a DLL. # _LT_TAGVAR(old_archive_from_new_cmds, )='true' enable_shared_with_static_runtimes=yes @@ -10398,18 +11240,18 @@ # Don't use ranlib old_postinstall_cmds='chmod 644 $oldlib' postlink_cmds='lt_outputfile="@OUTPUT@"~ - lt_tool_outputfile="@TOOL_OUTPUT@"~ - case $lt_outputfile in - *.exe|*.EXE) ;; - *) - lt_outputfile="$lt_outputfile.exe" - lt_tool_outputfile="$lt_tool_outputfile.exe" - ;; - esac~ - if test "$MANIFEST_TOOL" != ":" && test -f "$lt_outputfile.manifest"; then - $MANIFEST_TOOL -manifest "$lt_tool_outputfile.manifest" -outputresource:"$lt_tool_outputfile" || exit 1; - $RM "$lt_outputfile.manifest"; - fi' + lt_tool_outputfile="@TOOL_OUTPUT@"~ + case $lt_outputfile in + *.exe|*.EXE) ;; + *) + lt_outputfile=$lt_outputfile.exe + lt_tool_outputfile=$lt_tool_outputfile.exe + ;; + esac~ + if test : != "$MANIFEST_TOOL" && test -f "$lt_outputfile.manifest"; then + $MANIFEST_TOOL -manifest "$lt_tool_outputfile.manifest" -outputresource:"$lt_tool_outputfile" || exit 1; + $RM "$lt_outputfile.manifest"; + fi' ;; *) # Assume MSVC wrapper @@ -10418,7 +11260,7 @@ # Tell ltmain to make .lib files, not .a files. libext=lib # Tell ltmain to make .dll files, not .so files. - shrext_cmds=".dll" + shrext_cmds=.dll # FIXME: Setting linknames here is a bad hack. archive_cmds='$CC -o $lib $libobjs $compiler_flags `func_echo_all "$deplibs" | $SED '\''s/ -lc$//'\''` -link -dll~linknames=' # The linker will automatically build a .lib file if we build a DLL. @@ -10437,24 +11279,24 @@ hardcode_direct=no hardcode_automatic=yes hardcode_shlibpath_var=unsupported - if test "$lt_cv_ld_force_load" = "yes"; then - whole_archive_flag_spec='`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience ${wl}-force_load,$conv\"; done; func_echo_all \"$new_convenience\"`' + if test yes = "$lt_cv_ld_force_load"; then + whole_archive_flag_spec='`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience $wl-force_load,$conv\"; done; func_echo_all \"$new_convenience\"`' else whole_archive_flag_spec='' fi link_all_deplibs=yes - allow_undefined_flag="$_lt_dar_allow_undefined" + allow_undefined_flag=$_lt_dar_allow_undefined case $cc_basename in - ifort*) _lt_dar_can_shared=yes ;; + ifort*|nagfor*) _lt_dar_can_shared=yes ;; *) _lt_dar_can_shared=$GCC ;; esac - if test "$_lt_dar_can_shared" = "yes"; then + if test yes = "$_lt_dar_can_shared"; then output_verbose_link_cmd=func_echo_all - archive_cmds="\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring $_lt_dar_single_mod${_lt_dsymutil}" - module_cmds="\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dsymutil}" - archive_expsym_cmds="sed 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring ${_lt_dar_single_mod}${_lt_dar_export_syms}${_lt_dsymutil}" - module_expsym_cmds="sed -e 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dar_export_syms}${_lt_dsymutil}" + archive_cmds="\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring $_lt_dar_single_mod$_lt_dsymutil" + module_cmds="\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags$_lt_dsymutil" + archive_expsym_cmds="sed 's|^|_|' < \$export_symbols > \$output_objdir/\$libname-symbols.expsym~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring $_lt_dar_single_mod$_lt_dar_export_syms$_lt_dsymutil" + module_expsym_cmds="sed -e 's|^|_|' < \$export_symbols > \$output_objdir/\$libname-symbols.expsym~\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags$_lt_dar_export_syms$_lt_dsymutil" else ld_shlibs=no @@ -10496,33 +11338,33 @@ ;; hpux9*) - if test "$GCC" = yes; then - archive_cmds='$RM $output_objdir/$soname~$CC -shared $pic_flag ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $libobjs $deplibs $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' + if test yes = "$GCC"; then + archive_cmds='$RM $output_objdir/$soname~$CC -shared $pic_flag $wl+b $wl$install_libdir -o $output_objdir/$soname $libobjs $deplibs $compiler_flags~test "x$output_objdir/$soname" = "x$lib" || mv $output_objdir/$soname $lib' else - archive_cmds='$RM $output_objdir/$soname~$LD -b +b $install_libdir -o $output_objdir/$soname $libobjs $deplibs $linker_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' + archive_cmds='$RM $output_objdir/$soname~$LD -b +b $install_libdir -o $output_objdir/$soname $libobjs $deplibs $linker_flags~test "x$output_objdir/$soname" = "x$lib" || mv $output_objdir/$soname $lib' fi - hardcode_libdir_flag_spec='${wl}+b ${wl}$libdir' + hardcode_libdir_flag_spec='$wl+b $wl$libdir' hardcode_libdir_separator=: hardcode_direct=yes # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. hardcode_minus_L=yes - export_dynamic_flag_spec='${wl}-E' + export_dynamic_flag_spec='$wl-E' ;; hpux10*) - if test "$GCC" = yes && test "$with_gnu_ld" = no; then - archive_cmds='$CC -shared $pic_flag ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' + if test yes,no = "$GCC,$with_gnu_ld"; then + archive_cmds='$CC -shared $pic_flag $wl+h $wl$soname $wl+b $wl$install_libdir -o $lib $libobjs $deplibs $compiler_flags' else archive_cmds='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags' fi - if test "$with_gnu_ld" = no; then - hardcode_libdir_flag_spec='${wl}+b ${wl}$libdir' + if test no = "$with_gnu_ld"; then + hardcode_libdir_flag_spec='$wl+b $wl$libdir' hardcode_libdir_separator=: hardcode_direct=yes hardcode_direct_absolute=yes - export_dynamic_flag_spec='${wl}-E' + export_dynamic_flag_spec='$wl-E' # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. hardcode_minus_L=yes @@ -10530,25 +11372,25 @@ ;; hpux11*) - if test "$GCC" = yes && test "$with_gnu_ld" = no; then + if test yes,no = "$GCC,$with_gnu_ld"; then case $host_cpu in hppa*64*) - archive_cmds='$CC -shared ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' + archive_cmds='$CC -shared $wl+h $wl$soname -o $lib $libobjs $deplibs $compiler_flags' ;; ia64*) - archive_cmds='$CC -shared $pic_flag ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' + archive_cmds='$CC -shared $pic_flag $wl+h $wl$soname $wl+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' ;; *) - archive_cmds='$CC -shared $pic_flag ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' + archive_cmds='$CC -shared $pic_flag $wl+h $wl$soname $wl+b $wl$install_libdir -o $lib $libobjs $deplibs $compiler_flags' ;; esac else case $host_cpu in hppa*64*) - archive_cmds='$CC -b ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' + archive_cmds='$CC -b $wl+h $wl$soname -o $lib $libobjs $deplibs $compiler_flags' ;; ia64*) - archive_cmds='$CC -b ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' + archive_cmds='$CC -b $wl+h $wl$soname $wl+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' ;; *) @@ -10560,7 +11402,7 @@ $as_echo_n "(cached) " >&6 else lt_cv_prog_compiler__b=no - save_LDFLAGS="$LDFLAGS" + save_LDFLAGS=$LDFLAGS LDFLAGS="$LDFLAGS -b" echo "$lt_simple_link_test_code" > conftest.$ac_ext if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then @@ -10579,14 +11421,14 @@ fi fi $RM -r conftest* - LDFLAGS="$save_LDFLAGS" + LDFLAGS=$save_LDFLAGS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler__b" >&5 $as_echo "$lt_cv_prog_compiler__b" >&6; } -if test x"$lt_cv_prog_compiler__b" = xyes; then - archive_cmds='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' +if test yes = "$lt_cv_prog_compiler__b"; then + archive_cmds='$CC -b $wl+h $wl$soname $wl+b $wl$install_libdir -o $lib $libobjs $deplibs $compiler_flags' else archive_cmds='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags' fi @@ -10594,8 +11436,8 @@ ;; esac fi - if test "$with_gnu_ld" = no; then - hardcode_libdir_flag_spec='${wl}+b ${wl}$libdir' + if test no = "$with_gnu_ld"; then + hardcode_libdir_flag_spec='$wl+b $wl$libdir' hardcode_libdir_separator=: case $host_cpu in @@ -10606,7 +11448,7 @@ *) hardcode_direct=yes hardcode_direct_absolute=yes - export_dynamic_flag_spec='${wl}-E' + export_dynamic_flag_spec='$wl-E' # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. @@ -10617,8 +11459,8 @@ ;; irix5* | irix6* | nonstopux*) - if test "$GCC" = yes; then - archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' + if test yes = "$GCC"; then + archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations -o $lib' # Try to use the -exported_symbol ld option, if it does not # work, assume that -exports_file does not work either and # implicitly export all symbols. @@ -10628,8 +11470,8 @@ if ${lt_cv_irix_exported_symbol+:} false; then : $as_echo_n "(cached) " >&6 else - save_LDFLAGS="$LDFLAGS" - LDFLAGS="$LDFLAGS -shared ${wl}-exported_symbol ${wl}foo ${wl}-update_registry ${wl}/dev/null" + save_LDFLAGS=$LDFLAGS + LDFLAGS="$LDFLAGS -shared $wl-exported_symbol ${wl}foo $wl-update_registry $wl/dev/null" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int foo (void) { return 0; } @@ -10641,24 +11483,35 @@ fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext - LDFLAGS="$save_LDFLAGS" + LDFLAGS=$save_LDFLAGS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_irix_exported_symbol" >&5 $as_echo "$lt_cv_irix_exported_symbol" >&6; } - if test "$lt_cv_irix_exported_symbol" = yes; then - archive_expsym_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations ${wl}-exports_file ${wl}$export_symbols -o $lib' + if test yes = "$lt_cv_irix_exported_symbol"; then + archive_expsym_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations $wl-exports_file $wl$export_symbols -o $lib' fi + link_all_deplibs=no else - archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' - archive_expsym_cmds='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -exports_file $export_symbols -o $lib' + archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib' + archive_expsym_cmds='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -exports_file $export_symbols -o $lib' fi archive_cmds_need_lc='no' - hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' + hardcode_libdir_flag_spec='$wl-rpath $wl$libdir' hardcode_libdir_separator=: inherit_rpath=yes link_all_deplibs=yes ;; + linux*) + case $cc_basename in + tcc*) + # Fabrice Bellard et al's Tiny C Compiler + ld_shlibs=yes + archive_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' + ;; + esac + ;; + netbsd* | netbsdelf*-gnu) if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' # a.out @@ -10673,7 +11526,7 @@ newsos6) archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_direct=yes - hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' + hardcode_libdir_flag_spec='$wl-rpath $wl$libdir' hardcode_libdir_separator=: hardcode_shlibpath_var=no ;; @@ -10681,27 +11534,19 @@ *nto* | *qnx*) ;; - openbsd*) + openbsd* | bitrig*) if test -f /usr/libexec/ld.so; then hardcode_direct=yes hardcode_shlibpath_var=no hardcode_direct_absolute=yes - if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then + if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`"; then archive_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' - archive_expsym_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-retain-symbols-file,$export_symbols' - hardcode_libdir_flag_spec='${wl}-rpath,$libdir' - export_dynamic_flag_spec='${wl}-E' + archive_expsym_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags $wl-retain-symbols-file,$export_symbols' + hardcode_libdir_flag_spec='$wl-rpath,$libdir' + export_dynamic_flag_spec='$wl-E' else - case $host_os in - openbsd[01].* | openbsd2.[0-7] | openbsd2.[0-7].*) - archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' - hardcode_libdir_flag_spec='-R$libdir' - ;; - *) - archive_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' - hardcode_libdir_flag_spec='${wl}-rpath,$libdir' - ;; - esac + archive_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' + hardcode_libdir_flag_spec='$wl-rpath,$libdir' fi else ld_shlibs=no @@ -10712,33 +11557,53 @@ hardcode_libdir_flag_spec='-L$libdir' hardcode_minus_L=yes allow_undefined_flag=unsupported - archive_cmds='$ECHO "LIBRARY $libname INITINSTANCE" > $output_objdir/$libname.def~$ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~echo DATA >> $output_objdir/$libname.def~echo " SINGLE NONSHARED" >> $output_objdir/$libname.def~echo EXPORTS >> $output_objdir/$libname.def~emxexp $libobjs >> $output_objdir/$libname.def~$CC -Zdll -Zcrtdll -o $lib $libobjs $deplibs $compiler_flags $output_objdir/$libname.def' - old_archive_from_new_cmds='emximp -o $output_objdir/$libname.a $output_objdir/$libname.def' + shrext_cmds=.dll + archive_cmds='$ECHO "LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE" > $output_objdir/$libname.def~ + $ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~ + $ECHO "DATA MULTIPLE NONSHARED" >> $output_objdir/$libname.def~ + $ECHO EXPORTS >> $output_objdir/$libname.def~ + emxexp $libobjs | $SED /"_DLL_InitTerm"/d >> $output_objdir/$libname.def~ + $CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~ + emximp -o $lib $output_objdir/$libname.def' + archive_expsym_cmds='$ECHO "LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE" > $output_objdir/$libname.def~ + $ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~ + $ECHO "DATA MULTIPLE NONSHARED" >> $output_objdir/$libname.def~ + $ECHO EXPORTS >> $output_objdir/$libname.def~ + prefix_cmds="$SED"~ + if test EXPORTS = "`$SED 1q $export_symbols`"; then + prefix_cmds="$prefix_cmds -e 1d"; + fi~ + prefix_cmds="$prefix_cmds -e \"s/^\(.*\)$/_\1/g\""~ + cat $export_symbols | $prefix_cmds >> $output_objdir/$libname.def~ + $CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~ + emximp -o $lib $output_objdir/$libname.def' + old_archive_From_new_cmds='emximp -o $output_objdir/${libname}_dll.a $output_objdir/$libname.def' + enable_shared_with_static_runtimes=yes ;; osf3*) - if test "$GCC" = yes; then - allow_undefined_flag=' ${wl}-expect_unresolved ${wl}\*' - archive_cmds='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' + if test yes = "$GCC"; then + allow_undefined_flag=' $wl-expect_unresolved $wl\*' + archive_cmds='$CC -shared$allow_undefined_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations -o $lib' else allow_undefined_flag=' -expect_unresolved \*' - archive_cmds='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' + archive_cmds='$CC -shared$allow_undefined_flag $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib' fi archive_cmds_need_lc='no' - hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' + hardcode_libdir_flag_spec='$wl-rpath $wl$libdir' hardcode_libdir_separator=: ;; osf4* | osf5*) # as osf3* with the addition of -msym flag - if test "$GCC" = yes; then - allow_undefined_flag=' ${wl}-expect_unresolved ${wl}\*' - archive_cmds='$CC -shared${allow_undefined_flag} $pic_flag $libobjs $deplibs $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' - hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' + if test yes = "$GCC"; then + allow_undefined_flag=' $wl-expect_unresolved $wl\*' + archive_cmds='$CC -shared$allow_undefined_flag $pic_flag $libobjs $deplibs $compiler_flags $wl-msym $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations -o $lib' + hardcode_libdir_flag_spec='$wl-rpath $wl$libdir' else allow_undefined_flag=' -expect_unresolved \*' - archive_cmds='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags -msym -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' + archive_cmds='$CC -shared$allow_undefined_flag $libobjs $deplibs $compiler_flags -msym -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib' archive_expsym_cmds='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done; printf "%s\\n" "-hidden">> $lib.exp~ - $CC -shared${allow_undefined_flag} ${wl}-input ${wl}$lib.exp $compiler_flags $libobjs $deplibs -soname $soname `test -n "$verstring" && $ECHO "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib~$RM $lib.exp' + $CC -shared$allow_undefined_flag $wl-input $wl$lib.exp $compiler_flags $libobjs $deplibs -soname $soname `test -n "$verstring" && $ECHO "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib~$RM $lib.exp' # Both c and cxx compiler support -rpath directly hardcode_libdir_flag_spec='-rpath $libdir' @@ -10749,24 +11614,24 @@ solaris*) no_undefined_flag=' -z defs' - if test "$GCC" = yes; then - wlarc='${wl}' - archive_cmds='$CC -shared $pic_flag ${wl}-z ${wl}text ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' + if test yes = "$GCC"; then + wlarc='$wl' + archive_cmds='$CC -shared $pic_flag $wl-z ${wl}text $wl-h $wl$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ - $CC -shared $pic_flag ${wl}-z ${wl}text ${wl}-M ${wl}$lib.exp ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp' + $CC -shared $pic_flag $wl-z ${wl}text $wl-M $wl$lib.exp $wl-h $wl$soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp' else case `$CC -V 2>&1` in *"Compilers 5.0"*) wlarc='' - archive_cmds='$LD -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $linker_flags' + archive_cmds='$LD -G$allow_undefined_flag -h $soname -o $lib $libobjs $deplibs $linker_flags' archive_expsym_cmds='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ - $LD -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $linker_flags~$RM $lib.exp' + $LD -G$allow_undefined_flag -M $lib.exp -h $soname -o $lib $libobjs $deplibs $linker_flags~$RM $lib.exp' ;; *) - wlarc='${wl}' - archive_cmds='$CC -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $compiler_flags' + wlarc='$wl' + archive_cmds='$CC -G$allow_undefined_flag -h $soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ - $CC -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp' + $CC -G$allow_undefined_flag -M $lib.exp -h $soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp' ;; esac fi @@ -10776,11 +11641,11 @@ solaris2.[0-5] | solaris2.[0-5].*) ;; *) # The compiler driver will combine and reorder linker options, - # but understands `-z linker_flag'. GCC discards it without `$wl', + # but understands '-z linker_flag'. GCC discards it without '$wl', # but is careful enough not to reorder. # Supported since Solaris 2.6 (maybe 2.5.1?) - if test "$GCC" = yes; then - whole_archive_flag_spec='${wl}-z ${wl}allextract$convenience ${wl}-z ${wl}defaultextract' + if test yes = "$GCC"; then + whole_archive_flag_spec='$wl-z ${wl}allextract$convenience $wl-z ${wl}defaultextract' else whole_archive_flag_spec='-z allextract$convenience -z defaultextract' fi @@ -10790,10 +11655,10 @@ ;; sunos4*) - if test "x$host_vendor" = xsequent; then + if test sequent = "$host_vendor"; then # Use $CC to link under sequent, because it throws in some extra .o # files that make .init and .fini sections work. - archive_cmds='$CC -G ${wl}-h $soname -o $lib $libobjs $deplibs $compiler_flags' + archive_cmds='$CC -G $wl-h $soname -o $lib $libobjs $deplibs $compiler_flags' else archive_cmds='$LD -assert pure-text -Bstatic -o $lib $libobjs $deplibs $linker_flags' fi @@ -10842,43 +11707,43 @@ ;; sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[01].[10]* | unixware7* | sco3.2v5.0.[024]*) - no_undefined_flag='${wl}-z,text' + no_undefined_flag='$wl-z,text' archive_cmds_need_lc=no hardcode_shlibpath_var=no runpath_var='LD_RUN_PATH' - if test "$GCC" = yes; then - archive_cmds='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - archive_expsym_cmds='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + if test yes = "$GCC"; then + archive_cmds='$CC -shared $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + archive_expsym_cmds='$CC -shared $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' else - archive_cmds='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - archive_expsym_cmds='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + archive_cmds='$CC -G $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + archive_expsym_cmds='$CC -G $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' fi ;; sysv5* | sco3.2v5* | sco5v6*) - # Note: We can NOT use -z defs as we might desire, because we do not + # Note: We CANNOT use -z defs as we might desire, because we do not # link with -lc, and that would cause any symbols used from libc to # always be unresolved, which means just about no library would # ever link correctly. If we're not using GNU ld we use -z text # though, which does catch some bad symbols but isn't as heavy-handed # as -z defs. - no_undefined_flag='${wl}-z,text' - allow_undefined_flag='${wl}-z,nodefs' + no_undefined_flag='$wl-z,text' + allow_undefined_flag='$wl-z,nodefs' archive_cmds_need_lc=no hardcode_shlibpath_var=no - hardcode_libdir_flag_spec='${wl}-R,$libdir' + hardcode_libdir_flag_spec='$wl-R,$libdir' hardcode_libdir_separator=':' link_all_deplibs=yes - export_dynamic_flag_spec='${wl}-Bexport' + export_dynamic_flag_spec='$wl-Bexport' runpath_var='LD_RUN_PATH' - if test "$GCC" = yes; then - archive_cmds='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - archive_expsym_cmds='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + if test yes = "$GCC"; then + archive_cmds='$CC -shared $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + archive_expsym_cmds='$CC -shared $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' else - archive_cmds='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - archive_expsym_cmds='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + archive_cmds='$CC -G $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + archive_expsym_cmds='$CC -G $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' fi ;; @@ -10893,10 +11758,10 @@ ;; esac - if test x$host_vendor = xsni; then + if test sni = "$host_vendor"; then case $host in sysv4 | sysv4.2uw2* | sysv4.3* | sysv5*) - export_dynamic_flag_spec='${wl}-Blargedynsym' + export_dynamic_flag_spec='$wl-Blargedynsym' ;; esac fi @@ -10904,7 +11769,7 @@ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ld_shlibs" >&5 $as_echo "$ld_shlibs" >&6; } -test "$ld_shlibs" = no && can_build_shared=no +test no = "$ld_shlibs" && can_build_shared=no with_gnu_ld=$with_gnu_ld @@ -10930,7 +11795,7 @@ # Assume -lc should be added archive_cmds_need_lc=yes - if test "$enable_shared" = yes && test "$GCC" = yes; then + if test yes,yes = "$GCC,$enable_shared"; then case $archive_cmds in *'~'*) # FIXME: we may have to deal with multi-command sequences. @@ -11145,14 +12010,14 @@ { $as_echo "$as_me:${as_lineno-$LINENO}: checking dynamic linker characteristics" >&5 $as_echo_n "checking dynamic linker characteristics... " >&6; } -if test "$GCC" = yes; then +if test yes = "$GCC"; then case $host_os in - darwin*) lt_awk_arg="/^libraries:/,/LR/" ;; - *) lt_awk_arg="/^libraries:/" ;; + darwin*) lt_awk_arg='/^libraries:/,/LR/' ;; + *) lt_awk_arg='/^libraries:/' ;; esac case $host_os in - mingw* | cegcc*) lt_sed_strip_eq="s,=\([A-Za-z]:\),\1,g" ;; - *) lt_sed_strip_eq="s,=/,/,g" ;; + mingw* | cegcc*) lt_sed_strip_eq='s|=\([A-Za-z]:\)|\1|g' ;; + *) lt_sed_strip_eq='s|=/|/|g' ;; esac lt_search_path_spec=`$CC -print-search-dirs | awk $lt_awk_arg | $SED -e "s/^libraries://" -e $lt_sed_strip_eq` case $lt_search_path_spec in @@ -11168,28 +12033,35 @@ ;; esac # Ok, now we have the path, separated by spaces, we can step through it - # and add multilib dir if necessary. + # and add multilib dir if necessary... lt_tmp_lt_search_path_spec= - lt_multi_os_dir=`$CC $CPPFLAGS $CFLAGS $LDFLAGS -print-multi-os-directory 2>/dev/null` + lt_multi_os_dir=/`$CC $CPPFLAGS $CFLAGS $LDFLAGS -print-multi-os-directory 2>/dev/null` + # ...but if some path component already ends with the multilib dir we assume + # that all is fine and trust -print-search-dirs as is (GCC 4.2? or newer). + case "$lt_multi_os_dir; $lt_search_path_spec " in + "/; "* | "/.; "* | "/./; "* | *"$lt_multi_os_dir "* | *"$lt_multi_os_dir/ "*) + lt_multi_os_dir= + ;; + esac for lt_sys_path in $lt_search_path_spec; do - if test -d "$lt_sys_path/$lt_multi_os_dir"; then - lt_tmp_lt_search_path_spec="$lt_tmp_lt_search_path_spec $lt_sys_path/$lt_multi_os_dir" - else + if test -d "$lt_sys_path$lt_multi_os_dir"; then + lt_tmp_lt_search_path_spec="$lt_tmp_lt_search_path_spec $lt_sys_path$lt_multi_os_dir" + elif test -n "$lt_multi_os_dir"; then test -d "$lt_sys_path" && \ lt_tmp_lt_search_path_spec="$lt_tmp_lt_search_path_spec $lt_sys_path" fi done lt_search_path_spec=`$ECHO "$lt_tmp_lt_search_path_spec" | awk ' -BEGIN {RS=" "; FS="/|\n";} { - lt_foo=""; - lt_count=0; +BEGIN {RS = " "; FS = "/|\n";} { + lt_foo = ""; + lt_count = 0; for (lt_i = NF; lt_i > 0; lt_i--) { if ($lt_i != "" && $lt_i != ".") { if ($lt_i == "..") { lt_count++; } else { if (lt_count == 0) { - lt_foo="/" $lt_i lt_foo; + lt_foo = "/" $lt_i lt_foo; } else { lt_count--; } @@ -11203,7 +12075,7 @@ # for these hosts. case $host_os in mingw* | cegcc*) lt_search_path_spec=`$ECHO "$lt_search_path_spec" |\ - $SED 's,/\([A-Za-z]:\),\1,g'` ;; + $SED 's|/\([A-Za-z]:\)|\1|g'` ;; esac sys_lib_search_path_spec=`$ECHO "$lt_search_path_spec" | $lt_NL2SP` else @@ -11212,7 +12084,7 @@ library_names_spec= libname_spec='lib$name' soname_spec= -shrext_cmds=".so" +shrext_cmds=.so postinstall_cmds= postuninstall_cmds= finish_cmds= @@ -11229,14 +12101,16 @@ # flags to be left without arguments need_version=unknown + + case $host_os in aix3*) version_type=linux # correct to gnu/linux during the next big refactor - library_names_spec='${libname}${release}${shared_ext}$versuffix $libname.a' + library_names_spec='$libname$release$shared_ext$versuffix $libname.a' shlibpath_var=LIBPATH # AIX 3 has no versioning support, so we append a major version to the name. - soname_spec='${libname}${release}${shared_ext}$major' + soname_spec='$libname$release$shared_ext$major' ;; aix[4-9]*) @@ -11244,41 +12118,91 @@ need_lib_prefix=no need_version=no hardcode_into_libs=yes - if test "$host_cpu" = ia64; then + if test ia64 = "$host_cpu"; then # AIX 5 supports IA64 - library_names_spec='${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext}$versuffix $libname${shared_ext}' + library_names_spec='$libname$release$shared_ext$major $libname$release$shared_ext$versuffix $libname$shared_ext' shlibpath_var=LD_LIBRARY_PATH else # With GCC up to 2.95.x, collect2 would create an import file # for dependence libraries. The import file would start with - # the line `#! .'. This would cause the generated library to - # depend on `.', always an invalid library. This was fixed in + # the line '#! .'. This would cause the generated library to + # depend on '.', always an invalid library. This was fixed in # development snapshots of GCC prior to 3.0. case $host_os in aix4 | aix4.[01] | aix4.[01].*) if { echo '#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 97)' echo ' yes ' - echo '#endif'; } | ${CC} -E - | $GREP yes > /dev/null; then + echo '#endif'; } | $CC -E - | $GREP yes > /dev/null; then : else can_build_shared=no fi ;; esac - # AIX (on Power*) has no versioning support, so currently we can not hardcode correct + # Using Import Files as archive members, it is possible to support + # filename-based versioning of shared library archives on AIX. While + # this would work for both with and without runtime linking, it will + # prevent static linking of such archives. So we do filename-based + # shared library versioning with .so extension only, which is used + # when both runtime linking and shared linking is enabled. + # Unfortunately, runtime linking may impact performance, so we do + # not want this to be the default eventually. Also, we use the + # versioned .so libs for executables only if there is the -brtl + # linker flag in LDFLAGS as well, or --with-aix-soname=svr4 only. + # To allow for filename-based versioning support, we need to create + # libNAME.so.V as an archive file, containing: + # *) an Import File, referring to the versioned filename of the + # archive as well as the shared archive member, telling the + # bitwidth (32 or 64) of that shared object, and providing the + # list of exported symbols of that shared object, eventually + # decorated with the 'weak' keyword + # *) the shared object with the F_LOADONLY flag set, to really avoid + # it being seen by the linker. + # At run time we better use the real file rather than another symlink, + # but for link time we create the symlink libNAME.so -> libNAME.so.V + + case $with_aix_soname,$aix_use_runtimelinking in + # AIX (on Power*) has no versioning support, so currently we cannot hardcode correct # soname into executable. Probably we can add versioning support to # collect2, so additional links can be useful in future. - if test "$aix_use_runtimelinking" = yes; then + aix,yes) # traditional libtool + dynamic_linker='AIX unversionable lib.so' # If using run time linking (on AIX 4.2 or later) use lib.so # instead of lib.a to let people know that these are not # typical AIX shared libraries. - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - else + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + ;; + aix,no) # traditional AIX only + dynamic_linker='AIX lib.a(lib.so.V)' # We preserve .a as extension for shared libraries through AIX4.2 # and later when we are not doing run time linking. - library_names_spec='${libname}${release}.a $libname.a' - soname_spec='${libname}${release}${shared_ext}$major' - fi + library_names_spec='$libname$release.a $libname.a' + soname_spec='$libname$release$shared_ext$major' + ;; + svr4,*) # full svr4 only + dynamic_linker="AIX lib.so.V($shared_archive_member_spec.o)" + library_names_spec='$libname$release$shared_ext$major $libname$shared_ext' + # We do not specify a path in Import Files, so LIBPATH fires. + shlibpath_overrides_runpath=yes + ;; + *,yes) # both, prefer svr4 + dynamic_linker="AIX lib.so.V($shared_archive_member_spec.o), lib.a(lib.so.V)" + library_names_spec='$libname$release$shared_ext$major $libname$shared_ext' + # unpreferred sharedlib libNAME.a needs extra handling + postinstall_cmds='test -n "$linkname" || linkname="$realname"~func_stripname "" ".so" "$linkname"~$install_shared_prog "$dir/$func_stripname_result.$libext" "$destdir/$func_stripname_result.$libext"~test -z "$tstripme" || test -z "$striplib" || $striplib "$destdir/$func_stripname_result.$libext"' + postuninstall_cmds='for n in $library_names $old_library; do :; done~func_stripname "" ".so" "$n"~test "$func_stripname_result" = "$n" || func_append rmfiles " $odir/$func_stripname_result.$libext"' + # We do not specify a path in Import Files, so LIBPATH fires. + shlibpath_overrides_runpath=yes + ;; + *,no) # both, prefer aix + dynamic_linker="AIX lib.a(lib.so.V), lib.so.V($shared_archive_member_spec.o)" + library_names_spec='$libname$release.a $libname.a' + soname_spec='$libname$release$shared_ext$major' + # unpreferred sharedlib libNAME.so.V and symlink libNAME.so need extra handling + postinstall_cmds='test -z "$dlname" || $install_shared_prog $dir/$dlname $destdir/$dlname~test -z "$tstripme" || test -z "$striplib" || $striplib $destdir/$dlname~test -n "$linkname" || linkname=$realname~func_stripname "" ".a" "$linkname"~(cd "$destdir" && $LN_S -f $dlname $func_stripname_result.so)' + postuninstall_cmds='test -z "$dlname" || func_append rmfiles " $odir/$dlname"~for n in $old_library $library_names; do :; done~func_stripname "" ".a" "$n"~func_append rmfiles " $odir/$func_stripname_result.so"' + ;; + esac shlibpath_var=LIBPATH fi ;; @@ -11288,18 +12212,18 @@ powerpc) # Since July 2007 AmigaOS4 officially supports .so libraries. # When compiling the executable, add -use-dynld -Lsobjs: to the compileline. - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' ;; m68k) library_names_spec='$libname.ixlibrary $libname.a' # Create ${libname}_ixlibrary.a entries in /sys/libs. - finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`func_echo_all "$lib" | $SED '\''s%^.*/\([^/]*\)\.ixlibrary$%\1%'\''`; test $RM /sys/libs/${libname}_ixlibrary.a; $show "cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a"; cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a || exit 1; done' + finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`func_echo_all "$lib" | $SED '\''s%^.*/\([^/]*\)\.ixlibrary$%\1%'\''`; $RM /sys/libs/${libname}_ixlibrary.a; $show "cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a"; cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a || exit 1; done' ;; esac ;; beos*) - library_names_spec='${libname}${shared_ext}' + library_names_spec='$libname$shared_ext' dynamic_linker="$host_os ld.so" shlibpath_var=LIBRARY_PATH ;; @@ -11307,8 +12231,8 @@ bsdi[45]*) version_type=linux # correct to gnu/linux during the next big refactor need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' finish_cmds='PATH="\$PATH:/sbin" ldconfig $libdir' shlibpath_var=LD_LIBRARY_PATH sys_lib_search_path_spec="/shlib /usr/lib /usr/X11/lib /usr/contrib/lib /lib /usr/local/lib" @@ -11320,7 +12244,7 @@ cygwin* | mingw* | pw32* | cegcc*) version_type=windows - shrext_cmds=".dll" + shrext_cmds=.dll need_version=no need_lib_prefix=no @@ -11329,8 +12253,8 @@ # gcc library_names_spec='$libname.dll.a' # DLL is installed to $(libdir)/../bin by postinstall_cmds - postinstall_cmds='base_file=`basename \${file}`~ - dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i; echo \$dlname'\''`~ + postinstall_cmds='base_file=`basename \$file`~ + dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\$base_file'\''i; echo \$dlname'\''`~ dldir=$destdir/`dirname \$dlpath`~ test -d \$dldir || mkdir -p \$dldir~ $install_prog $dir/$dlname \$dldir/$dlname~ @@ -11346,17 +12270,17 @@ case $host_os in cygwin*) # Cygwin DLLs use 'cyg' prefix rather than 'lib' - soname_spec='`echo ${libname} | sed -e 's/^lib/cyg/'``echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' + soname_spec='`echo $libname | sed -e 's/^lib/cyg/'``echo $release | $SED -e 's/[.]/-/g'`$versuffix$shared_ext' sys_lib_search_path_spec="$sys_lib_search_path_spec /usr/lib/w32api" ;; mingw* | cegcc*) # MinGW DLLs use traditional 'lib' prefix - soname_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' + soname_spec='$libname`echo $release | $SED -e 's/[.]/-/g'`$versuffix$shared_ext' ;; pw32*) # pw32 DLLs use 'pw' prefix rather than 'lib' - library_names_spec='`echo ${libname} | sed -e 's/^lib/pw/'``echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' + library_names_spec='`echo $libname | sed -e 's/^lib/pw/'``echo $release | $SED -e 's/[.]/-/g'`$versuffix$shared_ext' ;; esac dynamic_linker='Win32 ld.exe' @@ -11365,8 +12289,8 @@ *,cl*) # Native MSVC libname_spec='$name' - soname_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' - library_names_spec='${libname}.dll.lib' + soname_spec='$libname`echo $release | $SED -e 's/[.]/-/g'`$versuffix$shared_ext' + library_names_spec='$libname.dll.lib' case $build_os in mingw*) @@ -11393,7 +12317,7 @@ sys_lib_search_path_spec=`cygpath --path --unix "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` ;; *) - sys_lib_search_path_spec="$LIB" + sys_lib_search_path_spec=$LIB if $ECHO "$sys_lib_search_path_spec" | $GREP ';[c-zC-Z]:/' >/dev/null; then # It is most probably a Windows format PATH. sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'` @@ -11406,8 +12330,8 @@ esac # DLL is installed to $(libdir)/../bin by postinstall_cmds - postinstall_cmds='base_file=`basename \${file}`~ - dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i; echo \$dlname'\''`~ + postinstall_cmds='base_file=`basename \$file`~ + dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\$base_file'\''i; echo \$dlname'\''`~ dldir=$destdir/`dirname \$dlpath`~ test -d \$dldir || mkdir -p \$dldir~ $install_prog $dir/$dlname \$dldir/$dlname' @@ -11420,7 +12344,7 @@ *) # Assume MSVC wrapper - library_names_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext} $libname.lib' + library_names_spec='$libname`echo $release | $SED -e 's/[.]/-/g'`$versuffix$shared_ext $libname.lib' dynamic_linker='Win32 ld.exe' ;; esac @@ -11433,8 +12357,8 @@ version_type=darwin need_lib_prefix=no need_version=no - library_names_spec='${libname}${release}${major}$shared_ext ${libname}$shared_ext' - soname_spec='${libname}${release}${major}$shared_ext' + library_names_spec='$libname$release$major$shared_ext $libname$shared_ext' + soname_spec='$libname$release$major$shared_ext' shlibpath_overrides_runpath=yes shlibpath_var=DYLD_LIBRARY_PATH shrext_cmds='`test .$module = .yes && echo .so || echo .dylib`' @@ -11447,8 +12371,8 @@ version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname$shared_ext' - soname_spec='${libname}${release}${shared_ext}$major' + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' shlibpath_var=LD_LIBRARY_PATH ;; @@ -11466,12 +12390,13 @@ version_type=freebsd-$objformat case $version_type in freebsd-elf*) - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' need_version=no need_lib_prefix=no ;; freebsd-*) - library_names_spec='${libname}${release}${shared_ext}$versuffix $libname${shared_ext}$versuffix' + library_names_spec='$libname$release$shared_ext$versuffix $libname$shared_ext$versuffix' need_version=yes ;; esac @@ -11501,10 +12426,10 @@ need_lib_prefix=no need_version=no dynamic_linker="$host_os runtime_loader" - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' shlibpath_var=LIBRARY_PATH - shlibpath_overrides_runpath=yes + shlibpath_overrides_runpath=no sys_lib_dlsearch_path_spec='/boot/home/config/lib /boot/common/lib /boot/system/lib' hardcode_into_libs=yes ;; @@ -11522,14 +12447,15 @@ dynamic_linker="$host_os dld.so" shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - if test "X$HPUX_IA64_MODE" = X32; then + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' + if test 32 = "$HPUX_IA64_MODE"; then sys_lib_search_path_spec="/usr/lib/hpux32 /usr/local/lib/hpux32 /usr/local/lib" + sys_lib_dlsearch_path_spec=/usr/lib/hpux32 else sys_lib_search_path_spec="/usr/lib/hpux64 /usr/local/lib/hpux64" + sys_lib_dlsearch_path_spec=/usr/lib/hpux64 fi - sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec ;; hppa*64*) shrext_cmds='.sl' @@ -11537,8 +12463,8 @@ dynamic_linker="$host_os dld.sl" shlibpath_var=LD_LIBRARY_PATH # How should we handle SHLIB_PATH shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' sys_lib_search_path_spec="/usr/lib/pa20_64 /usr/ccs/lib/pa20_64" sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec ;; @@ -11547,8 +12473,8 @@ dynamic_linker="$host_os dld.sl" shlibpath_var=SHLIB_PATH shlibpath_overrides_runpath=no # +s is required to enable SHLIB_PATH - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' ;; esac # HP-UX runs *really* slowly unless shared libraries are mode 555, ... @@ -11561,8 +12487,8 @@ version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' dynamic_linker='Interix 3.x ld.so.1 (PE, like ELF)' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no @@ -11573,7 +12499,7 @@ case $host_os in nonstopux*) version_type=nonstopux ;; *) - if test "$lt_cv_prog_gnu_ld" = yes; then + if test yes = "$lt_cv_prog_gnu_ld"; then version_type=linux # correct to gnu/linux during the next big refactor else version_type=irix @@ -11581,8 +12507,8 @@ esac need_lib_prefix=no need_version=no - soname_spec='${libname}${release}${shared_ext}$major' - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext} $libname${shared_ext}' + soname_spec='$libname$release$shared_ext$major' + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$release$shared_ext $libname$shared_ext' case $host_os in irix5* | nonstopux*) libsuff= shlibsuff= @@ -11601,8 +12527,8 @@ esac shlibpath_var=LD_LIBRARY${shlibsuff}_PATH shlibpath_overrides_runpath=no - sys_lib_search_path_spec="/usr/lib${libsuff} /lib${libsuff} /usr/local/lib${libsuff}" - sys_lib_dlsearch_path_spec="/usr/lib${libsuff} /lib${libsuff}" + sys_lib_search_path_spec="/usr/lib$libsuff /lib$libsuff /usr/local/lib$libsuff" + sys_lib_dlsearch_path_spec="/usr/lib$libsuff /lib$libsuff" hardcode_into_libs=yes ;; @@ -11611,13 +12537,33 @@ dynamic_linker=no ;; +linux*android*) + version_type=none # Android doesn't support versioned libraries. + need_lib_prefix=no + need_version=no + library_names_spec='$libname$release$shared_ext' + soname_spec='$libname$release$shared_ext' + finish_cmds= + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=yes + + # This implies no fast_install, which is unacceptable. + # Some rework will be needed to allow for fast_install + # before this can be enabled. + hardcode_into_libs=yes + + dynamic_linker='Android linker' + # Don't embed -rpath directories since the linker doesn't support them. + hardcode_libdir_flag_spec='-L$libdir' + ;; + # This must be glibc/ELF. linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' finish_cmds='PATH="\$PATH:/sbin" ldconfig -n $libdir' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no @@ -11661,7 +12607,12 @@ # before this can be enabled. hardcode_into_libs=yes - # Append ld.so.conf contents to the search path + # Ideally, we could use ldconfig to report *all* directores which are + # searched for libraries, however this is still not possible. Aside from not + # being certain /sbin/ldconfig is available, command + # 'ldconfig -N -X -v | grep ^/' on 64bit Fedora does not report /usr/lib64, + # even though it is searched at run-time. Try to do the best guess by + # appending ld.so.conf contents (and includes) to the search path. if test -f /etc/ld.so.conf; then lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s 2>/dev/null", \$2)); skip = 1; } { if (!skip) print \$0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;/^[ ]*hwcap[ ]/d;s/[:, ]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;s/"//g;/^$/d' | tr '\n' ' '` sys_lib_dlsearch_path_spec="/lib /usr/lib $lt_ld_extra" @@ -11693,12 +12644,12 @@ need_lib_prefix=no need_version=no if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' + library_names_spec='$libname$release$shared_ext$versuffix $libname$shared_ext$versuffix' finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' dynamic_linker='NetBSD (a.out) ld.so' else - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' dynamic_linker='NetBSD ld.elf_so' fi shlibpath_var=LD_LIBRARY_PATH @@ -11708,7 +12659,7 @@ newsos6) version_type=linux # correct to gnu/linux during the next big refactor - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes ;; @@ -11717,58 +12668,68 @@ version_type=qnx need_lib_prefix=no need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes dynamic_linker='ldqnx.so' ;; -openbsd*) +openbsd* | bitrig*) version_type=sunos - sys_lib_dlsearch_path_spec="/usr/lib" + sys_lib_dlsearch_path_spec=/usr/lib need_lib_prefix=no - # Some older versions of OpenBSD (3.3 at least) *do* need versioned libs. - case $host_os in - openbsd3.3 | openbsd3.3.*) need_version=yes ;; - *) need_version=no ;; - esac - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' - finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' - shlibpath_var=LD_LIBRARY_PATH - if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then - case $host_os in - openbsd2.[89] | openbsd2.[89].*) - shlibpath_overrides_runpath=no - ;; - *) - shlibpath_overrides_runpath=yes - ;; - esac + if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`"; then + need_version=no else - shlibpath_overrides_runpath=yes + need_version=yes fi + library_names_spec='$libname$release$shared_ext$versuffix $libname$shared_ext$versuffix' + finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=yes ;; os2*) libname_spec='$name' - shrext_cmds=".dll" + version_type=windows + shrext_cmds=.dll + need_version=no need_lib_prefix=no - library_names_spec='$libname${shared_ext} $libname.a' + # OS/2 can only load a DLL with a base name of 8 characters or less. + soname_spec='`test -n "$os2dllname" && libname="$os2dllname"; + v=$($ECHO $release$versuffix | tr -d .-); + n=$($ECHO $libname | cut -b -$((8 - ${#v})) | tr . _); + $ECHO $n$v`$shared_ext' + library_names_spec='${libname}_dll.$libext' dynamic_linker='OS/2 ld.exe' - shlibpath_var=LIBPATH + shlibpath_var=BEGINLIBPATH + sys_lib_search_path_spec="/lib /usr/lib /usr/local/lib" + sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec + postinstall_cmds='base_file=`basename \$file`~ + dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\$base_file'\''i; $ECHO \$dlname'\''`~ + dldir=$destdir/`dirname \$dlpath`~ + test -d \$dldir || mkdir -p \$dldir~ + $install_prog $dir/$dlname \$dldir/$dlname~ + chmod a+x \$dldir/$dlname~ + if test -n '\''$stripme'\'' && test -n '\''$striplib'\''; then + eval '\''$striplib \$dldir/$dlname'\'' || exit \$?; + fi' + postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; $ECHO \$dlname'\''`~ + dlpath=$dir/\$dldll~ + $RM \$dlpath' ;; osf3* | osf4* | osf5*) version_type=osf need_lib_prefix=no need_version=no - soname_spec='${libname}${release}${shared_ext}$major' - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='$libname$release$shared_ext$major' + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' shlibpath_var=LD_LIBRARY_PATH sys_lib_search_path_spec="/usr/shlib /usr/ccs/lib /usr/lib/cmplrs/cc /usr/lib /usr/local/lib /var/shlib" - sys_lib_dlsearch_path_spec="$sys_lib_search_path_spec" + sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec ;; rdos*) @@ -11779,8 +12740,8 @@ version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes hardcode_into_libs=yes @@ -11790,11 +12751,11 @@ sunos4*) version_type=sunos - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' + library_names_spec='$libname$release$shared_ext$versuffix $libname$shared_ext$versuffix' finish_cmds='PATH="\$PATH:/usr/etc" ldconfig $libdir' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes - if test "$with_gnu_ld" = yes; then + if test yes = "$with_gnu_ld"; then need_lib_prefix=no fi need_version=yes @@ -11802,8 +12763,8 @@ sysv4 | sysv4.3*) version_type=linux # correct to gnu/linux during the next big refactor - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' shlibpath_var=LD_LIBRARY_PATH case $host_vendor in sni) @@ -11824,24 +12785,24 @@ ;; sysv4*MP*) - if test -d /usr/nec ;then + if test -d /usr/nec; then version_type=linux # correct to gnu/linux during the next big refactor - library_names_spec='$libname${shared_ext}.$versuffix $libname${shared_ext}.$major $libname${shared_ext}' - soname_spec='$libname${shared_ext}.$major' + library_names_spec='$libname$shared_ext.$versuffix $libname$shared_ext.$major $libname$shared_ext' + soname_spec='$libname$shared_ext.$major' shlibpath_var=LD_LIBRARY_PATH fi ;; sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) - version_type=freebsd-elf + version_type=sco need_lib_prefix=no need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes hardcode_into_libs=yes - if test "$with_gnu_ld" = yes; then + if test yes = "$with_gnu_ld"; then sys_lib_search_path_spec='/usr/local/lib /usr/gnu/lib /usr/ccs/lib /usr/lib /lib' else sys_lib_search_path_spec='/usr/ccs/lib /usr/lib' @@ -11859,7 +12820,7 @@ version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes @@ -11867,8 +12828,8 @@ uts4*) version_type=linux # correct to gnu/linux during the next big refactor - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' shlibpath_var=LD_LIBRARY_PATH ;; @@ -11878,20 +12839,35 @@ esac { $as_echo "$as_me:${as_lineno-$LINENO}: result: $dynamic_linker" >&5 $as_echo "$dynamic_linker" >&6; } -test "$dynamic_linker" = no && can_build_shared=no +test no = "$dynamic_linker" && can_build_shared=no variables_saved_for_relink="PATH $shlibpath_var $runpath_var" -if test "$GCC" = yes; then +if test yes = "$GCC"; then variables_saved_for_relink="$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH" fi -if test "${lt_cv_sys_lib_search_path_spec+set}" = set; then - sys_lib_search_path_spec="$lt_cv_sys_lib_search_path_spec" +if test set = "${lt_cv_sys_lib_search_path_spec+set}"; then + sys_lib_search_path_spec=$lt_cv_sys_lib_search_path_spec fi -if test "${lt_cv_sys_lib_dlsearch_path_spec+set}" = set; then - sys_lib_dlsearch_path_spec="$lt_cv_sys_lib_dlsearch_path_spec" + +if test set = "${lt_cv_sys_lib_dlsearch_path_spec+set}"; then + sys_lib_dlsearch_path_spec=$lt_cv_sys_lib_dlsearch_path_spec fi +# remember unaugmented sys_lib_dlsearch_path content for libtool script decls... +configure_time_dlsearch_path=$sys_lib_dlsearch_path_spec + +# ... but it needs LT_SYS_LIBRARY_PATH munging for other configure-time code +func_munge_path_list sys_lib_dlsearch_path_spec "$LT_SYS_LIBRARY_PATH" + +# to be used as default LT_SYS_LIBRARY_PATH value in generated libtool +configure_time_lt_sys_library_path=$LT_SYS_LIBRARY_PATH + + + + + + @@ -11988,15 +12964,15 @@ hardcode_action= if test -n "$hardcode_libdir_flag_spec" || test -n "$runpath_var" || - test "X$hardcode_automatic" = "Xyes" ; then + test yes = "$hardcode_automatic"; then # We can hardcode non-existent directories. - if test "$hardcode_direct" != no && + if test no != "$hardcode_direct" && # If the only mechanism to avoid hardcoding is shlibpath_var, we # have to relink, otherwise we might link with an installed library # when we should be linking with a yet-to-be-installed one - ## test "$_LT_TAGVAR(hardcode_shlibpath_var, )" != no && - test "$hardcode_minus_L" != no; then + ## test no != "$_LT_TAGVAR(hardcode_shlibpath_var, )" && + test no != "$hardcode_minus_L"; then # Linking always hardcodes the temporary library directory. hardcode_action=relink else @@ -12011,12 +12987,12 @@ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $hardcode_action" >&5 $as_echo "$hardcode_action" >&6; } -if test "$hardcode_action" = relink || - test "$inherit_rpath" = yes; then +if test relink = "$hardcode_action" || + test yes = "$inherit_rpath"; then # Fast installation is not supported enable_fast_install=no -elif test "$shlibpath_overrides_runpath" = yes || - test "$enable_shared" = no; then +elif test yes = "$shlibpath_overrides_runpath" || + test no = "$enable_shared"; then # Fast installation is not necessary enable_fast_install=needless fi @@ -12026,7 +13002,7 @@ - if test "x$enable_dlopen" != xyes; then + if test yes != "$enable_dlopen"; then enable_dlopen=unknown enable_dlopen_self=unknown enable_dlopen_self_static=unknown @@ -12036,23 +13012,23 @@ case $host_os in beos*) - lt_cv_dlopen="load_add_on" + lt_cv_dlopen=load_add_on lt_cv_dlopen_libs= lt_cv_dlopen_self=yes ;; mingw* | pw32* | cegcc*) - lt_cv_dlopen="LoadLibrary" + lt_cv_dlopen=LoadLibrary lt_cv_dlopen_libs= ;; cygwin*) - lt_cv_dlopen="dlopen" + lt_cv_dlopen=dlopen lt_cv_dlopen_libs= ;; darwin*) - # if libdl is installed we need to link against it + # if libdl is installed we need to link against it { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dlopen in -ldl" >&5 $as_echo_n "checking for dlopen in -ldl... " >&6; } if ${ac_cv_lib_dl_dlopen+:} false; then : @@ -12090,10 +13066,10 @@ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dl_dlopen" >&5 $as_echo "$ac_cv_lib_dl_dlopen" >&6; } if test "x$ac_cv_lib_dl_dlopen" = xyes; then : - lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl" + lt_cv_dlopen=dlopen lt_cv_dlopen_libs=-ldl else - lt_cv_dlopen="dyld" + lt_cv_dlopen=dyld lt_cv_dlopen_libs= lt_cv_dlopen_self=yes @@ -12101,10 +13077,18 @@ ;; + tpf*) + # Don't try to run any link tests for TPF. We know it's impossible + # because TPF is a cross-compiler, and we know how we open DSOs. + lt_cv_dlopen=dlopen + lt_cv_dlopen_libs= + lt_cv_dlopen_self=no + ;; + *) ac_fn_c_check_func "$LINENO" "shl_load" "ac_cv_func_shl_load" if test "x$ac_cv_func_shl_load" = xyes; then : - lt_cv_dlopen="shl_load" + lt_cv_dlopen=shl_load else { $as_echo "$as_me:${as_lineno-$LINENO}: checking for shl_load in -ldld" >&5 $as_echo_n "checking for shl_load in -ldld... " >&6; } @@ -12143,11 +13127,11 @@ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dld_shl_load" >&5 $as_echo "$ac_cv_lib_dld_shl_load" >&6; } if test "x$ac_cv_lib_dld_shl_load" = xyes; then : - lt_cv_dlopen="shl_load" lt_cv_dlopen_libs="-ldld" + lt_cv_dlopen=shl_load lt_cv_dlopen_libs=-ldld else ac_fn_c_check_func "$LINENO" "dlopen" "ac_cv_func_dlopen" if test "x$ac_cv_func_dlopen" = xyes; then : - lt_cv_dlopen="dlopen" + lt_cv_dlopen=dlopen else { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dlopen in -ldl" >&5 $as_echo_n "checking for dlopen in -ldl... " >&6; } @@ -12186,7 +13170,7 @@ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dl_dlopen" >&5 $as_echo "$ac_cv_lib_dl_dlopen" >&6; } if test "x$ac_cv_lib_dl_dlopen" = xyes; then : - lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl" + lt_cv_dlopen=dlopen lt_cv_dlopen_libs=-ldl else { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dlopen in -lsvld" >&5 $as_echo_n "checking for dlopen in -lsvld... " >&6; } @@ -12225,7 +13209,7 @@ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_svld_dlopen" >&5 $as_echo "$ac_cv_lib_svld_dlopen" >&6; } if test "x$ac_cv_lib_svld_dlopen" = xyes; then : - lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-lsvld" + lt_cv_dlopen=dlopen lt_cv_dlopen_libs=-lsvld else { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dld_link in -ldld" >&5 $as_echo_n "checking for dld_link in -ldld... " >&6; } @@ -12264,7 +13248,7 @@ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dld_dld_link" >&5 $as_echo "$ac_cv_lib_dld_dld_link" >&6; } if test "x$ac_cv_lib_dld_dld_link" = xyes; then : - lt_cv_dlopen="dld_link" lt_cv_dlopen_libs="-ldld" + lt_cv_dlopen=dld_link lt_cv_dlopen_libs=-ldld fi @@ -12285,21 +13269,21 @@ ;; esac - if test "x$lt_cv_dlopen" != xno; then - enable_dlopen=yes - else + if test no = "$lt_cv_dlopen"; then enable_dlopen=no + else + enable_dlopen=yes fi case $lt_cv_dlopen in dlopen) - save_CPPFLAGS="$CPPFLAGS" - test "x$ac_cv_header_dlfcn_h" = xyes && CPPFLAGS="$CPPFLAGS -DHAVE_DLFCN_H" + save_CPPFLAGS=$CPPFLAGS + test yes = "$ac_cv_header_dlfcn_h" && CPPFLAGS="$CPPFLAGS -DHAVE_DLFCN_H" - save_LDFLAGS="$LDFLAGS" + save_LDFLAGS=$LDFLAGS wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $export_dynamic_flag_spec\" - save_LIBS="$LIBS" + save_LIBS=$LIBS LIBS="$lt_cv_dlopen_libs $LIBS" { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether a program can dlopen itself" >&5 @@ -12307,7 +13291,7 @@ if ${lt_cv_dlopen_self+:} false; then : $as_echo_n "(cached) " >&6 else - if test "$cross_compiling" = yes; then : + if test yes = "$cross_compiling"; then : lt_cv_dlopen_self=cross else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 @@ -12354,9 +13338,9 @@ # endif #endif -/* When -fvisbility=hidden is used, assume the code has been annotated +/* When -fvisibility=hidden is used, assume the code has been annotated correspondingly for the symbols needed. */ -#if defined(__GNUC__) && (((__GNUC__ == 3) && (__GNUC_MINOR__ >= 3)) || (__GNUC__ > 3)) +#if defined __GNUC__ && (((__GNUC__ == 3) && (__GNUC_MINOR__ >= 3)) || (__GNUC__ > 3)) int fnord () __attribute__((visibility("default"))); #endif @@ -12386,7 +13370,7 @@ (eval $ac_link) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; } && test -s conftest${ac_exeext} 2>/dev/null; then + test $ac_status = 0; } && test -s "conftest$ac_exeext" 2>/dev/null; then (./conftest; exit; ) >&5 2>/dev/null lt_status=$? case x$lt_status in @@ -12406,14 +13390,14 @@ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_dlopen_self" >&5 $as_echo "$lt_cv_dlopen_self" >&6; } - if test "x$lt_cv_dlopen_self" = xyes; then + if test yes = "$lt_cv_dlopen_self"; then wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $lt_prog_compiler_static\" { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether a statically linked program can dlopen itself" >&5 $as_echo_n "checking whether a statically linked program can dlopen itself... " >&6; } if ${lt_cv_dlopen_self_static+:} false; then : $as_echo_n "(cached) " >&6 else - if test "$cross_compiling" = yes; then : + if test yes = "$cross_compiling"; then : lt_cv_dlopen_self_static=cross else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 @@ -12460,9 +13444,9 @@ # endif #endif -/* When -fvisbility=hidden is used, assume the code has been annotated +/* When -fvisibility=hidden is used, assume the code has been annotated correspondingly for the symbols needed. */ -#if defined(__GNUC__) && (((__GNUC__ == 3) && (__GNUC_MINOR__ >= 3)) || (__GNUC__ > 3)) +#if defined __GNUC__ && (((__GNUC__ == 3) && (__GNUC_MINOR__ >= 3)) || (__GNUC__ > 3)) int fnord () __attribute__((visibility("default"))); #endif @@ -12492,7 +13476,7 @@ (eval $ac_link) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; } && test -s conftest${ac_exeext} 2>/dev/null; then + test $ac_status = 0; } && test -s "conftest$ac_exeext" 2>/dev/null; then (./conftest; exit; ) >&5 2>/dev/null lt_status=$? case x$lt_status in @@ -12513,9 +13497,9 @@ $as_echo "$lt_cv_dlopen_self_static" >&6; } fi - CPPFLAGS="$save_CPPFLAGS" - LDFLAGS="$save_LDFLAGS" - LIBS="$save_LIBS" + CPPFLAGS=$save_CPPFLAGS + LDFLAGS=$save_LDFLAGS + LIBS=$save_LIBS ;; esac @@ -12559,7 +13543,7 @@ # FIXME - insert some real tests, host_os isn't really good enough case $host_os in darwin*) - if test -n "$STRIP" ; then + if test -n "$STRIP"; then striplib="$STRIP -x" old_striplib="$STRIP -S" { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 @@ -12587,7 +13571,7 @@ - # Report which library types will actually be built + # Report what library types will actually be built { $as_echo "$as_me:${as_lineno-$LINENO}: checking if libtool supports shared libraries" >&5 $as_echo_n "checking if libtool supports shared libraries... " >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: result: $can_build_shared" >&5 @@ -12595,13 +13579,13 @@ { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to build shared libraries" >&5 $as_echo_n "checking whether to build shared libraries... " >&6; } - test "$can_build_shared" = "no" && enable_shared=no + test no = "$can_build_shared" && enable_shared=no # On AIX, shared libraries and static libraries use the same namespace, and # are all built from PIC. case $host_os in aix3*) - test "$enable_shared" = yes && enable_static=no + test yes = "$enable_shared" && enable_static=no if test -n "$RANLIB"; then archive_cmds="$archive_cmds~\$RANLIB \$lib" postinstall_cmds='$RANLIB $lib' @@ -12609,8 +13593,12 @@ ;; aix[4-9]*) - if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then - test "$enable_shared" = yes && enable_static=no + if test ia64 != "$host_cpu"; then + case $enable_shared,$with_aix_soname,$aix_use_runtimelinking in + yes,aix,yes) ;; # shared object as lib.so file only + yes,svr4,*) ;; # shared object as lib.so archive member only + yes,*) enable_static=no ;; # shared object in lib.a archive as well + esac fi ;; esac @@ -12620,7 +13608,7 @@ { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to build static libraries" >&5 $as_echo_n "checking whether to build static libraries... " >&6; } # Make sure either enable_shared or enable_static is yes. - test "$enable_shared" = yes || enable_static=yes + test yes = "$enable_shared" || enable_static=yes { $as_echo "$as_me:${as_lineno-$LINENO}: result: $enable_static" >&5 $as_echo "$enable_static" >&6; } @@ -12634,11 +13622,11 @@ ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu -CC="$lt_save_CC" +CC=$lt_save_CC - if test -n "$CXX" && ( test "X$CXX" != "Xno" && - ( (test "X$CXX" = "Xg++" && `g++ -v >/dev/null 2>&1` ) || - (test "X$CXX" != "Xg++"))) ; then + if test -n "$CXX" && ( test no != "$CXX" && + ( (test g++ = "$CXX" && `g++ -v >/dev/null 2>&1` ) || + (test g++ != "$CXX"))); then ac_ext=cpp ac_cpp='$CXXCPP $CPPFLAGS' ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' @@ -12817,7 +13805,7 @@ # the CXX compiler isn't working. Some variables (like enable_shared) # are currently assumed to apply to all compilers on this platform, # and will be corrupted by setting them based on a non-working compiler. -if test "$_lt_caught_CXX_error" != yes; then +if test yes != "$_lt_caught_CXX_error"; then # Code to be used in simple compile tests lt_simple_compile_test_code="int some_variable = 0;" @@ -12878,46 +13866,39 @@ CFLAGS=$CXXFLAGS compiler=$CC compiler_CXX=$CC - for cc_temp in $compiler""; do - case $cc_temp in - compile | *[\\/]compile | ccache | *[\\/]ccache ) ;; - distcc | *[\\/]distcc | purify | *[\\/]purify ) ;; - \-*) ;; - *) break;; - esac -done -cc_basename=`$ECHO "$cc_temp" | $SED "s%.*/%%; s%^$host_alias-%%"` + func_cc_basename $compiler +cc_basename=$func_cc_basename_result if test -n "$compiler"; then # We don't want -fno-exception when compiling C++ code, so set the # no_builtin_flag separately - if test "$GXX" = yes; then + if test yes = "$GXX"; then lt_prog_compiler_no_builtin_flag_CXX=' -fno-builtin' else lt_prog_compiler_no_builtin_flag_CXX= fi - if test "$GXX" = yes; then + if test yes = "$GXX"; then # Set up default GNU C++ configuration # Check whether --with-gnu-ld was given. if test "${with_gnu_ld+set}" = set; then : - withval=$with_gnu_ld; test "$withval" = no || with_gnu_ld=yes + withval=$with_gnu_ld; test no = "$withval" || with_gnu_ld=yes else with_gnu_ld=no fi ac_prog=ld -if test "$GCC" = yes; then +if test yes = "$GCC"; then # Check if gcc -print-prog-name=ld gives a path. { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ld used by $CC" >&5 $as_echo_n "checking for ld used by $CC... " >&6; } case $host in *-*-mingw*) - # gcc leaves a trailing carriage return which upsets mingw + # gcc leaves a trailing carriage return, which upsets mingw ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;; *) ac_prog=`($CC -print-prog-name=ld) 2>&5` ;; @@ -12931,7 +13912,7 @@ while $ECHO "$ac_prog" | $GREP "$re_direlt" > /dev/null 2>&1; do ac_prog=`$ECHO $ac_prog| $SED "s%$re_direlt%/%"` done - test -z "$LD" && LD="$ac_prog" + test -z "$LD" && LD=$ac_prog ;; "") # If it fails, then pretend we aren't using GCC. @@ -12942,7 +13923,7 @@ with_gnu_ld=unknown ;; esac -elif test "$with_gnu_ld" = yes; then +elif test yes = "$with_gnu_ld"; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking for GNU ld" >&5 $as_echo_n "checking for GNU ld... " >&6; } else @@ -12953,32 +13934,32 @@ $as_echo_n "(cached) " >&6 else if test -z "$LD"; then - lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR + lt_save_ifs=$IFS; IFS=$PATH_SEPARATOR for ac_dir in $PATH; do - IFS="$lt_save_ifs" + IFS=$lt_save_ifs test -z "$ac_dir" && ac_dir=. if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then - lt_cv_path_LD="$ac_dir/$ac_prog" + lt_cv_path_LD=$ac_dir/$ac_prog # Check to see if the program is GNU ld. I'd rather use --version, # but apparently some variants of GNU ld only accept -v. # Break only if it was the GNU/non-GNU ld that we prefer. case `"$lt_cv_path_LD" -v 2>&1 &5 $as_echo "$LD" >&6; } @@ -13014,22 +13995,22 @@ # Check if GNU C++ uses GNU ld as the underlying linker, since the # archiving commands below assume that GNU ld is being used. - if test "$with_gnu_ld" = yes; then - archive_cmds_CXX='$CC $pic_flag -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib' - archive_expsym_cmds_CXX='$CC $pic_flag -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' + if test yes = "$with_gnu_ld"; then + archive_cmds_CXX='$CC $pic_flag -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname -o $lib' + archive_expsym_cmds_CXX='$CC $pic_flag -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' - hardcode_libdir_flag_spec_CXX='${wl}-rpath ${wl}$libdir' - export_dynamic_flag_spec_CXX='${wl}--export-dynamic' + hardcode_libdir_flag_spec_CXX='$wl-rpath $wl$libdir' + export_dynamic_flag_spec_CXX='$wl--export-dynamic' # If archive_cmds runs LD, not CC, wlarc should be empty # XXX I think wlarc can be eliminated in ltcf-cxx, but I need to # investigate it a little bit more. (MM) - wlarc='${wl}' + wlarc='$wl' # ancient GNU ld didn't support --whole-archive et. al. if eval "`$CC -print-prog-name=ld` --help 2>&1" | $GREP 'no-whole-archive' > /dev/null; then - whole_archive_flag_spec_CXX="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' + whole_archive_flag_spec_CXX=$wlarc'--whole-archive$convenience '$wlarc'--no-whole-archive' else whole_archive_flag_spec_CXX= fi @@ -13048,7 +14029,7 @@ # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. - output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP "\-L"' + output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP " \-L"' else GXX=no @@ -13066,18 +14047,30 @@ ld_shlibs_CXX=no ;; aix[4-9]*) - if test "$host_cpu" = ia64; then + if test ia64 = "$host_cpu"; then # On IA64, the linker does run time linking by default, so we don't # have to do anything special. aix_use_runtimelinking=no exp_sym_flag='-Bexport' - no_entry_flag="" + no_entry_flag= else aix_use_runtimelinking=no # Test if we are trying to use run time linking or normal # AIX style linking. If -brtl is somewhere in LDFLAGS, we - # need to do runtime linking. + # have runtime linking enabled, and use it for executables. + # For shared libraries, we enable/disable runtime linking + # depending on the kind of the shared library created - + # when "with_aix_soname,aix_use_runtimelinking" is: + # "aix,no" lib.a(lib.so.V) shared, rtl:no, for executables + # "aix,yes" lib.so shared, rtl:yes, for executables + # lib.a static archive + # "both,no" lib.so.V(shr.o) shared, rtl:yes + # lib.a(lib.so.V) shared, rtl:no, for executables + # "both,yes" lib.so.V(shr.o) shared, rtl:yes, for executables + # lib.a(lib.so.V) shared, rtl:no + # "svr4,*" lib.so.V(shr.o) shared, rtl:yes, for executables + # lib.a static archive case $host_os in aix4.[23]|aix4.[23].*|aix[5-9]*) for ld_flag in $LDFLAGS; do case $ld_flag in @@ -13087,6 +14080,13 @@ ;; esac done + if test svr4,no = "$with_aix_soname,$aix_use_runtimelinking"; then + # With aix-soname=svr4, we create the lib.so.V shared archives only, + # so we don't have lib.a shared libs to link our executables. + # We have to force runtime linking in this case. + aix_use_runtimelinking=yes + LDFLAGS="$LDFLAGS -Wl,-brtl" + fi ;; esac @@ -13105,13 +14105,21 @@ hardcode_direct_absolute_CXX=yes hardcode_libdir_separator_CXX=':' link_all_deplibs_CXX=yes - file_list_spec_CXX='${wl}-f,' + file_list_spec_CXX='$wl-f,' + case $with_aix_soname,$aix_use_runtimelinking in + aix,*) ;; # no import file + svr4,* | *,yes) # use import file + # The Import File defines what to hardcode. + hardcode_direct_CXX=no + hardcode_direct_absolute_CXX=no + ;; + esac - if test "$GXX" = yes; then + if test yes = "$GXX"; then case $host_os in aix4.[012]|aix4.[012].*) # We only want to do this on AIX 4.2 and lower, the check # below for broken collect2 doesn't work under 4.3+ - collect2name=`${CC} -print-prog-name=collect2` + collect2name=`$CC -print-prog-name=collect2` if test -f "$collect2name" && strings "$collect2name" | $GREP resolve_lib_name >/dev/null then @@ -13129,36 +14137,44 @@ fi esac shared_flag='-shared' - if test "$aix_use_runtimelinking" = yes; then - shared_flag="$shared_flag "'${wl}-G' + if test yes = "$aix_use_runtimelinking"; then + shared_flag=$shared_flag' $wl-G' fi + # Need to ensure runtime linking is disabled for the traditional + # shared library, or the linker may eventually find shared libraries + # /with/ Import File - we do not want to mix them. + shared_flag_aix='-shared' + shared_flag_svr4='-shared $wl-G' else # not using gcc - if test "$host_cpu" = ia64; then + if test ia64 = "$host_cpu"; then # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release # chokes on -Wl,-G. The following line is correct: shared_flag='-G' else - if test "$aix_use_runtimelinking" = yes; then - shared_flag='${wl}-G' + if test yes = "$aix_use_runtimelinking"; then + shared_flag='$wl-G' else - shared_flag='${wl}-bM:SRE' + shared_flag='$wl-bM:SRE' fi + shared_flag_aix='$wl-bM:SRE' + shared_flag_svr4='$wl-G' fi fi - export_dynamic_flag_spec_CXX='${wl}-bexpall' + export_dynamic_flag_spec_CXX='$wl-bexpall' # It seems that -bexpall does not export symbols beginning with # underscore (_), so it is better to generate a list of symbols to # export. always_export_symbols_CXX=yes - if test "$aix_use_runtimelinking" = yes; then + if test aix,yes = "$with_aix_soname,$aix_use_runtimelinking"; then # Warning - without using the other runtime loading flags (-brtl), # -berok will link without error, but may produce a broken library. - allow_undefined_flag_CXX='-berok' + # The "-G" linker flag allows undefined symbols. + no_undefined_flag_CXX='-bernotok' # Determine the default libpath from the value encoded in an empty # executable. - if test "${lt_cv_aix_libpath+set}" = set; then + if test set = "${lt_cv_aix_libpath+set}"; then aix_libpath=$lt_cv_aix_libpath else if ${lt_cv_aix_libpath__CXX+:} false; then : @@ -13193,7 +14209,7 @@ rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext if test -z "$lt_cv_aix_libpath__CXX"; then - lt_cv_aix_libpath__CXX="/usr/lib:/lib" + lt_cv_aix_libpath__CXX=/usr/lib:/lib fi fi @@ -13201,18 +14217,18 @@ aix_libpath=$lt_cv_aix_libpath__CXX fi - hardcode_libdir_flag_spec_CXX='${wl}-blibpath:$libdir:'"$aix_libpath" + hardcode_libdir_flag_spec_CXX='$wl-blibpath:$libdir:'"$aix_libpath" - archive_expsym_cmds_CXX='$CC -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then func_echo_all "${wl}${allow_undefined_flag}"; else :; fi` '"\${wl}$exp_sym_flag:\$export_symbols $shared_flag" + archive_expsym_cmds_CXX='$CC -o $output_objdir/$soname $libobjs $deplibs $wl'$no_entry_flag' $compiler_flags `if test -n "$allow_undefined_flag"; then func_echo_all "$wl$allow_undefined_flag"; else :; fi` $wl'$exp_sym_flag:\$export_symbols' '$shared_flag else - if test "$host_cpu" = ia64; then - hardcode_libdir_flag_spec_CXX='${wl}-R $libdir:/usr/lib:/lib' + if test ia64 = "$host_cpu"; then + hardcode_libdir_flag_spec_CXX='$wl-R $libdir:/usr/lib:/lib' allow_undefined_flag_CXX="-z nodefs" - archive_expsym_cmds_CXX="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags ${wl}${allow_undefined_flag} '"\${wl}$exp_sym_flag:\$export_symbols" + archive_expsym_cmds_CXX="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\$wl$no_entry_flag"' $compiler_flags $wl$allow_undefined_flag '"\$wl$exp_sym_flag:\$export_symbols" else # Determine the default libpath from the value encoded in an # empty executable. - if test "${lt_cv_aix_libpath+set}" = set; then + if test set = "${lt_cv_aix_libpath+set}"; then aix_libpath=$lt_cv_aix_libpath else if ${lt_cv_aix_libpath__CXX+:} false; then : @@ -13247,7 +14263,7 @@ rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext if test -z "$lt_cv_aix_libpath__CXX"; then - lt_cv_aix_libpath__CXX="/usr/lib:/lib" + lt_cv_aix_libpath__CXX=/usr/lib:/lib fi fi @@ -13255,22 +14271,34 @@ aix_libpath=$lt_cv_aix_libpath__CXX fi - hardcode_libdir_flag_spec_CXX='${wl}-blibpath:$libdir:'"$aix_libpath" + hardcode_libdir_flag_spec_CXX='$wl-blibpath:$libdir:'"$aix_libpath" # Warning - without using the other run time loading flags, # -berok will link without error, but may produce a broken library. - no_undefined_flag_CXX=' ${wl}-bernotok' - allow_undefined_flag_CXX=' ${wl}-berok' - if test "$with_gnu_ld" = yes; then + no_undefined_flag_CXX=' $wl-bernotok' + allow_undefined_flag_CXX=' $wl-berok' + if test yes = "$with_gnu_ld"; then # We only use this code for GNU lds that support --whole-archive. - whole_archive_flag_spec_CXX='${wl}--whole-archive$convenience ${wl}--no-whole-archive' + whole_archive_flag_spec_CXX='$wl--whole-archive$convenience $wl--no-whole-archive' else # Exported symbols can be pulled into shared objects from archives whole_archive_flag_spec_CXX='$convenience' fi archive_cmds_need_lc_CXX=yes - # This is similar to how AIX traditionally builds its shared - # libraries. - archive_expsym_cmds_CXX="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs ${wl}-bnoentry $compiler_flags ${wl}-bE:$export_symbols${allow_undefined_flag}~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$soname' + archive_expsym_cmds_CXX='$RM -r $output_objdir/$realname.d~$MKDIR $output_objdir/$realname.d' + # -brtl affects multiple linker settings, -berok does not and is overridden later + compiler_flags_filtered='`func_echo_all "$compiler_flags " | $SED -e "s%-brtl\\([, ]\\)%-berok\\1%g"`' + if test svr4 != "$with_aix_soname"; then + # This is similar to how AIX traditionally builds its shared + # libraries. Need -bnortl late, we may have -brtl in LDFLAGS. + archive_expsym_cmds_CXX="$archive_expsym_cmds_CXX"'~$CC '$shared_flag_aix' -o $output_objdir/$realname.d/$soname $libobjs $deplibs $wl-bnoentry '$compiler_flags_filtered'$wl-bE:$export_symbols$allow_undefined_flag~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$realname.d/$soname' + fi + if test aix != "$with_aix_soname"; then + archive_expsym_cmds_CXX="$archive_expsym_cmds_CXX"'~$CC '$shared_flag_svr4' -o $output_objdir/$realname.d/$shared_archive_member_spec.o $libobjs $deplibs $wl-bnoentry '$compiler_flags_filtered'$wl-bE:$export_symbols$allow_undefined_flag~$STRIP -e $output_objdir/$realname.d/$shared_archive_member_spec.o~( func_echo_all "#! $soname($shared_archive_member_spec.o)"; if test shr_64 = "$shared_archive_member_spec"; then func_echo_all "# 64"; else func_echo_all "# 32"; fi; cat $export_symbols ) > $output_objdir/$realname.d/$shared_archive_member_spec.imp~$AR $AR_FLAGS $output_objdir/$soname $output_objdir/$realname.d/$shared_archive_member_spec.o $output_objdir/$realname.d/$shared_archive_member_spec.imp' + else + # used by -dlpreopen to get the symbols + archive_expsym_cmds_CXX="$archive_expsym_cmds_CXX"'~$MV $output_objdir/$realname.d/$soname $output_objdir' + fi + archive_expsym_cmds_CXX="$archive_expsym_cmds_CXX"'~$RM -r $output_objdir/$realname.d' fi fi ;; @@ -13280,7 +14308,7 @@ allow_undefined_flag_CXX=unsupported # Joseph Beckenbach says some releases of gcc # support --undefined. This deserves some investigation. FIXME - archive_cmds_CXX='$CC -nostart $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + archive_cmds_CXX='$CC -nostart $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' else ld_shlibs_CXX=no fi @@ -13308,57 +14336,58 @@ # Tell ltmain to make .lib files, not .a files. libext=lib # Tell ltmain to make .dll files, not .so files. - shrext_cmds=".dll" + shrext_cmds=.dll # FIXME: Setting linknames here is a bad hack. - archive_cmds_CXX='$CC -o $output_objdir/$soname $libobjs $compiler_flags $deplibs -Wl,-dll~linknames=' - archive_expsym_cmds_CXX='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then - $SED -n -e 's/\\\\\\\(.*\\\\\\\)/-link\\\ -EXPORT:\\\\\\\1/' -e '1\\\!p' < $export_symbols > $output_objdir/$soname.exp; - else - $SED -e 's/\\\\\\\(.*\\\\\\\)/-link\\\ -EXPORT:\\\\\\\1/' < $export_symbols > $output_objdir/$soname.exp; - fi~ - $CC -o $tool_output_objdir$soname $libobjs $compiler_flags $deplibs "@$tool_output_objdir$soname.exp" -Wl,-DLL,-IMPLIB:"$tool_output_objdir$libname.dll.lib"~ - linknames=' + archive_cmds_CXX='$CC -o $output_objdir/$soname $libobjs $compiler_flags $deplibs -Wl,-DLL,-IMPLIB:"$tool_output_objdir$libname.dll.lib"~linknames=' + archive_expsym_cmds_CXX='if test DEF = "`$SED -n -e '\''s/^[ ]*//'\'' -e '\''/^\(;.*\)*$/d'\'' -e '\''s/^\(EXPORTS\|LIBRARY\)\([ ].*\)*$/DEF/p'\'' -e q $export_symbols`" ; then + cp "$export_symbols" "$output_objdir/$soname.def"; + echo "$tool_output_objdir$soname.def" > "$output_objdir/$soname.exp"; + else + $SED -e '\''s/^/-link -EXPORT:/'\'' < $export_symbols > $output_objdir/$soname.exp; + fi~ + $CC -o $tool_output_objdir$soname $libobjs $compiler_flags $deplibs "@$tool_output_objdir$soname.exp" -Wl,-DLL,-IMPLIB:"$tool_output_objdir$libname.dll.lib"~ + linknames=' # The linker will not automatically build a static lib if we build a DLL. # _LT_TAGVAR(old_archive_from_new_cmds, CXX)='true' enable_shared_with_static_runtimes_CXX=yes # Don't use ranlib old_postinstall_cmds_CXX='chmod 644 $oldlib' postlink_cmds_CXX='lt_outputfile="@OUTPUT@"~ - lt_tool_outputfile="@TOOL_OUTPUT@"~ - case $lt_outputfile in - *.exe|*.EXE) ;; - *) - lt_outputfile="$lt_outputfile.exe" - lt_tool_outputfile="$lt_tool_outputfile.exe" - ;; - esac~ - func_to_tool_file "$lt_outputfile"~ - if test "$MANIFEST_TOOL" != ":" && test -f "$lt_outputfile.manifest"; then - $MANIFEST_TOOL -manifest "$lt_tool_outputfile.manifest" -outputresource:"$lt_tool_outputfile" || exit 1; - $RM "$lt_outputfile.manifest"; - fi' + lt_tool_outputfile="@TOOL_OUTPUT@"~ + case $lt_outputfile in + *.exe|*.EXE) ;; + *) + lt_outputfile=$lt_outputfile.exe + lt_tool_outputfile=$lt_tool_outputfile.exe + ;; + esac~ + func_to_tool_file "$lt_outputfile"~ + if test : != "$MANIFEST_TOOL" && test -f "$lt_outputfile.manifest"; then + $MANIFEST_TOOL -manifest "$lt_tool_outputfile.manifest" -outputresource:"$lt_tool_outputfile" || exit 1; + $RM "$lt_outputfile.manifest"; + fi' ;; *) # g++ # _LT_TAGVAR(hardcode_libdir_flag_spec, CXX) is actually meaningless, # as there is no search path for DLLs. hardcode_libdir_flag_spec_CXX='-L$libdir' - export_dynamic_flag_spec_CXX='${wl}--export-all-symbols' + export_dynamic_flag_spec_CXX='$wl--export-all-symbols' allow_undefined_flag_CXX=unsupported always_export_symbols_CXX=no enable_shared_with_static_runtimes_CXX=yes if $LD --help 2>&1 | $GREP 'auto-import' > /dev/null; then - archive_cmds_CXX='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' - # If the export-symbols file already is a .def file (1st line - # is EXPORTS), use it as is; otherwise, prepend... - archive_expsym_cmds_CXX='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then - cp $export_symbols $output_objdir/$soname.def; - else - echo EXPORTS > $output_objdir/$soname.def; - cat $export_symbols >> $output_objdir/$soname.def; - fi~ - $CC -shared -nostdlib $output_objdir/$soname.def $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' + archive_cmds_CXX='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $output_objdir/$soname $wl--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' + # If the export-symbols file already is a .def file, use it as + # is; otherwise, prepend EXPORTS... + archive_expsym_cmds_CXX='if test DEF = "`$SED -n -e '\''s/^[ ]*//'\'' -e '\''/^\(;.*\)*$/d'\'' -e '\''s/^\(EXPORTS\|LIBRARY\)\([ ].*\)*$/DEF/p'\'' -e q $export_symbols`" ; then + cp $export_symbols $output_objdir/$soname.def; + else + echo EXPORTS > $output_objdir/$soname.def; + cat $export_symbols >> $output_objdir/$soname.def; + fi~ + $CC -shared -nostdlib $output_objdir/$soname.def $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $output_objdir/$soname $wl--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' else ld_shlibs_CXX=no fi @@ -13372,27 +14401,27 @@ hardcode_direct_CXX=no hardcode_automatic_CXX=yes hardcode_shlibpath_var_CXX=unsupported - if test "$lt_cv_ld_force_load" = "yes"; then - whole_archive_flag_spec_CXX='`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience ${wl}-force_load,$conv\"; done; func_echo_all \"$new_convenience\"`' + if test yes = "$lt_cv_ld_force_load"; then + whole_archive_flag_spec_CXX='`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience $wl-force_load,$conv\"; done; func_echo_all \"$new_convenience\"`' else whole_archive_flag_spec_CXX='' fi link_all_deplibs_CXX=yes - allow_undefined_flag_CXX="$_lt_dar_allow_undefined" + allow_undefined_flag_CXX=$_lt_dar_allow_undefined case $cc_basename in - ifort*) _lt_dar_can_shared=yes ;; + ifort*|nagfor*) _lt_dar_can_shared=yes ;; *) _lt_dar_can_shared=$GCC ;; esac - if test "$_lt_dar_can_shared" = "yes"; then + if test yes = "$_lt_dar_can_shared"; then output_verbose_link_cmd=func_echo_all - archive_cmds_CXX="\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring $_lt_dar_single_mod${_lt_dsymutil}" - module_cmds_CXX="\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dsymutil}" - archive_expsym_cmds_CXX="sed 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring ${_lt_dar_single_mod}${_lt_dar_export_syms}${_lt_dsymutil}" - module_expsym_cmds_CXX="sed -e 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dar_export_syms}${_lt_dsymutil}" - if test "$lt_cv_apple_cc_single_mod" != "yes"; then - archive_cmds_CXX="\$CC -r -keep_private_externs -nostdlib -o \${lib}-master.o \$libobjs~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \${lib}-master.o \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring${_lt_dsymutil}" - archive_expsym_cmds_CXX="sed 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC -r -keep_private_externs -nostdlib -o \${lib}-master.o \$libobjs~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \${lib}-master.o \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring${_lt_dar_export_syms}${_lt_dsymutil}" + archive_cmds_CXX="\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring $_lt_dar_single_mod$_lt_dsymutil" + module_cmds_CXX="\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags$_lt_dsymutil" + archive_expsym_cmds_CXX="sed 's|^|_|' < \$export_symbols > \$output_objdir/\$libname-symbols.expsym~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring $_lt_dar_single_mod$_lt_dar_export_syms$_lt_dsymutil" + module_expsym_cmds_CXX="sed -e 's|^|_|' < \$export_symbols > \$output_objdir/\$libname-symbols.expsym~\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags$_lt_dar_export_syms$_lt_dsymutil" + if test yes != "$lt_cv_apple_cc_single_mod"; then + archive_cmds_CXX="\$CC -r -keep_private_externs -nostdlib -o \$lib-master.o \$libobjs~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$lib-master.o \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring$_lt_dsymutil" + archive_expsym_cmds_CXX="sed 's|^|_|' < \$export_symbols > \$output_objdir/\$libname-symbols.expsym~\$CC -r -keep_private_externs -nostdlib -o \$lib-master.o \$libobjs~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$lib-master.o \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring$_lt_dar_export_syms$_lt_dsymutil" fi else @@ -13401,6 +14430,34 @@ ;; + os2*) + hardcode_libdir_flag_spec_CXX='-L$libdir' + hardcode_minus_L_CXX=yes + allow_undefined_flag_CXX=unsupported + shrext_cmds=.dll + archive_cmds_CXX='$ECHO "LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE" > $output_objdir/$libname.def~ + $ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~ + $ECHO "DATA MULTIPLE NONSHARED" >> $output_objdir/$libname.def~ + $ECHO EXPORTS >> $output_objdir/$libname.def~ + emxexp $libobjs | $SED /"_DLL_InitTerm"/d >> $output_objdir/$libname.def~ + $CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~ + emximp -o $lib $output_objdir/$libname.def' + archive_expsym_cmds_CXX='$ECHO "LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE" > $output_objdir/$libname.def~ + $ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~ + $ECHO "DATA MULTIPLE NONSHARED" >> $output_objdir/$libname.def~ + $ECHO EXPORTS >> $output_objdir/$libname.def~ + prefix_cmds="$SED"~ + if test EXPORTS = "`$SED 1q $export_symbols`"; then + prefix_cmds="$prefix_cmds -e 1d"; + fi~ + prefix_cmds="$prefix_cmds -e \"s/^\(.*\)$/_\1/g\""~ + cat $export_symbols | $prefix_cmds >> $output_objdir/$libname.def~ + $CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~ + emximp -o $lib $output_objdir/$libname.def' + old_archive_From_new_cmds_CXX='emximp -o $output_objdir/${libname}_dll.a $output_objdir/$libname.def' + enable_shared_with_static_runtimes_CXX=yes + ;; + dgux*) case $cc_basename in ec++*) @@ -13436,14 +14493,14 @@ ;; haiku*) - archive_cmds_CXX='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + archive_cmds_CXX='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' link_all_deplibs_CXX=yes ;; hpux9*) - hardcode_libdir_flag_spec_CXX='${wl}+b ${wl}$libdir' + hardcode_libdir_flag_spec_CXX='$wl+b $wl$libdir' hardcode_libdir_separator_CXX=: - export_dynamic_flag_spec_CXX='${wl}-E' + export_dynamic_flag_spec_CXX='$wl-E' hardcode_direct_CXX=yes hardcode_minus_L_CXX=yes # Not in the search PATH, # but as the default @@ -13455,7 +14512,7 @@ ld_shlibs_CXX=no ;; aCC*) - archive_cmds_CXX='$RM $output_objdir/$soname~$CC -b ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' + archive_cmds_CXX='$RM $output_objdir/$soname~$CC -b $wl+b $wl$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test "x$output_objdir/$soname" = "x$lib" || mv $output_objdir/$soname $lib' # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. @@ -13464,11 +14521,11 @@ # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. - output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | $EGREP "\-L"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' + output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | $EGREP " \-L"`; list= ; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' ;; *) - if test "$GXX" = yes; then - archive_cmds_CXX='$RM $output_objdir/$soname~$CC -shared -nostdlib $pic_flag ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' + if test yes = "$GXX"; then + archive_cmds_CXX='$RM $output_objdir/$soname~$CC -shared -nostdlib $pic_flag $wl+b $wl$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test "x$output_objdir/$soname" = "x$lib" || mv $output_objdir/$soname $lib' else # FIXME: insert proper C++ library support ld_shlibs_CXX=no @@ -13478,15 +14535,15 @@ ;; hpux10*|hpux11*) - if test $with_gnu_ld = no; then - hardcode_libdir_flag_spec_CXX='${wl}+b ${wl}$libdir' + if test no = "$with_gnu_ld"; then + hardcode_libdir_flag_spec_CXX='$wl+b $wl$libdir' hardcode_libdir_separator_CXX=: case $host_cpu in hppa*64*|ia64*) ;; *) - export_dynamic_flag_spec_CXX='${wl}-E' + export_dynamic_flag_spec_CXX='$wl-E' ;; esac fi @@ -13512,13 +14569,13 @@ aCC*) case $host_cpu in hppa*64*) - archive_cmds_CXX='$CC -b ${wl}+h ${wl}$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' + archive_cmds_CXX='$CC -b $wl+h $wl$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; ia64*) - archive_cmds_CXX='$CC -b ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' + archive_cmds_CXX='$CC -b $wl+h $wl$soname $wl+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; *) - archive_cmds_CXX='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' + archive_cmds_CXX='$CC -b $wl+h $wl$soname $wl+b $wl$install_libdir -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; esac # Commands to make compiler produce verbose output that lists @@ -13529,20 +14586,20 @@ # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. - output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | $GREP "\-L"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' + output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | $GREP " \-L"`; list= ; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' ;; *) - if test "$GXX" = yes; then - if test $with_gnu_ld = no; then + if test yes = "$GXX"; then + if test no = "$with_gnu_ld"; then case $host_cpu in hppa*64*) - archive_cmds_CXX='$CC -shared -nostdlib -fPIC ${wl}+h ${wl}$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' + archive_cmds_CXX='$CC -shared -nostdlib -fPIC $wl+h $wl$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; ia64*) - archive_cmds_CXX='$CC -shared -nostdlib $pic_flag ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' + archive_cmds_CXX='$CC -shared -nostdlib $pic_flag $wl+h $wl$soname $wl+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; *) - archive_cmds_CXX='$CC -shared -nostdlib $pic_flag ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' + archive_cmds_CXX='$CC -shared -nostdlib $pic_flag $wl+h $wl$soname $wl+b $wl$install_libdir -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; esac fi @@ -13557,22 +14614,22 @@ interix[3-9]*) hardcode_direct_CXX=no hardcode_shlibpath_var_CXX=no - hardcode_libdir_flag_spec_CXX='${wl}-rpath,$libdir' - export_dynamic_flag_spec_CXX='${wl}-E' + hardcode_libdir_flag_spec_CXX='$wl-rpath,$libdir' + export_dynamic_flag_spec_CXX='$wl-E' # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc. # Instead, shared libraries are loaded at an image base (0x10000000 by # default) and relocated if they conflict, which is a slow very memory # consuming and fragmenting process. To avoid this, we pick a random, # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link # time. Moving up from 0x10000000 also allows more sbrk(2) space. - archive_cmds_CXX='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' - archive_expsym_cmds_CXX='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' + archive_cmds_CXX='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-h,$soname $wl--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' + archive_expsym_cmds_CXX='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' ;; irix5* | irix6*) case $cc_basename in CC*) # SGI C++ - archive_cmds_CXX='$CC -shared -all -multigot $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' + archive_cmds_CXX='$CC -shared -all -multigot $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib' # Archives containing C++ object files must be created using # "CC -ar", where "CC" is the IRIX C++ compiler. This is @@ -13581,17 +14638,17 @@ old_archive_cmds_CXX='$CC -ar -WR,-u -o $oldlib $oldobjs' ;; *) - if test "$GXX" = yes; then - if test "$with_gnu_ld" = no; then - archive_cmds_CXX='$CC -shared $pic_flag -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' + if test yes = "$GXX"; then + if test no = "$with_gnu_ld"; then + archive_cmds_CXX='$CC -shared $pic_flag -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations -o $lib' else - archive_cmds_CXX='$CC -shared $pic_flag -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` -o $lib' + archive_cmds_CXX='$CC -shared $pic_flag -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` -o $lib' fi fi link_all_deplibs_CXX=yes ;; esac - hardcode_libdir_flag_spec_CXX='${wl}-rpath ${wl}$libdir' + hardcode_libdir_flag_spec_CXX='$wl-rpath $wl$libdir' hardcode_libdir_separator_CXX=: inherit_rpath_CXX=yes ;; @@ -13604,8 +14661,8 @@ # KCC will only create a shared library if the output file # ends with ".so" (or ".sl" for HP-UX), so rename the library # to its proper name (with version) after linking. - archive_cmds_CXX='tempext=`echo $shared_ext | $SED -e '\''s/\([^()0-9A-Za-z{}]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib' - archive_expsym_cmds_CXX='tempext=`echo $shared_ext | $SED -e '\''s/\([^()0-9A-Za-z{}]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib ${wl}-retain-symbols-file,$export_symbols; mv \$templib $lib' + archive_cmds_CXX='tempext=`echo $shared_ext | $SED -e '\''s/\([^()0-9A-Za-z{}]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\$tempext\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib' + archive_expsym_cmds_CXX='tempext=`echo $shared_ext | $SED -e '\''s/\([^()0-9A-Za-z{}]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\$tempext\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib $wl-retain-symbols-file,$export_symbols; mv \$templib $lib' # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. @@ -13614,10 +14671,10 @@ # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. - output_verbose_link_cmd='templist=`$CC $CFLAGS -v conftest.$objext -o libconftest$shared_ext 2>&1 | $GREP "ld"`; rm -f libconftest$shared_ext; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' + output_verbose_link_cmd='templist=`$CC $CFLAGS -v conftest.$objext -o libconftest$shared_ext 2>&1 | $GREP "ld"`; rm -f libconftest$shared_ext; list= ; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' - hardcode_libdir_flag_spec_CXX='${wl}-rpath,$libdir' - export_dynamic_flag_spec_CXX='${wl}--export-dynamic' + hardcode_libdir_flag_spec_CXX='$wl-rpath,$libdir' + export_dynamic_flag_spec_CXX='$wl--export-dynamic' # Archives containing C++ object files must be created using # "CC -Bstatic", where "CC" is the KAI C++ compiler. @@ -13631,59 +14688,59 @@ # earlier do not add the objects themselves. case `$CC -V 2>&1` in *"Version 7."*) - archive_cmds_CXX='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib' - archive_expsym_cmds_CXX='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' + archive_cmds_CXX='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname -o $lib' + archive_expsym_cmds_CXX='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' ;; *) # Version 8.0 or newer tmp_idyn= case $host_cpu in ia64*) tmp_idyn=' -i_dynamic';; esac - archive_cmds_CXX='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' - archive_expsym_cmds_CXX='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' + archive_cmds_CXX='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' + archive_expsym_cmds_CXX='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' ;; esac archive_cmds_need_lc_CXX=no - hardcode_libdir_flag_spec_CXX='${wl}-rpath,$libdir' - export_dynamic_flag_spec_CXX='${wl}--export-dynamic' - whole_archive_flag_spec_CXX='${wl}--whole-archive$convenience ${wl}--no-whole-archive' + hardcode_libdir_flag_spec_CXX='$wl-rpath,$libdir' + export_dynamic_flag_spec_CXX='$wl--export-dynamic' + whole_archive_flag_spec_CXX='$wl--whole-archive$convenience $wl--no-whole-archive' ;; pgCC* | pgcpp*) # Portland Group C++ compiler case `$CC -V` in *pgCC\ [1-5].* | *pgcpp\ [1-5].*) prelink_cmds_CXX='tpldir=Template.dir~ - rm -rf $tpldir~ - $CC --prelink_objects --instantiation_dir $tpldir $objs $libobjs $compile_deplibs~ - compile_command="$compile_command `find $tpldir -name \*.o | sort | $NL2SP`"' + rm -rf $tpldir~ + $CC --prelink_objects --instantiation_dir $tpldir $objs $libobjs $compile_deplibs~ + compile_command="$compile_command `find $tpldir -name \*.o | sort | $NL2SP`"' old_archive_cmds_CXX='tpldir=Template.dir~ - rm -rf $tpldir~ - $CC --prelink_objects --instantiation_dir $tpldir $oldobjs$old_deplibs~ - $AR $AR_FLAGS $oldlib$oldobjs$old_deplibs `find $tpldir -name \*.o | sort | $NL2SP`~ - $RANLIB $oldlib' + rm -rf $tpldir~ + $CC --prelink_objects --instantiation_dir $tpldir $oldobjs$old_deplibs~ + $AR $AR_FLAGS $oldlib$oldobjs$old_deplibs `find $tpldir -name \*.o | sort | $NL2SP`~ + $RANLIB $oldlib' archive_cmds_CXX='tpldir=Template.dir~ - rm -rf $tpldir~ - $CC --prelink_objects --instantiation_dir $tpldir $predep_objects $libobjs $deplibs $convenience $postdep_objects~ - $CC -shared $pic_flag $predep_objects $libobjs $deplibs `find $tpldir -name \*.o | sort | $NL2SP` $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname -o $lib' + rm -rf $tpldir~ + $CC --prelink_objects --instantiation_dir $tpldir $predep_objects $libobjs $deplibs $convenience $postdep_objects~ + $CC -shared $pic_flag $predep_objects $libobjs $deplibs `find $tpldir -name \*.o | sort | $NL2SP` $postdep_objects $compiler_flags $wl-soname $wl$soname -o $lib' archive_expsym_cmds_CXX='tpldir=Template.dir~ - rm -rf $tpldir~ - $CC --prelink_objects --instantiation_dir $tpldir $predep_objects $libobjs $deplibs $convenience $postdep_objects~ - $CC -shared $pic_flag $predep_objects $libobjs $deplibs `find $tpldir -name \*.o | sort | $NL2SP` $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname ${wl}-retain-symbols-file ${wl}$export_symbols -o $lib' + rm -rf $tpldir~ + $CC --prelink_objects --instantiation_dir $tpldir $predep_objects $libobjs $deplibs $convenience $postdep_objects~ + $CC -shared $pic_flag $predep_objects $libobjs $deplibs `find $tpldir -name \*.o | sort | $NL2SP` $postdep_objects $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' ;; *) # Version 6 and above use weak symbols - archive_cmds_CXX='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname -o $lib' - archive_expsym_cmds_CXX='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname ${wl}-retain-symbols-file ${wl}$export_symbols -o $lib' + archive_cmds_CXX='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname -o $lib' + archive_expsym_cmds_CXX='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' ;; esac - hardcode_libdir_flag_spec_CXX='${wl}--rpath ${wl}$libdir' - export_dynamic_flag_spec_CXX='${wl}--export-dynamic' - whole_archive_flag_spec_CXX='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' + hardcode_libdir_flag_spec_CXX='$wl--rpath $wl$libdir' + export_dynamic_flag_spec_CXX='$wl--export-dynamic' + whole_archive_flag_spec_CXX='$wl--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` $wl--no-whole-archive' ;; cxx*) # Compaq C++ - archive_cmds_CXX='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib' - archive_expsym_cmds_CXX='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib ${wl}-retain-symbols-file $wl$export_symbols' + archive_cmds_CXX='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname -o $lib' + archive_expsym_cmds_CXX='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname -o $lib $wl-retain-symbols-file $wl$export_symbols' runpath_var=LD_RUN_PATH hardcode_libdir_flag_spec_CXX='-rpath $libdir' @@ -13697,18 +14754,18 @@ # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. - output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP "ld"`; templist=`func_echo_all "$templist" | $SED "s/\(^.*ld.*\)\( .*ld .*$\)/\1/"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "X$list" | $Xsed' + output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP "ld"`; templist=`func_echo_all "$templist" | $SED "s/\(^.*ld.*\)\( .*ld .*$\)/\1/"`; list= ; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "X$list" | $Xsed' ;; xl* | mpixl* | bgxl*) # IBM XL 8.0 on PPC, with GNU ld - hardcode_libdir_flag_spec_CXX='${wl}-rpath ${wl}$libdir' - export_dynamic_flag_spec_CXX='${wl}--export-dynamic' - archive_cmds_CXX='$CC -qmkshrobj $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' - if test "x$supports_anon_versioning" = xyes; then + hardcode_libdir_flag_spec_CXX='$wl-rpath $wl$libdir' + export_dynamic_flag_spec_CXX='$wl--export-dynamic' + archive_cmds_CXX='$CC -qmkshrobj $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' + if test yes = "$supports_anon_versioning"; then archive_expsym_cmds_CXX='echo "{ global:" > $output_objdir/$libname.ver~ - cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ - echo "local: *; };" >> $output_objdir/$libname.ver~ - $CC -qmkshrobj $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script ${wl}$output_objdir/$libname.ver -o $lib' + cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ + echo "local: *; };" >> $output_objdir/$libname.ver~ + $CC -qmkshrobj $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-version-script $wl$output_objdir/$libname.ver -o $lib' fi ;; *) @@ -13716,10 +14773,10 @@ *Sun\ C*) # Sun C++ 5.9 no_undefined_flag_CXX=' -zdefs' - archive_cmds_CXX='$CC -G${allow_undefined_flag} -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' - archive_expsym_cmds_CXX='$CC -G${allow_undefined_flag} -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-retain-symbols-file ${wl}$export_symbols' + archive_cmds_CXX='$CC -G$allow_undefined_flag -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' + archive_expsym_cmds_CXX='$CC -G$allow_undefined_flag -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-retain-symbols-file $wl$export_symbols' hardcode_libdir_flag_spec_CXX='-R$libdir' - whole_archive_flag_spec_CXX='${wl}--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' + whole_archive_flag_spec_CXX='$wl--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` $wl--no-whole-archive' compiler_needs_object_CXX=yes # Not sure whether something based on @@ -13777,22 +14834,17 @@ ld_shlibs_CXX=yes ;; - openbsd2*) - # C++ shared libraries are fairly broken - ld_shlibs_CXX=no - ;; - - openbsd*) + openbsd* | bitrig*) if test -f /usr/libexec/ld.so; then hardcode_direct_CXX=yes hardcode_shlibpath_var_CXX=no hardcode_direct_absolute_CXX=yes archive_cmds_CXX='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $lib' - hardcode_libdir_flag_spec_CXX='${wl}-rpath,$libdir' - if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then - archive_expsym_cmds_CXX='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-retain-symbols-file,$export_symbols -o $lib' - export_dynamic_flag_spec_CXX='${wl}-E' - whole_archive_flag_spec_CXX="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' + hardcode_libdir_flag_spec_CXX='$wl-rpath,$libdir' + if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`"; then + archive_expsym_cmds_CXX='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-retain-symbols-file,$export_symbols -o $lib' + export_dynamic_flag_spec_CXX='$wl-E' + whole_archive_flag_spec_CXX=$wlarc'--whole-archive$convenience '$wlarc'--no-whole-archive' fi output_verbose_link_cmd=func_echo_all else @@ -13808,9 +14860,9 @@ # KCC will only create a shared library if the output file # ends with ".so" (or ".sl" for HP-UX), so rename the library # to its proper name (with version) after linking. - archive_cmds_CXX='tempext=`echo $shared_ext | $SED -e '\''s/\([^()0-9A-Za-z{}]\)/\\\\\1/g'\''`; templib=`echo "$lib" | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib' + archive_cmds_CXX='tempext=`echo $shared_ext | $SED -e '\''s/\([^()0-9A-Za-z{}]\)/\\\\\1/g'\''`; templib=`echo "$lib" | $SED -e "s/\$tempext\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib' - hardcode_libdir_flag_spec_CXX='${wl}-rpath,$libdir' + hardcode_libdir_flag_spec_CXX='$wl-rpath,$libdir' hardcode_libdir_separator_CXX=: # Archives containing C++ object files must be created using @@ -13828,17 +14880,17 @@ cxx*) case $host in osf3*) - allow_undefined_flag_CXX=' ${wl}-expect_unresolved ${wl}\*' - archive_cmds_CXX='$CC -shared${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $soname `test -n "$verstring" && func_echo_all "${wl}-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' - hardcode_libdir_flag_spec_CXX='${wl}-rpath ${wl}$libdir' + allow_undefined_flag_CXX=' $wl-expect_unresolved $wl\*' + archive_cmds_CXX='$CC -shared$allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $soname `test -n "$verstring" && func_echo_all "$wl-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib' + hardcode_libdir_flag_spec_CXX='$wl-rpath $wl$libdir' ;; *) allow_undefined_flag_CXX=' -expect_unresolved \*' - archive_cmds_CXX='$CC -shared${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' + archive_cmds_CXX='$CC -shared$allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib' archive_expsym_cmds_CXX='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done~ - echo "-hidden">> $lib.exp~ - $CC -shared$allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname ${wl}-input ${wl}$lib.exp `test -n "$verstring" && $ECHO "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib~ - $RM $lib.exp' + echo "-hidden">> $lib.exp~ + $CC -shared$allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname $wl-input $wl$lib.exp `test -n "$verstring" && $ECHO "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib~ + $RM $lib.exp' hardcode_libdir_flag_spec_CXX='-rpath $libdir' ;; esac @@ -13853,27 +14905,27 @@ # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. - output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP "ld" | $GREP -v "ld:"`; templist=`func_echo_all "$templist" | $SED "s/\(^.*ld.*\)\( .*ld.*$\)/\1/"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' + output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP "ld" | $GREP -v "ld:"`; templist=`func_echo_all "$templist" | $SED "s/\(^.*ld.*\)\( .*ld.*$\)/\1/"`; list= ; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' ;; *) - if test "$GXX" = yes && test "$with_gnu_ld" = no; then - allow_undefined_flag_CXX=' ${wl}-expect_unresolved ${wl}\*' + if test yes,no = "$GXX,$with_gnu_ld"; then + allow_undefined_flag_CXX=' $wl-expect_unresolved $wl\*' case $host in osf3*) - archive_cmds_CXX='$CC -shared -nostdlib ${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' + archive_cmds_CXX='$CC -shared -nostdlib $allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations -o $lib' ;; *) - archive_cmds_CXX='$CC -shared $pic_flag -nostdlib ${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' + archive_cmds_CXX='$CC -shared $pic_flag -nostdlib $allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-msym $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations -o $lib' ;; esac - hardcode_libdir_flag_spec_CXX='${wl}-rpath ${wl}$libdir' + hardcode_libdir_flag_spec_CXX='$wl-rpath $wl$libdir' hardcode_libdir_separator_CXX=: # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. - output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP "\-L"' + output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP " \-L"' else # FIXME: insert proper C++ library support @@ -13913,9 +14965,9 @@ # Sun C++ 4.2, 5.x and Centerline C++ archive_cmds_need_lc_CXX=yes no_undefined_flag_CXX=' -zdefs' - archive_cmds_CXX='$CC -G${allow_undefined_flag} -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' + archive_cmds_CXX='$CC -G$allow_undefined_flag -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' archive_expsym_cmds_CXX='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ - $CC -G${allow_undefined_flag} ${wl}-M ${wl}$lib.exp -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp' + $CC -G$allow_undefined_flag $wl-M $wl$lib.exp -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp' hardcode_libdir_flag_spec_CXX='-R$libdir' hardcode_shlibpath_var_CXX=no @@ -13923,7 +14975,7 @@ solaris2.[0-5] | solaris2.[0-5].*) ;; *) # The compiler driver will combine and reorder linker options, - # but understands `-z linker_flag'. + # but understands '-z linker_flag'. # Supported since Solaris 2.6 (maybe 2.5.1?) whole_archive_flag_spec_CXX='-z allextract$convenience -z defaultextract' ;; @@ -13940,42 +14992,42 @@ ;; gcx*) # Green Hills C++ Compiler - archive_cmds_CXX='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib' + archive_cmds_CXX='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-h $wl$soname -o $lib' # The C++ compiler must be used to create the archive. old_archive_cmds_CXX='$CC $LDFLAGS -archive -o $oldlib $oldobjs' ;; *) # GNU C++ compiler with Solaris linker - if test "$GXX" = yes && test "$with_gnu_ld" = no; then - no_undefined_flag_CXX=' ${wl}-z ${wl}defs' + if test yes,no = "$GXX,$with_gnu_ld"; then + no_undefined_flag_CXX=' $wl-z ${wl}defs' if $CC --version | $GREP -v '^2\.7' > /dev/null; then - archive_cmds_CXX='$CC -shared $pic_flag -nostdlib $LDFLAGS $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib' + archive_cmds_CXX='$CC -shared $pic_flag -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-h $wl$soname -o $lib' archive_expsym_cmds_CXX='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ - $CC -shared $pic_flag -nostdlib ${wl}-M $wl$lib.exp -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp' + $CC -shared $pic_flag -nostdlib $wl-M $wl$lib.exp $wl-h $wl$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp' # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. - output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP "\-L"' + output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP " \-L"' else - # g++ 2.7 appears to require `-G' NOT `-shared' on this + # g++ 2.7 appears to require '-G' NOT '-shared' on this # platform. - archive_cmds_CXX='$CC -G -nostdlib $LDFLAGS $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib' + archive_cmds_CXX='$CC -G -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-h $wl$soname -o $lib' archive_expsym_cmds_CXX='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ - $CC -G -nostdlib ${wl}-M $wl$lib.exp -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp' + $CC -G -nostdlib $wl-M $wl$lib.exp $wl-h $wl$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp' # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. - output_verbose_link_cmd='$CC -G $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP "\-L"' + output_verbose_link_cmd='$CC -G $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP " \-L"' fi - hardcode_libdir_flag_spec_CXX='${wl}-R $wl$libdir' + hardcode_libdir_flag_spec_CXX='$wl-R $wl$libdir' case $host_os in solaris2.[0-5] | solaris2.[0-5].*) ;; *) - whole_archive_flag_spec_CXX='${wl}-z ${wl}allextract$convenience ${wl}-z ${wl}defaultextract' + whole_archive_flag_spec_CXX='$wl-z ${wl}allextract$convenience $wl-z ${wl}defaultextract' ;; esac fi @@ -13984,52 +15036,52 @@ ;; sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[01].[10]* | unixware7* | sco3.2v5.0.[024]*) - no_undefined_flag_CXX='${wl}-z,text' + no_undefined_flag_CXX='$wl-z,text' archive_cmds_need_lc_CXX=no hardcode_shlibpath_var_CXX=no runpath_var='LD_RUN_PATH' case $cc_basename in CC*) - archive_cmds_CXX='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - archive_expsym_cmds_CXX='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + archive_cmds_CXX='$CC -G $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + archive_expsym_cmds_CXX='$CC -G $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' ;; *) - archive_cmds_CXX='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - archive_expsym_cmds_CXX='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + archive_cmds_CXX='$CC -shared $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + archive_expsym_cmds_CXX='$CC -shared $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' ;; esac ;; sysv5* | sco3.2v5* | sco5v6*) - # Note: We can NOT use -z defs as we might desire, because we do not + # Note: We CANNOT use -z defs as we might desire, because we do not # link with -lc, and that would cause any symbols used from libc to # always be unresolved, which means just about no library would # ever link correctly. If we're not using GNU ld we use -z text # though, which does catch some bad symbols but isn't as heavy-handed # as -z defs. - no_undefined_flag_CXX='${wl}-z,text' - allow_undefined_flag_CXX='${wl}-z,nodefs' + no_undefined_flag_CXX='$wl-z,text' + allow_undefined_flag_CXX='$wl-z,nodefs' archive_cmds_need_lc_CXX=no hardcode_shlibpath_var_CXX=no - hardcode_libdir_flag_spec_CXX='${wl}-R,$libdir' + hardcode_libdir_flag_spec_CXX='$wl-R,$libdir' hardcode_libdir_separator_CXX=':' link_all_deplibs_CXX=yes - export_dynamic_flag_spec_CXX='${wl}-Bexport' + export_dynamic_flag_spec_CXX='$wl-Bexport' runpath_var='LD_RUN_PATH' case $cc_basename in CC*) - archive_cmds_CXX='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - archive_expsym_cmds_CXX='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + archive_cmds_CXX='$CC -G $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + archive_expsym_cmds_CXX='$CC -G $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' old_archive_cmds_CXX='$CC -Tprelink_objects $oldobjs~ - '"$old_archive_cmds_CXX" + '"$old_archive_cmds_CXX" reload_cmds_CXX='$CC -Tprelink_objects $reload_objs~ - '"$reload_cmds_CXX" + '"$reload_cmds_CXX" ;; *) - archive_cmds_CXX='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - archive_expsym_cmds_CXX='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + archive_cmds_CXX='$CC -shared $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + archive_expsym_cmds_CXX='$CC -shared $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' ;; esac ;; @@ -14061,10 +15113,10 @@ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ld_shlibs_CXX" >&5 $as_echo "$ld_shlibs_CXX" >&6; } - test "$ld_shlibs_CXX" = no && can_build_shared=no + test no = "$ld_shlibs_CXX" && can_build_shared=no - GCC_CXX="$GXX" - LD_CXX="$LD" + GCC_CXX=$GXX + LD_CXX=$LD ## CAVEAT EMPTOR: ## There is no encapsulation within the following macros, do not change @@ -14108,13 +15160,13 @@ pre_test_object_deps_done=no for p in `eval "$output_verbose_link_cmd"`; do - case ${prev}${p} in + case $prev$p in -L* | -R* | -l*) # Some compilers place space between "-{L,R}" and the path. # Remove the space. - if test $p = "-L" || - test $p = "-R"; then + if test x-L = "$p" || + test x-R = "$p"; then prev=$p continue fi @@ -14130,16 +15182,16 @@ case $p in =*) func_stripname_cnf '=' '' "$p"; p=$lt_sysroot$func_stripname_result ;; esac - if test "$pre_test_object_deps_done" = no; then - case ${prev} in + if test no = "$pre_test_object_deps_done"; then + case $prev in -L | -R) # Internal compiler library paths should come after those # provided the user. The postdeps already come after the # user supplied libs so there is no need to process them. if test -z "$compiler_lib_search_path_CXX"; then - compiler_lib_search_path_CXX="${prev}${p}" + compiler_lib_search_path_CXX=$prev$p else - compiler_lib_search_path_CXX="${compiler_lib_search_path_CXX} ${prev}${p}" + compiler_lib_search_path_CXX="${compiler_lib_search_path_CXX} $prev$p" fi ;; # The "-l" case would never come before the object being @@ -14147,9 +15199,9 @@ esac else if test -z "$postdeps_CXX"; then - postdeps_CXX="${prev}${p}" + postdeps_CXX=$prev$p else - postdeps_CXX="${postdeps_CXX} ${prev}${p}" + postdeps_CXX="${postdeps_CXX} $prev$p" fi fi prev= @@ -14164,15 +15216,15 @@ continue fi - if test "$pre_test_object_deps_done" = no; then + if test no = "$pre_test_object_deps_done"; then if test -z "$predep_objects_CXX"; then - predep_objects_CXX="$p" + predep_objects_CXX=$p else predep_objects_CXX="$predep_objects_CXX $p" fi else if test -z "$postdep_objects_CXX"; then - postdep_objects_CXX="$p" + postdep_objects_CXX=$p else postdep_objects_CXX="$postdep_objects_CXX $p" fi @@ -14202,51 +15254,6 @@ postdep_objects_CXX= postdeps_CXX= ;; - -linux*) - case `$CC -V 2>&1 | sed 5q` in - *Sun\ C*) - # Sun C++ 5.9 - - # The more standards-conforming stlport4 library is - # incompatible with the Cstd library. Avoid specifying - # it if it's in CXXFLAGS. Ignore libCrun as - # -library=stlport4 depends on it. - case " $CXX $CXXFLAGS " in - *" -library=stlport4 "*) - solaris_use_stlport4=yes - ;; - esac - - if test "$solaris_use_stlport4" != yes; then - postdeps_CXX='-library=Cstd -library=Crun' - fi - ;; - esac - ;; - -solaris*) - case $cc_basename in - CC* | sunCC*) - # The more standards-conforming stlport4 library is - # incompatible with the Cstd library. Avoid specifying - # it if it's in CXXFLAGS. Ignore libCrun as - # -library=stlport4 depends on it. - case " $CXX $CXXFLAGS " in - *" -library=stlport4 "*) - solaris_use_stlport4=yes - ;; - esac - - # Adding this requires a known-good setup of shared libraries for - # Sun compiler versions before 5.6, else PIC objects from an old - # archive will be linked into the output, leading to subtle bugs. - if test "$solaris_use_stlport4" != yes; then - postdeps_CXX='-library=Cstd -library=Crun' - fi - ;; - esac - ;; esac @@ -14255,7 +15262,7 @@ esac compiler_lib_search_dirs_CXX= if test -n "${compiler_lib_search_path_CXX}"; then - compiler_lib_search_dirs_CXX=`echo " ${compiler_lib_search_path_CXX}" | ${SED} -e 's! -L! !g' -e 's!^ !!'` + compiler_lib_search_dirs_CXX=`echo " ${compiler_lib_search_path_CXX}" | $SED -e 's! -L! !g' -e 's!^ !!'` fi @@ -14294,17 +15301,18 @@ # C++ specific cases for pic, static, wl, etc. - if test "$GXX" = yes; then + if test yes = "$GXX"; then lt_prog_compiler_wl_CXX='-Wl,' lt_prog_compiler_static_CXX='-static' case $host_os in aix*) # All AIX code is PIC. - if test "$host_cpu" = ia64; then + if test ia64 = "$host_cpu"; then # AIX 5 now supports IA64 processor lt_prog_compiler_static_CXX='-Bstatic' fi + lt_prog_compiler_pic_CXX='-fPIC' ;; amigaos*) @@ -14315,8 +15323,8 @@ ;; m68k) # FIXME: we need at least 68020 code to build shared libraries, but - # adding the `-m68020' flag to GCC prevents building anything better, - # like `-m68040'. + # adding the '-m68020' flag to GCC prevents building anything better, + # like '-m68040'. lt_prog_compiler_pic_CXX='-m68020 -resident32 -malways-restore-a4' ;; esac @@ -14331,6 +15339,11 @@ # Although the cygwin gcc ignores -fPIC, still need this for old-style # (--disable-auto-import) libraries lt_prog_compiler_pic_CXX='-DDLL_EXPORT' + case $host_os in + os2*) + lt_prog_compiler_static_CXX='$wl-static' + ;; + esac ;; darwin* | rhapsody*) # PIC is the default on this platform @@ -14380,7 +15393,7 @@ case $host_os in aix[4-9]*) # All AIX code is PIC. - if test "$host_cpu" = ia64; then + if test ia64 = "$host_cpu"; then # AIX 5 now supports IA64 processor lt_prog_compiler_static_CXX='-Bstatic' else @@ -14420,14 +15433,14 @@ case $cc_basename in CC*) lt_prog_compiler_wl_CXX='-Wl,' - lt_prog_compiler_static_CXX='${wl}-a ${wl}archive' - if test "$host_cpu" != ia64; then + lt_prog_compiler_static_CXX='$wl-a ${wl}archive' + if test ia64 != "$host_cpu"; then lt_prog_compiler_pic_CXX='+Z' fi ;; aCC*) lt_prog_compiler_wl_CXX='-Wl,' - lt_prog_compiler_static_CXX='${wl}-a ${wl}archive' + lt_prog_compiler_static_CXX='$wl-a ${wl}archive' case $host_cpu in hppa*64*|ia64*) # +Z the default @@ -14464,7 +15477,7 @@ lt_prog_compiler_pic_CXX='-fPIC' ;; ecpc* ) - # old Intel C++ for x86_64 which still supported -KPIC. + # old Intel C++ for x86_64, which still supported -KPIC. lt_prog_compiler_wl_CXX='-Wl,' lt_prog_compiler_pic_CXX='-KPIC' lt_prog_compiler_static_CXX='-static' @@ -14609,7 +15622,7 @@ fi case $host_os in - # For platforms which do not support PIC, -DPIC is meaningless: + # For platforms that do not support PIC, -DPIC is meaningless: *djgpp*) lt_prog_compiler_pic_CXX= ;; @@ -14641,7 +15654,7 @@ lt_cv_prog_compiler_pic_works_CXX=no ac_outfile=conftest.$ac_objext echo "$lt_simple_compile_test_code" > conftest.$ac_ext - lt_compiler_flag="$lt_prog_compiler_pic_CXX -DPIC" + lt_compiler_flag="$lt_prog_compiler_pic_CXX -DPIC" ## exclude from sc_useless_quotes_in_assignment # Insert the option either (1) after the last *FLAGS variable, or # (2) before a word containing "conftest.", or (3) at the end. # Note that $ac_compile itself does not contain backslashes and begins @@ -14671,7 +15684,7 @@ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_pic_works_CXX" >&5 $as_echo "$lt_cv_prog_compiler_pic_works_CXX" >&6; } -if test x"$lt_cv_prog_compiler_pic_works_CXX" = xyes; then +if test yes = "$lt_cv_prog_compiler_pic_works_CXX"; then case $lt_prog_compiler_pic_CXX in "" | " "*) ;; *) lt_prog_compiler_pic_CXX=" $lt_prog_compiler_pic_CXX" ;; @@ -14697,7 +15710,7 @@ $as_echo_n "(cached) " >&6 else lt_cv_prog_compiler_static_works_CXX=no - save_LDFLAGS="$LDFLAGS" + save_LDFLAGS=$LDFLAGS LDFLAGS="$LDFLAGS $lt_tmp_static_flag" echo "$lt_simple_link_test_code" > conftest.$ac_ext if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then @@ -14716,13 +15729,13 @@ fi fi $RM -r conftest* - LDFLAGS="$save_LDFLAGS" + LDFLAGS=$save_LDFLAGS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_static_works_CXX" >&5 $as_echo "$lt_cv_prog_compiler_static_works_CXX" >&6; } -if test x"$lt_cv_prog_compiler_static_works_CXX" = xyes; then +if test yes = "$lt_cv_prog_compiler_static_works_CXX"; then : else lt_prog_compiler_static_CXX= @@ -14836,8 +15849,8 @@ -hard_links="nottested" -if test "$lt_cv_prog_compiler_c_o_CXX" = no && test "$need_locks" != no; then +hard_links=nottested +if test no = "$lt_cv_prog_compiler_c_o_CXX" && test no != "$need_locks"; then # do not overwrite the value of need_locks provided by the user { $as_echo "$as_me:${as_lineno-$LINENO}: checking if we can lock with hard links" >&5 $as_echo_n "checking if we can lock with hard links... " >&6; } @@ -14849,9 +15862,9 @@ ln conftest.a conftest.b 2>/dev/null && hard_links=no { $as_echo "$as_me:${as_lineno-$LINENO}: result: $hard_links" >&5 $as_echo "$hard_links" >&6; } - if test "$hard_links" = no; then - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&5 -$as_echo "$as_me: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&2;} + if test no = "$hard_links"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: '$CC' does not support '-c -o', so 'make -j' may be unsafe" >&5 +$as_echo "$as_me: WARNING: '$CC' does not support '-c -o', so 'make -j' may be unsafe" >&2;} need_locks=warn fi else @@ -14868,17 +15881,21 @@ case $host_os in aix[4-9]*) # If we're using GNU nm, then we don't want the "-C" option. - # -C means demangle to AIX nm, but means don't demangle with GNU nm - # Also, AIX nm treats weak defined symbols like other global defined - # symbols, whereas GNU nm marks them as "W". + # -C means demangle to GNU nm, but means don't demangle to AIX nm. + # Without the "-l" option, or with the "-B" option, AIX nm treats + # weak defined symbols like other global defined symbols, whereas + # GNU nm marks them as "W". + # While the 'weak' keyword is ignored in the Export File, we need + # it in the Import File for the 'aix-soname' feature, so we have + # to replace the "-B" option with "-P" for AIX nm. if $NM -V 2>&1 | $GREP 'GNU' > /dev/null; then - export_symbols_cmds_CXX='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W")) && (substr(\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols' + export_symbols_cmds_CXX='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W")) && (substr(\$ 3,1,1) != ".")) { if (\$ 2 == "W") { print \$ 3 " weak" } else { print \$ 3 } } }'\'' | sort -u > $export_symbols' else - export_symbols_cmds_CXX='$NM -BCpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B")) && (substr(\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols' + export_symbols_cmds_CXX='`func_echo_all $NM | $SED -e '\''s/B\([^B]*\)$/P\1/'\''` -PCpgl $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W") || (\$ 2 == "V") || (\$ 2 == "Z")) && (substr(\$ 1,1,1) != ".")) { if ((\$ 2 == "W") || (\$ 2 == "V") || (\$ 2 == "Z")) { print \$ 1 " weak" } else { print \$ 1 } } }'\'' | sort -u > $export_symbols' fi ;; pw32*) - export_symbols_cmds_CXX="$ltdll_cmds" + export_symbols_cmds_CXX=$ltdll_cmds ;; cygwin* | mingw* | cegcc*) case $cc_basename in @@ -14901,7 +15918,7 @@ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ld_shlibs_CXX" >&5 $as_echo "$ld_shlibs_CXX" >&6; } -test "$ld_shlibs_CXX" = no && can_build_shared=no +test no = "$ld_shlibs_CXX" && can_build_shared=no with_gnu_ld_CXX=$with_gnu_ld @@ -14918,7 +15935,7 @@ # Assume -lc should be added archive_cmds_need_lc_CXX=yes - if test "$enable_shared" = yes && test "$GCC" = yes; then + if test yes,yes = "$GCC,$enable_shared"; then case $archive_cmds_CXX in *'~'*) # FIXME: we may have to deal with multi-command sequences. @@ -15046,7 +16063,7 @@ library_names_spec= libname_spec='lib$name' soname_spec= -shrext_cmds=".so" +shrext_cmds=.so postinstall_cmds= postuninstall_cmds= finish_cmds= @@ -15063,14 +16080,16 @@ # flags to be left without arguments need_version=unknown + + case $host_os in aix3*) version_type=linux # correct to gnu/linux during the next big refactor - library_names_spec='${libname}${release}${shared_ext}$versuffix $libname.a' + library_names_spec='$libname$release$shared_ext$versuffix $libname.a' shlibpath_var=LIBPATH # AIX 3 has no versioning support, so we append a major version to the name. - soname_spec='${libname}${release}${shared_ext}$major' + soname_spec='$libname$release$shared_ext$major' ;; aix[4-9]*) @@ -15078,41 +16097,91 @@ need_lib_prefix=no need_version=no hardcode_into_libs=yes - if test "$host_cpu" = ia64; then + if test ia64 = "$host_cpu"; then # AIX 5 supports IA64 - library_names_spec='${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext}$versuffix $libname${shared_ext}' + library_names_spec='$libname$release$shared_ext$major $libname$release$shared_ext$versuffix $libname$shared_ext' shlibpath_var=LD_LIBRARY_PATH else # With GCC up to 2.95.x, collect2 would create an import file # for dependence libraries. The import file would start with - # the line `#! .'. This would cause the generated library to - # depend on `.', always an invalid library. This was fixed in + # the line '#! .'. This would cause the generated library to + # depend on '.', always an invalid library. This was fixed in # development snapshots of GCC prior to 3.0. case $host_os in aix4 | aix4.[01] | aix4.[01].*) if { echo '#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 97)' echo ' yes ' - echo '#endif'; } | ${CC} -E - | $GREP yes > /dev/null; then + echo '#endif'; } | $CC -E - | $GREP yes > /dev/null; then : else can_build_shared=no fi ;; esac - # AIX (on Power*) has no versioning support, so currently we can not hardcode correct + # Using Import Files as archive members, it is possible to support + # filename-based versioning of shared library archives on AIX. While + # this would work for both with and without runtime linking, it will + # prevent static linking of such archives. So we do filename-based + # shared library versioning with .so extension only, which is used + # when both runtime linking and shared linking is enabled. + # Unfortunately, runtime linking may impact performance, so we do + # not want this to be the default eventually. Also, we use the + # versioned .so libs for executables only if there is the -brtl + # linker flag in LDFLAGS as well, or --with-aix-soname=svr4 only. + # To allow for filename-based versioning support, we need to create + # libNAME.so.V as an archive file, containing: + # *) an Import File, referring to the versioned filename of the + # archive as well as the shared archive member, telling the + # bitwidth (32 or 64) of that shared object, and providing the + # list of exported symbols of that shared object, eventually + # decorated with the 'weak' keyword + # *) the shared object with the F_LOADONLY flag set, to really avoid + # it being seen by the linker. + # At run time we better use the real file rather than another symlink, + # but for link time we create the symlink libNAME.so -> libNAME.so.V + + case $with_aix_soname,$aix_use_runtimelinking in + # AIX (on Power*) has no versioning support, so currently we cannot hardcode correct # soname into executable. Probably we can add versioning support to # collect2, so additional links can be useful in future. - if test "$aix_use_runtimelinking" = yes; then + aix,yes) # traditional libtool + dynamic_linker='AIX unversionable lib.so' # If using run time linking (on AIX 4.2 or later) use lib.so # instead of lib.a to let people know that these are not # typical AIX shared libraries. - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - else + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + ;; + aix,no) # traditional AIX only + dynamic_linker='AIX lib.a(lib.so.V)' # We preserve .a as extension for shared libraries through AIX4.2 # and later when we are not doing run time linking. - library_names_spec='${libname}${release}.a $libname.a' - soname_spec='${libname}${release}${shared_ext}$major' - fi + library_names_spec='$libname$release.a $libname.a' + soname_spec='$libname$release$shared_ext$major' + ;; + svr4,*) # full svr4 only + dynamic_linker="AIX lib.so.V($shared_archive_member_spec.o)" + library_names_spec='$libname$release$shared_ext$major $libname$shared_ext' + # We do not specify a path in Import Files, so LIBPATH fires. + shlibpath_overrides_runpath=yes + ;; + *,yes) # both, prefer svr4 + dynamic_linker="AIX lib.so.V($shared_archive_member_spec.o), lib.a(lib.so.V)" + library_names_spec='$libname$release$shared_ext$major $libname$shared_ext' + # unpreferred sharedlib libNAME.a needs extra handling + postinstall_cmds='test -n "$linkname" || linkname="$realname"~func_stripname "" ".so" "$linkname"~$install_shared_prog "$dir/$func_stripname_result.$libext" "$destdir/$func_stripname_result.$libext"~test -z "$tstripme" || test -z "$striplib" || $striplib "$destdir/$func_stripname_result.$libext"' + postuninstall_cmds='for n in $library_names $old_library; do :; done~func_stripname "" ".so" "$n"~test "$func_stripname_result" = "$n" || func_append rmfiles " $odir/$func_stripname_result.$libext"' + # We do not specify a path in Import Files, so LIBPATH fires. + shlibpath_overrides_runpath=yes + ;; + *,no) # both, prefer aix + dynamic_linker="AIX lib.a(lib.so.V), lib.so.V($shared_archive_member_spec.o)" + library_names_spec='$libname$release.a $libname.a' + soname_spec='$libname$release$shared_ext$major' + # unpreferred sharedlib libNAME.so.V and symlink libNAME.so need extra handling + postinstall_cmds='test -z "$dlname" || $install_shared_prog $dir/$dlname $destdir/$dlname~test -z "$tstripme" || test -z "$striplib" || $striplib $destdir/$dlname~test -n "$linkname" || linkname=$realname~func_stripname "" ".a" "$linkname"~(cd "$destdir" && $LN_S -f $dlname $func_stripname_result.so)' + postuninstall_cmds='test -z "$dlname" || func_append rmfiles " $odir/$dlname"~for n in $old_library $library_names; do :; done~func_stripname "" ".a" "$n"~func_append rmfiles " $odir/$func_stripname_result.so"' + ;; + esac shlibpath_var=LIBPATH fi ;; @@ -15122,18 +16191,18 @@ powerpc) # Since July 2007 AmigaOS4 officially supports .so libraries. # When compiling the executable, add -use-dynld -Lsobjs: to the compileline. - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' ;; m68k) library_names_spec='$libname.ixlibrary $libname.a' # Create ${libname}_ixlibrary.a entries in /sys/libs. - finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`func_echo_all "$lib" | $SED '\''s%^.*/\([^/]*\)\.ixlibrary$%\1%'\''`; test $RM /sys/libs/${libname}_ixlibrary.a; $show "cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a"; cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a || exit 1; done' + finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`func_echo_all "$lib" | $SED '\''s%^.*/\([^/]*\)\.ixlibrary$%\1%'\''`; $RM /sys/libs/${libname}_ixlibrary.a; $show "cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a"; cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a || exit 1; done' ;; esac ;; beos*) - library_names_spec='${libname}${shared_ext}' + library_names_spec='$libname$shared_ext' dynamic_linker="$host_os ld.so" shlibpath_var=LIBRARY_PATH ;; @@ -15141,8 +16210,8 @@ bsdi[45]*) version_type=linux # correct to gnu/linux during the next big refactor need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' finish_cmds='PATH="\$PATH:/sbin" ldconfig $libdir' shlibpath_var=LD_LIBRARY_PATH sys_lib_search_path_spec="/shlib /usr/lib /usr/X11/lib /usr/contrib/lib /lib /usr/local/lib" @@ -15154,7 +16223,7 @@ cygwin* | mingw* | pw32* | cegcc*) version_type=windows - shrext_cmds=".dll" + shrext_cmds=.dll need_version=no need_lib_prefix=no @@ -15163,8 +16232,8 @@ # gcc library_names_spec='$libname.dll.a' # DLL is installed to $(libdir)/../bin by postinstall_cmds - postinstall_cmds='base_file=`basename \${file}`~ - dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i; echo \$dlname'\''`~ + postinstall_cmds='base_file=`basename \$file`~ + dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\$base_file'\''i; echo \$dlname'\''`~ dldir=$destdir/`dirname \$dlpath`~ test -d \$dldir || mkdir -p \$dldir~ $install_prog $dir/$dlname \$dldir/$dlname~ @@ -15180,16 +16249,16 @@ case $host_os in cygwin*) # Cygwin DLLs use 'cyg' prefix rather than 'lib' - soname_spec='`echo ${libname} | sed -e 's/^lib/cyg/'``echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' + soname_spec='`echo $libname | sed -e 's/^lib/cyg/'``echo $release | $SED -e 's/[.]/-/g'`$versuffix$shared_ext' ;; mingw* | cegcc*) # MinGW DLLs use traditional 'lib' prefix - soname_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' + soname_spec='$libname`echo $release | $SED -e 's/[.]/-/g'`$versuffix$shared_ext' ;; pw32*) # pw32 DLLs use 'pw' prefix rather than 'lib' - library_names_spec='`echo ${libname} | sed -e 's/^lib/pw/'``echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' + library_names_spec='`echo $libname | sed -e 's/^lib/pw/'``echo $release | $SED -e 's/[.]/-/g'`$versuffix$shared_ext' ;; esac dynamic_linker='Win32 ld.exe' @@ -15198,8 +16267,8 @@ *,cl*) # Native MSVC libname_spec='$name' - soname_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' - library_names_spec='${libname}.dll.lib' + soname_spec='$libname`echo $release | $SED -e 's/[.]/-/g'`$versuffix$shared_ext' + library_names_spec='$libname.dll.lib' case $build_os in mingw*) @@ -15226,7 +16295,7 @@ sys_lib_search_path_spec=`cygpath --path --unix "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` ;; *) - sys_lib_search_path_spec="$LIB" + sys_lib_search_path_spec=$LIB if $ECHO "$sys_lib_search_path_spec" | $GREP ';[c-zC-Z]:/' >/dev/null; then # It is most probably a Windows format PATH. sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'` @@ -15239,8 +16308,8 @@ esac # DLL is installed to $(libdir)/../bin by postinstall_cmds - postinstall_cmds='base_file=`basename \${file}`~ - dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i; echo \$dlname'\''`~ + postinstall_cmds='base_file=`basename \$file`~ + dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\$base_file'\''i; echo \$dlname'\''`~ dldir=$destdir/`dirname \$dlpath`~ test -d \$dldir || mkdir -p \$dldir~ $install_prog $dir/$dlname \$dldir/$dlname' @@ -15253,7 +16322,7 @@ *) # Assume MSVC wrapper - library_names_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext} $libname.lib' + library_names_spec='$libname`echo $release | $SED -e 's/[.]/-/g'`$versuffix$shared_ext $libname.lib' dynamic_linker='Win32 ld.exe' ;; esac @@ -15266,8 +16335,8 @@ version_type=darwin need_lib_prefix=no need_version=no - library_names_spec='${libname}${release}${major}$shared_ext ${libname}$shared_ext' - soname_spec='${libname}${release}${major}$shared_ext' + library_names_spec='$libname$release$major$shared_ext $libname$shared_ext' + soname_spec='$libname$release$major$shared_ext' shlibpath_overrides_runpath=yes shlibpath_var=DYLD_LIBRARY_PATH shrext_cmds='`test .$module = .yes && echo .so || echo .dylib`' @@ -15279,8 +16348,8 @@ version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname$shared_ext' - soname_spec='${libname}${release}${shared_ext}$major' + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' shlibpath_var=LD_LIBRARY_PATH ;; @@ -15298,12 +16367,13 @@ version_type=freebsd-$objformat case $version_type in freebsd-elf*) - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' need_version=no need_lib_prefix=no ;; freebsd-*) - library_names_spec='${libname}${release}${shared_ext}$versuffix $libname${shared_ext}$versuffix' + library_names_spec='$libname$release$shared_ext$versuffix $libname$shared_ext$versuffix' need_version=yes ;; esac @@ -15333,10 +16403,10 @@ need_lib_prefix=no need_version=no dynamic_linker="$host_os runtime_loader" - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' shlibpath_var=LIBRARY_PATH - shlibpath_overrides_runpath=yes + shlibpath_overrides_runpath=no sys_lib_dlsearch_path_spec='/boot/home/config/lib /boot/common/lib /boot/system/lib' hardcode_into_libs=yes ;; @@ -15354,14 +16424,15 @@ dynamic_linker="$host_os dld.so" shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - if test "X$HPUX_IA64_MODE" = X32; then + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' + if test 32 = "$HPUX_IA64_MODE"; then sys_lib_search_path_spec="/usr/lib/hpux32 /usr/local/lib/hpux32 /usr/local/lib" + sys_lib_dlsearch_path_spec=/usr/lib/hpux32 else sys_lib_search_path_spec="/usr/lib/hpux64 /usr/local/lib/hpux64" + sys_lib_dlsearch_path_spec=/usr/lib/hpux64 fi - sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec ;; hppa*64*) shrext_cmds='.sl' @@ -15369,8 +16440,8 @@ dynamic_linker="$host_os dld.sl" shlibpath_var=LD_LIBRARY_PATH # How should we handle SHLIB_PATH shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' sys_lib_search_path_spec="/usr/lib/pa20_64 /usr/ccs/lib/pa20_64" sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec ;; @@ -15379,8 +16450,8 @@ dynamic_linker="$host_os dld.sl" shlibpath_var=SHLIB_PATH shlibpath_overrides_runpath=no # +s is required to enable SHLIB_PATH - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' ;; esac # HP-UX runs *really* slowly unless shared libraries are mode 555, ... @@ -15393,8 +16464,8 @@ version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' dynamic_linker='Interix 3.x ld.so.1 (PE, like ELF)' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no @@ -15405,7 +16476,7 @@ case $host_os in nonstopux*) version_type=nonstopux ;; *) - if test "$lt_cv_prog_gnu_ld" = yes; then + if test yes = "$lt_cv_prog_gnu_ld"; then version_type=linux # correct to gnu/linux during the next big refactor else version_type=irix @@ -15413,8 +16484,8 @@ esac need_lib_prefix=no need_version=no - soname_spec='${libname}${release}${shared_ext}$major' - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext} $libname${shared_ext}' + soname_spec='$libname$release$shared_ext$major' + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$release$shared_ext $libname$shared_ext' case $host_os in irix5* | nonstopux*) libsuff= shlibsuff= @@ -15433,8 +16504,8 @@ esac shlibpath_var=LD_LIBRARY${shlibsuff}_PATH shlibpath_overrides_runpath=no - sys_lib_search_path_spec="/usr/lib${libsuff} /lib${libsuff} /usr/local/lib${libsuff}" - sys_lib_dlsearch_path_spec="/usr/lib${libsuff} /lib${libsuff}" + sys_lib_search_path_spec="/usr/lib$libsuff /lib$libsuff /usr/local/lib$libsuff" + sys_lib_dlsearch_path_spec="/usr/lib$libsuff /lib$libsuff" hardcode_into_libs=yes ;; @@ -15443,13 +16514,33 @@ dynamic_linker=no ;; +linux*android*) + version_type=none # Android doesn't support versioned libraries. + need_lib_prefix=no + need_version=no + library_names_spec='$libname$release$shared_ext' + soname_spec='$libname$release$shared_ext' + finish_cmds= + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=yes + + # This implies no fast_install, which is unacceptable. + # Some rework will be needed to allow for fast_install + # before this can be enabled. + hardcode_into_libs=yes + + dynamic_linker='Android linker' + # Don't embed -rpath directories since the linker doesn't support them. + hardcode_libdir_flag_spec_CXX='-L$libdir' + ;; + # This must be glibc/ELF. linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' finish_cmds='PATH="\$PATH:/sbin" ldconfig -n $libdir' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no @@ -15493,7 +16584,12 @@ # before this can be enabled. hardcode_into_libs=yes - # Append ld.so.conf contents to the search path + # Ideally, we could use ldconfig to report *all* directores which are + # searched for libraries, however this is still not possible. Aside from not + # being certain /sbin/ldconfig is available, command + # 'ldconfig -N -X -v | grep ^/' on 64bit Fedora does not report /usr/lib64, + # even though it is searched at run-time. Try to do the best guess by + # appending ld.so.conf contents (and includes) to the search path. if test -f /etc/ld.so.conf; then lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s 2>/dev/null", \$2)); skip = 1; } { if (!skip) print \$0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;/^[ ]*hwcap[ ]/d;s/[:, ]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;s/"//g;/^$/d' | tr '\n' ' '` sys_lib_dlsearch_path_spec="/lib /usr/lib $lt_ld_extra" @@ -15525,12 +16621,12 @@ need_lib_prefix=no need_version=no if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' + library_names_spec='$libname$release$shared_ext$versuffix $libname$shared_ext$versuffix' finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' dynamic_linker='NetBSD (a.out) ld.so' else - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' dynamic_linker='NetBSD ld.elf_so' fi shlibpath_var=LD_LIBRARY_PATH @@ -15540,7 +16636,7 @@ newsos6) version_type=linux # correct to gnu/linux during the next big refactor - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes ;; @@ -15549,58 +16645,68 @@ version_type=qnx need_lib_prefix=no need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes dynamic_linker='ldqnx.so' ;; -openbsd*) +openbsd* | bitrig*) version_type=sunos - sys_lib_dlsearch_path_spec="/usr/lib" + sys_lib_dlsearch_path_spec=/usr/lib need_lib_prefix=no - # Some older versions of OpenBSD (3.3 at least) *do* need versioned libs. - case $host_os in - openbsd3.3 | openbsd3.3.*) need_version=yes ;; - *) need_version=no ;; - esac - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' - finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' - shlibpath_var=LD_LIBRARY_PATH - if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then - case $host_os in - openbsd2.[89] | openbsd2.[89].*) - shlibpath_overrides_runpath=no - ;; - *) - shlibpath_overrides_runpath=yes - ;; - esac + if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`"; then + need_version=no else - shlibpath_overrides_runpath=yes + need_version=yes fi + library_names_spec='$libname$release$shared_ext$versuffix $libname$shared_ext$versuffix' + finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=yes ;; os2*) libname_spec='$name' - shrext_cmds=".dll" + version_type=windows + shrext_cmds=.dll + need_version=no need_lib_prefix=no - library_names_spec='$libname${shared_ext} $libname.a' + # OS/2 can only load a DLL with a base name of 8 characters or less. + soname_spec='`test -n "$os2dllname" && libname="$os2dllname"; + v=$($ECHO $release$versuffix | tr -d .-); + n=$($ECHO $libname | cut -b -$((8 - ${#v})) | tr . _); + $ECHO $n$v`$shared_ext' + library_names_spec='${libname}_dll.$libext' dynamic_linker='OS/2 ld.exe' - shlibpath_var=LIBPATH + shlibpath_var=BEGINLIBPATH + sys_lib_search_path_spec="/lib /usr/lib /usr/local/lib" + sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec + postinstall_cmds='base_file=`basename \$file`~ + dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\$base_file'\''i; $ECHO \$dlname'\''`~ + dldir=$destdir/`dirname \$dlpath`~ + test -d \$dldir || mkdir -p \$dldir~ + $install_prog $dir/$dlname \$dldir/$dlname~ + chmod a+x \$dldir/$dlname~ + if test -n '\''$stripme'\'' && test -n '\''$striplib'\''; then + eval '\''$striplib \$dldir/$dlname'\'' || exit \$?; + fi' + postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; $ECHO \$dlname'\''`~ + dlpath=$dir/\$dldll~ + $RM \$dlpath' ;; osf3* | osf4* | osf5*) version_type=osf need_lib_prefix=no need_version=no - soname_spec='${libname}${release}${shared_ext}$major' - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='$libname$release$shared_ext$major' + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' shlibpath_var=LD_LIBRARY_PATH sys_lib_search_path_spec="/usr/shlib /usr/ccs/lib /usr/lib/cmplrs/cc /usr/lib /usr/local/lib /var/shlib" - sys_lib_dlsearch_path_spec="$sys_lib_search_path_spec" + sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec ;; rdos*) @@ -15611,8 +16717,8 @@ version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes hardcode_into_libs=yes @@ -15622,11 +16728,11 @@ sunos4*) version_type=sunos - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' + library_names_spec='$libname$release$shared_ext$versuffix $libname$shared_ext$versuffix' finish_cmds='PATH="\$PATH:/usr/etc" ldconfig $libdir' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes - if test "$with_gnu_ld" = yes; then + if test yes = "$with_gnu_ld"; then need_lib_prefix=no fi need_version=yes @@ -15634,8 +16740,8 @@ sysv4 | sysv4.3*) version_type=linux # correct to gnu/linux during the next big refactor - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' shlibpath_var=LD_LIBRARY_PATH case $host_vendor in sni) @@ -15656,24 +16762,24 @@ ;; sysv4*MP*) - if test -d /usr/nec ;then + if test -d /usr/nec; then version_type=linux # correct to gnu/linux during the next big refactor - library_names_spec='$libname${shared_ext}.$versuffix $libname${shared_ext}.$major $libname${shared_ext}' - soname_spec='$libname${shared_ext}.$major' + library_names_spec='$libname$shared_ext.$versuffix $libname$shared_ext.$major $libname$shared_ext' + soname_spec='$libname$shared_ext.$major' shlibpath_var=LD_LIBRARY_PATH fi ;; sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) - version_type=freebsd-elf + version_type=sco need_lib_prefix=no need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes hardcode_into_libs=yes - if test "$with_gnu_ld" = yes; then + if test yes = "$with_gnu_ld"; then sys_lib_search_path_spec='/usr/local/lib /usr/gnu/lib /usr/ccs/lib /usr/lib /lib' else sys_lib_search_path_spec='/usr/ccs/lib /usr/lib' @@ -15691,7 +16797,7 @@ version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes @@ -15699,8 +16805,8 @@ uts4*) version_type=linux # correct to gnu/linux during the next big refactor - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' shlibpath_var=LD_LIBRARY_PATH ;; @@ -15710,20 +16816,32 @@ esac { $as_echo "$as_me:${as_lineno-$LINENO}: result: $dynamic_linker" >&5 $as_echo "$dynamic_linker" >&6; } -test "$dynamic_linker" = no && can_build_shared=no +test no = "$dynamic_linker" && can_build_shared=no variables_saved_for_relink="PATH $shlibpath_var $runpath_var" -if test "$GCC" = yes; then +if test yes = "$GCC"; then variables_saved_for_relink="$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH" fi -if test "${lt_cv_sys_lib_search_path_spec+set}" = set; then - sys_lib_search_path_spec="$lt_cv_sys_lib_search_path_spec" +if test set = "${lt_cv_sys_lib_search_path_spec+set}"; then + sys_lib_search_path_spec=$lt_cv_sys_lib_search_path_spec fi -if test "${lt_cv_sys_lib_dlsearch_path_spec+set}" = set; then - sys_lib_dlsearch_path_spec="$lt_cv_sys_lib_dlsearch_path_spec" + +if test set = "${lt_cv_sys_lib_dlsearch_path_spec+set}"; then + sys_lib_dlsearch_path_spec=$lt_cv_sys_lib_dlsearch_path_spec fi +# remember unaugmented sys_lib_dlsearch_path content for libtool script decls... +configure_time_dlsearch_path=$sys_lib_dlsearch_path_spec + +# ... but it needs LT_SYS_LIBRARY_PATH munging for other configure-time code +func_munge_path_list sys_lib_dlsearch_path_spec "$LT_SYS_LIBRARY_PATH" + +# to be used as default LT_SYS_LIBRARY_PATH value in generated libtool +configure_time_lt_sys_library_path=$LT_SYS_LIBRARY_PATH + + + @@ -15766,15 +16884,15 @@ hardcode_action_CXX= if test -n "$hardcode_libdir_flag_spec_CXX" || test -n "$runpath_var_CXX" || - test "X$hardcode_automatic_CXX" = "Xyes" ; then + test yes = "$hardcode_automatic_CXX"; then # We can hardcode non-existent directories. - if test "$hardcode_direct_CXX" != no && + if test no != "$hardcode_direct_CXX" && # If the only mechanism to avoid hardcoding is shlibpath_var, we # have to relink, otherwise we might link with an installed library # when we should be linking with a yet-to-be-installed one - ## test "$_LT_TAGVAR(hardcode_shlibpath_var, CXX)" != no && - test "$hardcode_minus_L_CXX" != no; then + ## test no != "$_LT_TAGVAR(hardcode_shlibpath_var, CXX)" && + test no != "$hardcode_minus_L_CXX"; then # Linking always hardcodes the temporary library directory. hardcode_action_CXX=relink else @@ -15789,12 +16907,12 @@ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $hardcode_action_CXX" >&5 $as_echo "$hardcode_action_CXX" >&6; } -if test "$hardcode_action_CXX" = relink || - test "$inherit_rpath_CXX" = yes; then +if test relink = "$hardcode_action_CXX" || + test yes = "$inherit_rpath_CXX"; then # Fast installation is not supported enable_fast_install=no -elif test "$shlibpath_overrides_runpath" = yes || - test "$enable_shared" = no; then +elif test yes = "$shlibpath_overrides_runpath" || + test no = "$enable_shared"; then # Fast installation is not necessary enable_fast_install=needless fi @@ -15817,7 +16935,7 @@ lt_cv_path_LD=$lt_save_path_LD lt_cv_prog_gnu_ldcxx=$lt_cv_prog_gnu_ld lt_cv_prog_gnu_ld=$lt_save_with_gnu_ld -fi # test "$_lt_caught_CXX_error" != yes +fi # test yes != "$_lt_caught_CXX_error" ac_ext=c ac_cpp='$CPP $CPPFLAGS' @@ -16670,11 +17788,11 @@ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $mm_all_flags" >&5 $as_echo "$mm_all_flags" >&6; } -ac_config_files="$ac_config_files Makefile codegen/Makefile atk/${ATKMM_MODULE_NAME}.pc:atk/atkmm.pc.in atk/${ATKMM_MODULE_NAME}-uninstalled.pc:atk/atkmm-uninstalled.pc.in atk/src/Makefile atk/atkmm/Makefile doc/Makefile doc/reference/Doxyfile MSVC_Net2013/atkmm/atkmm.rc" +ac_config_files="$ac_config_files Makefile codegen/Makefile atk/${ATKMM_MODULE_NAME}.pc:atk/atkmm.pc.in atk/${ATKMM_MODULE_NAME}-uninstalled.pc:atk/atkmm-uninstalled.pc.in atk/src/Makefile atk/atkmm/Makefile doc/Makefile doc/reference/Doxyfile MSVC_NMake/atkmm/atkmm.rc" # Copy the generated configuration headers into the MSVC project directories. -ac_config_commands="$ac_config_commands MSVC_Net2013/atkmm/atkmmconfig.h" +ac_config_commands="$ac_config_commands MSVC_NMake/atkmm/atkmmconfig.h" cat >confcache <<\_ACEOF # This file is a shell script that caches the results of configure @@ -17226,7 +18344,7 @@ # report actual input values of CONFIG_FILES etc. instead of their # values after options handling. ac_log=" -This file was extended by atkmm $as_me 2.24.2, which was +This file was extended by atkmm $as_me 2.28.0, which was generated by GNU Autoconf 2.69. Invocation command line was CONFIG_FILES = $CONFIG_FILES @@ -17286,14 +18404,14 @@ Configuration commands: $config_commands -Report bugs to . +Report bugs to . atkmm home page: ." _ACEOF cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`" ac_cs_version="\\ -atkmm config.status 2.24.2 +atkmm config.status 2.28.0 configured by $0, generated by GNU Autoconf 2.69, with options \\"\$ac_cs_config\\" @@ -17412,7 +18530,7 @@ # # INIT-COMMANDS # -AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir" +AMDEP_TRUE="$AMDEP_TRUE" MAKE="${MAKE-make}" # The HP-UX ksh and POSIX shell print the target directory to stdout @@ -17431,6 +18549,7 @@ enable_shared='`$ECHO "$enable_shared" | $SED "$delay_single_quote_subst"`' pic_mode='`$ECHO "$pic_mode" | $SED "$delay_single_quote_subst"`' enable_fast_install='`$ECHO "$enable_fast_install" | $SED "$delay_single_quote_subst"`' +shared_archive_member_spec='`$ECHO "$shared_archive_member_spec" | $SED "$delay_single_quote_subst"`' SHELL='`$ECHO "$SHELL" | $SED "$delay_single_quote_subst"`' ECHO='`$ECHO "$ECHO" | $SED "$delay_single_quote_subst"`' PATH_SEPARATOR='`$ECHO "$PATH_SEPARATOR" | $SED "$delay_single_quote_subst"`' @@ -17478,10 +18597,13 @@ GCC='`$ECHO "$GCC" | $SED "$delay_single_quote_subst"`' lt_cv_sys_global_symbol_pipe='`$ECHO "$lt_cv_sys_global_symbol_pipe" | $SED "$delay_single_quote_subst"`' lt_cv_sys_global_symbol_to_cdecl='`$ECHO "$lt_cv_sys_global_symbol_to_cdecl" | $SED "$delay_single_quote_subst"`' +lt_cv_sys_global_symbol_to_import='`$ECHO "$lt_cv_sys_global_symbol_to_import" | $SED "$delay_single_quote_subst"`' lt_cv_sys_global_symbol_to_c_name_address='`$ECHO "$lt_cv_sys_global_symbol_to_c_name_address" | $SED "$delay_single_quote_subst"`' lt_cv_sys_global_symbol_to_c_name_address_lib_prefix='`$ECHO "$lt_cv_sys_global_symbol_to_c_name_address_lib_prefix" | $SED "$delay_single_quote_subst"`' +lt_cv_nm_interface='`$ECHO "$lt_cv_nm_interface" | $SED "$delay_single_quote_subst"`' nm_file_list_spec='`$ECHO "$nm_file_list_spec" | $SED "$delay_single_quote_subst"`' lt_sysroot='`$ECHO "$lt_sysroot" | $SED "$delay_single_quote_subst"`' +lt_cv_truncate_bin='`$ECHO "$lt_cv_truncate_bin" | $SED "$delay_single_quote_subst"`' objdir='`$ECHO "$objdir" | $SED "$delay_single_quote_subst"`' MAGIC_CMD='`$ECHO "$MAGIC_CMD" | $SED "$delay_single_quote_subst"`' lt_prog_compiler_no_builtin_flag='`$ECHO "$lt_prog_compiler_no_builtin_flag" | $SED "$delay_single_quote_subst"`' @@ -17546,7 +18668,8 @@ finish_eval='`$ECHO "$finish_eval" | $SED "$delay_single_quote_subst"`' hardcode_into_libs='`$ECHO "$hardcode_into_libs" | $SED "$delay_single_quote_subst"`' sys_lib_search_path_spec='`$ECHO "$sys_lib_search_path_spec" | $SED "$delay_single_quote_subst"`' -sys_lib_dlsearch_path_spec='`$ECHO "$sys_lib_dlsearch_path_spec" | $SED "$delay_single_quote_subst"`' +configure_time_dlsearch_path='`$ECHO "$configure_time_dlsearch_path" | $SED "$delay_single_quote_subst"`' +configure_time_lt_sys_library_path='`$ECHO "$configure_time_lt_sys_library_path" | $SED "$delay_single_quote_subst"`' hardcode_action='`$ECHO "$hardcode_action" | $SED "$delay_single_quote_subst"`' enable_dlopen='`$ECHO "$enable_dlopen" | $SED "$delay_single_quote_subst"`' enable_dlopen_self='`$ECHO "$enable_dlopen_self" | $SED "$delay_single_quote_subst"`' @@ -17652,9 +18775,12 @@ compiler \ lt_cv_sys_global_symbol_pipe \ lt_cv_sys_global_symbol_to_cdecl \ +lt_cv_sys_global_symbol_to_import \ lt_cv_sys_global_symbol_to_c_name_address \ lt_cv_sys_global_symbol_to_c_name_address_lib_prefix \ +lt_cv_nm_interface \ nm_file_list_spec \ +lt_cv_truncate_bin \ lt_prog_compiler_no_builtin_flag \ lt_prog_compiler_pic \ lt_prog_compiler_wl \ @@ -17720,7 +18846,7 @@ compiler_lib_search_path_CXX; do case \`eval \\\\\$ECHO \\\\""\\\\\$\$var"\\\\"\` in *[\\\\\\\`\\"\\\$]*) - eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"\\\$\$var\\" | \\\$SED \\"\\\$sed_quote_subst\\"\\\`\\\\\\"" + eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"\\\$\$var\\" | \\\$SED \\"\\\$sed_quote_subst\\"\\\`\\\\\\"" ## exclude from sc_prohibit_nested_quotes ;; *) eval "lt_\$var=\\\\\\"\\\$\$var\\\\\\"" @@ -17747,7 +18873,8 @@ postuninstall_cmds \ finish_cmds \ sys_lib_search_path_spec \ -sys_lib_dlsearch_path_spec \ +configure_time_dlsearch_path \ +configure_time_lt_sys_library_path \ reload_cmds_CXX \ old_archive_cmds_CXX \ old_archive_from_new_cmds_CXX \ @@ -17761,7 +18888,7 @@ postlink_cmds_CXX; do case \`eval \\\\\$ECHO \\\\""\\\\\$\$var"\\\\"\` in *[\\\\\\\`\\"\\\$]*) - eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"\\\$\$var\\" | \\\$SED -e \\"\\\$double_quote_subst\\" -e \\"\\\$sed_quote_subst\\" -e \\"\\\$delay_variable_subst\\"\\\`\\\\\\"" + eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"\\\$\$var\\" | \\\$SED -e \\"\\\$double_quote_subst\\" -e \\"\\\$sed_quote_subst\\" -e \\"\\\$delay_variable_subst\\"\\\`\\\\\\"" ## exclude from sc_prohibit_nested_quotes ;; *) eval "lt_\$var=\\\\\\"\\\$\$var\\\\\\"" @@ -17770,19 +18897,16 @@ done ac_aux_dir='$ac_aux_dir' -xsi_shell='$xsi_shell' -lt_shell_append='$lt_shell_append' -# See if we are running on zsh, and set the options which allow our +# See if we are running on zsh, and set the options that allow our # commands through without removal of \ escapes INIT. -if test -n "\${ZSH_VERSION+set}" ; then +if test -n "\${ZSH_VERSION+set}"; then setopt NO_GLOB_SUBST fi PACKAGE='$PACKAGE' VERSION='$VERSION' - TIMESTAMP='$TIMESTAMP' RM='$RM' ofile='$ofile' @@ -17811,8 +18935,8 @@ "atk/atkmm/Makefile") CONFIG_FILES="$CONFIG_FILES atk/atkmm/Makefile" ;; "doc/Makefile") CONFIG_FILES="$CONFIG_FILES doc/Makefile" ;; "doc/reference/Doxyfile") CONFIG_FILES="$CONFIG_FILES doc/reference/Doxyfile" ;; - "MSVC_Net2013/atkmm/atkmm.rc") CONFIG_FILES="$CONFIG_FILES MSVC_Net2013/atkmm/atkmm.rc" ;; - "MSVC_Net2013/atkmm/atkmmconfig.h") CONFIG_COMMANDS="$CONFIG_COMMANDS MSVC_Net2013/atkmm/atkmmconfig.h" ;; + "MSVC_NMake/atkmm/atkmm.rc") CONFIG_FILES="$CONFIG_FILES MSVC_NMake/atkmm/atkmm.rc" ;; + "MSVC_NMake/atkmm/atkmmconfig.h") CONFIG_COMMANDS="$CONFIG_COMMANDS MSVC_NMake/atkmm/atkmmconfig.h" ;; *) as_fn_error $? "invalid argument: \`$ac_config_target'" "$LINENO" 5;; esac @@ -18412,29 +19536,35 @@ # Older Autoconf quotes --file arguments for eval, but not when files # are listed without --file. Let's play safe and only enable the eval # if we detect the quoting. - case $CONFIG_FILES in - *\'*) eval set x "$CONFIG_FILES" ;; - *) set x $CONFIG_FILES ;; - esac + # TODO: see whether this extra hack can be removed once we start + # requiring Autoconf 2.70 or later. + case $CONFIG_FILES in #( + *\'*) : + eval set x "$CONFIG_FILES" ;; #( + *) : + set x $CONFIG_FILES ;; #( + *) : + ;; +esac shift - for mf + # Used to flag and report bootstrapping failures. + am_rc=0 + for am_mf do # Strip MF so we end up with the name of the file. - mf=`echo "$mf" | sed -e 's/:.*$//'` - # Check whether this is an Automake generated Makefile or not. - # We used to match only the files named 'Makefile.in', but - # some people rename them; so instead we look at the file content. - # Grep'ing the first line is not enough: some people post-process - # each Makefile.in and add a new line on top of each file to say so. - # Grep'ing the whole file is not good either: AIX grep has a line + am_mf=`$as_echo "$am_mf" | sed -e 's/:.*$//'` + # Check whether this is an Automake generated Makefile which includes + # dependency-tracking related rules and includes. + # Grep'ing the whole file directly is not great: AIX grep has a line # limit of 2048, but all sed's we know have understand at least 4000. - if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then - dirpart=`$as_dirname -- "$mf" || -$as_expr X"$mf" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ - X"$mf" : 'X\(//\)[^/]' \| \ - X"$mf" : 'X\(//\)$' \| \ - X"$mf" : 'X\(/\)' \| . 2>/dev/null || -$as_echo X"$mf" | + sed -n 's,^am--depfiles:.*,X,p' "$am_mf" | grep X >/dev/null 2>&1 \ + || continue + am_dirpart=`$as_dirname -- "$am_mf" || +$as_expr X"$am_mf" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ + X"$am_mf" : 'X\(//\)[^/]' \| \ + X"$am_mf" : 'X\(//\)$' \| \ + X"$am_mf" : 'X\(/\)' \| . 2>/dev/null || +$as_echo X"$am_mf" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q @@ -18452,106 +19582,98 @@ q } s/.*/./; q'` - else - continue - fi - # Extract the definition of DEPDIR, am__include, and am__quote - # from the Makefile without running 'make'. - DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"` - test -z "$DEPDIR" && continue - am__include=`sed -n 's/^am__include = //p' < "$mf"` - test -z "$am__include" && continue - am__quote=`sed -n 's/^am__quote = //p' < "$mf"` - # Find all dependency output files, they are included files with - # $(DEPDIR) in their names. We invoke sed twice because it is the - # simplest approach to changing $(DEPDIR) to its actual value in the - # expansion. - for file in `sed -n " - s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \ - sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g'`; do - # Make sure the directory exists. - test -f "$dirpart/$file" && continue - fdir=`$as_dirname -- "$file" || -$as_expr X"$file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ - X"$file" : 'X\(//\)[^/]' \| \ - X"$file" : 'X\(//\)$' \| \ - X"$file" : 'X\(/\)' \| . 2>/dev/null || -$as_echo X"$file" | - sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ - s//\1/ - q - } - /^X\(\/\/\)[^/].*/{ + am_filepart=`$as_basename -- "$am_mf" || +$as_expr X/"$am_mf" : '.*/\([^/][^/]*\)/*$' \| \ + X"$am_mf" : 'X\(//\)$' \| \ + X"$am_mf" : 'X\(/\)' \| . 2>/dev/null || +$as_echo X/"$am_mf" | + sed '/^.*\/\([^/][^/]*\)\/*$/{ s//\1/ q } - /^X\(\/\/\)$/{ + /^X\/\(\/\/\)$/{ s//\1/ q } - /^X\(\/\).*/{ + /^X\/\(\/\).*/{ s//\1/ q } s/.*/./; q'` - as_dir=$dirpart/$fdir; as_fn_mkdir_p - # echo "creating $dirpart/$file" - echo '# dummy' > "$dirpart/$file" - done + { echo "$as_me:$LINENO: cd "$am_dirpart" \ + && sed -e '/# am--include-marker/d' "$am_filepart" \ + | $MAKE -f - am--depfiles" >&5 + (cd "$am_dirpart" \ + && sed -e '/# am--include-marker/d' "$am_filepart" \ + | $MAKE -f - am--depfiles) >&5 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } || am_rc=$? done + if test $am_rc -ne 0; then + { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 +$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} +as_fn_error $? "Something went wrong bootstrapping makefile fragments + for automatic dependency tracking. Try re-running configure with the + '--disable-dependency-tracking' option to at least be able to build + the package (albeit without support for automatic dependency tracking). +See \`config.log' for more details" "$LINENO" 5; } + fi + { am_dirpart=; unset am_dirpart;} + { am_filepart=; unset am_filepart;} + { am_mf=; unset am_mf;} + { am_rc=; unset am_rc;} + rm -f conftest-deps.mk } ;; "libtool":C) - # See if we are running on zsh, and set the options which allow our + # See if we are running on zsh, and set the options that allow our # commands through without removal of \ escapes. - if test -n "${ZSH_VERSION+set}" ; then + if test -n "${ZSH_VERSION+set}"; then setopt NO_GLOB_SUBST fi - cfgfile="${ofile}T" + cfgfile=${ofile}T trap "$RM \"$cfgfile\"; exit 1" 1 2 15 $RM "$cfgfile" cat <<_LT_EOF >> "$cfgfile" #! $SHELL - -# `$ECHO "$ofile" | sed 's%^.*/%%'` - Provide generalized library-building support services. -# Generated automatically by $as_me ($PACKAGE$TIMESTAMP) $VERSION -# Libtool was configured on host `(hostname || uname -n) 2>/dev/null | sed 1q`: +# Generated automatically by $as_me ($PACKAGE) $VERSION # NOTE: Changes made to this file will be lost: look at ltmain.sh. + +# Provide generalized library-building support services. +# Written by Gordon Matzigkeit, 1996 + +# Copyright (C) 2014 Free Software Foundation, Inc. +# This is free software; see the source for copying conditions. There is NO +# warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + +# GNU Libtool is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of of the License, or +# (at your option) any later version. # -# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005, -# 2006, 2007, 2008, 2009, 2010, 2011 Free Software -# Foundation, Inc. -# Written by Gordon Matzigkeit, 1996 -# -# This file is part of GNU Libtool. -# -# GNU Libtool is free software; you can redistribute it and/or -# modify it under the terms of the GNU General Public License as -# published by the Free Software Foundation; either version 2 of -# the License, or (at your option) any later version. -# -# As a special exception to the GNU General Public License, -# if you distribute this file as part of a program or library that -# is built using GNU Libtool, you may include this file under the -# same distribution terms that you use for the rest of that program. +# As a special exception to the GNU General Public License, if you +# distribute this file as part of a program or library that is built +# using GNU Libtool, you may include this file under the same +# distribution terms that you use for the rest of that program. # -# GNU Libtool is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of +# GNU Libtool is distributed in the hope that it will be useful, but +# WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License -# along with GNU Libtool; see the file COPYING. If not, a copy -# can be downloaded from http://www.gnu.org/licenses/gpl.html, or -# obtained by writing to the Free Software Foundation, Inc., -# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +# along with this program. If not, see . # The names of the tagged configurations supported by this script. -available_tags="CXX " +available_tags='CXX ' + +# Configured defaults for sys_lib_dlsearch_path munging. +: \${LT_SYS_LIBRARY_PATH="$configure_time_lt_sys_library_path"} # ### BEGIN LIBTOOL CONFIG @@ -18580,6 +19702,9 @@ # Whether or not to optimize for fast installation. fast_install=$enable_fast_install +# Shared archive member basename,for filename based shared library versioning on AIX. +shared_archive_member_spec=$shared_archive_member_spec + # Shell to use when invoking shell scripts. SHELL=$lt_SHELL @@ -18691,18 +19816,27 @@ # Transform the output of nm in a proper C declaration. global_symbol_to_cdecl=$lt_lt_cv_sys_global_symbol_to_cdecl +# Transform the output of nm into a list of symbols to manually relocate. +global_symbol_to_import=$lt_lt_cv_sys_global_symbol_to_import + # Transform the output of nm in a C name address pair. global_symbol_to_c_name_address=$lt_lt_cv_sys_global_symbol_to_c_name_address # Transform the output of nm in a C name address pair when lib prefix is needed. global_symbol_to_c_name_address_lib_prefix=$lt_lt_cv_sys_global_symbol_to_c_name_address_lib_prefix +# The name lister interface. +nm_interface=$lt_lt_cv_nm_interface + # Specify filename containing input files for \$NM. nm_file_list_spec=$lt_nm_file_list_spec -# The root where to search for dependent libraries,and in which our libraries should be installed. +# The root where to search for dependent libraries,and where our libraries should be installed. lt_sysroot=$lt_sysroot +# Command to truncate a binary pipe. +lt_truncate_bin=$lt_lt_cv_truncate_bin + # The name of the directory that contains temporary libtool files. objdir=$objdir @@ -18793,8 +19927,11 @@ # Compile-time system search path for libraries. sys_lib_search_path_spec=$lt_sys_lib_search_path_spec -# Run-time system search path for libraries. -sys_lib_dlsearch_path_spec=$lt_sys_lib_dlsearch_path_spec +# Detected run-time system search path for libraries. +sys_lib_dlsearch_path_spec=$lt_configure_time_dlsearch_path + +# Explicit LT_SYS_LIBRARY_PATH set during ./configure time. +configure_time_lt_sys_library_path=$lt_configure_time_lt_sys_library_path # Whether dlopen is supported. dlopen_support=$enable_dlopen @@ -18887,13 +20024,13 @@ # Whether we need a single "-rpath" flag with a separated argument. hardcode_libdir_separator=$lt_hardcode_libdir_separator -# Set to "yes" if using DIR/libNAME\${shared_ext} during linking hardcodes +# Set to "yes" if using DIR/libNAME\$shared_ext during linking hardcodes # DIR into the resulting binary. hardcode_direct=$hardcode_direct -# Set to "yes" if using DIR/libNAME\${shared_ext} during linking hardcodes +# Set to "yes" if using DIR/libNAME\$shared_ext during linking hardcodes # DIR into the resulting binary and the resulting library dependency is -# "absolute",i.e impossible to change by setting \${shlibpath_var} if the +# "absolute",i.e impossible to change by setting \$shlibpath_var if the # library is relocated. hardcode_direct_absolute=$hardcode_direct_absolute @@ -18959,13 +20096,72 @@ _LT_EOF + cat <<'_LT_EOF' >> "$cfgfile" + +# ### BEGIN FUNCTIONS SHARED WITH CONFIGURE + +# func_munge_path_list VARIABLE PATH +# ----------------------------------- +# VARIABLE is name of variable containing _space_ separated list of +# directories to be munged by the contents of PATH, which is string +# having a format: +# "DIR[:DIR]:" +# string "DIR[ DIR]" will be prepended to VARIABLE +# ":DIR[:DIR]" +# string "DIR[ DIR]" will be appended to VARIABLE +# "DIRP[:DIRP]::[DIRA:]DIRA" +# string "DIRP[ DIRP]" will be prepended to VARIABLE and string +# "DIRA[ DIRA]" will be appended to VARIABLE +# "DIR[:DIR]" +# VARIABLE will be replaced by "DIR[ DIR]" +func_munge_path_list () +{ + case x$2 in + x) + ;; + *:) + eval $1=\"`$ECHO $2 | $SED 's/:/ /g'` \$$1\" + ;; + x:*) + eval $1=\"\$$1 `$ECHO $2 | $SED 's/:/ /g'`\" + ;; + *::*) + eval $1=\"\$$1\ `$ECHO $2 | $SED -e 's/.*:://' -e 's/:/ /g'`\" + eval $1=\"`$ECHO $2 | $SED -e 's/::.*//' -e 's/:/ /g'`\ \$$1\" + ;; + *) + eval $1=\"`$ECHO $2 | $SED 's/:/ /g'`\" + ;; + esac +} + + +# Calculate cc_basename. Skip known compiler wrappers and cross-prefix. +func_cc_basename () +{ + for cc_temp in $*""; do + case $cc_temp in + compile | *[\\/]compile | ccache | *[\\/]ccache ) ;; + distcc | *[\\/]distcc | purify | *[\\/]purify ) ;; + \-*) ;; + *) break;; + esac + done + func_cc_basename_result=`$ECHO "$cc_temp" | $SED "s%.*/%%; s%^$host_alias-%%"` +} + + +# ### END FUNCTIONS SHARED WITH CONFIGURE + +_LT_EOF + case $host_os in aix3*) cat <<\_LT_EOF >> "$cfgfile" # AIX sometimes has problems with the GCC collect2 program. For some # reason, if we set the COLLECT_NAMES environment variable, the problems # vanish in a puff of smoke. -if test "X${COLLECT_NAMES+set}" != Xset; then +if test set != "${COLLECT_NAMES+set}"; then COLLECT_NAMES= export COLLECT_NAMES fi @@ -18974,7 +20170,7 @@ esac -ltmain="$ac_aux_dir/ltmain.sh" +ltmain=$ac_aux_dir/ltmain.sh # We use sed instead of cat because bash on DJGPP gets confused if @@ -18984,165 +20180,6 @@ sed '$q' "$ltmain" >> "$cfgfile" \ || (rm -f "$cfgfile"; exit 1) - if test x"$xsi_shell" = xyes; then - sed -e '/^func_dirname ()$/,/^} # func_dirname /c\ -func_dirname ()\ -{\ -\ case ${1} in\ -\ */*) func_dirname_result="${1%/*}${2}" ;;\ -\ * ) func_dirname_result="${3}" ;;\ -\ esac\ -} # Extended-shell func_dirname implementation' "$cfgfile" > $cfgfile.tmp \ - && mv -f "$cfgfile.tmp" "$cfgfile" \ - || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") -test 0 -eq $? || _lt_function_replace_fail=: - - - sed -e '/^func_basename ()$/,/^} # func_basename /c\ -func_basename ()\ -{\ -\ func_basename_result="${1##*/}"\ -} # Extended-shell func_basename implementation' "$cfgfile" > $cfgfile.tmp \ - && mv -f "$cfgfile.tmp" "$cfgfile" \ - || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") -test 0 -eq $? || _lt_function_replace_fail=: - - - sed -e '/^func_dirname_and_basename ()$/,/^} # func_dirname_and_basename /c\ -func_dirname_and_basename ()\ -{\ -\ case ${1} in\ -\ */*) func_dirname_result="${1%/*}${2}" ;;\ -\ * ) func_dirname_result="${3}" ;;\ -\ esac\ -\ func_basename_result="${1##*/}"\ -} # Extended-shell func_dirname_and_basename implementation' "$cfgfile" > $cfgfile.tmp \ - && mv -f "$cfgfile.tmp" "$cfgfile" \ - || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") -test 0 -eq $? || _lt_function_replace_fail=: - - - sed -e '/^func_stripname ()$/,/^} # func_stripname /c\ -func_stripname ()\ -{\ -\ # pdksh 5.2.14 does not do ${X%$Y} correctly if both X and Y are\ -\ # positional parameters, so assign one to ordinary parameter first.\ -\ func_stripname_result=${3}\ -\ func_stripname_result=${func_stripname_result#"${1}"}\ -\ func_stripname_result=${func_stripname_result%"${2}"}\ -} # Extended-shell func_stripname implementation' "$cfgfile" > $cfgfile.tmp \ - && mv -f "$cfgfile.tmp" "$cfgfile" \ - || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") -test 0 -eq $? || _lt_function_replace_fail=: - - - sed -e '/^func_split_long_opt ()$/,/^} # func_split_long_opt /c\ -func_split_long_opt ()\ -{\ -\ func_split_long_opt_name=${1%%=*}\ -\ func_split_long_opt_arg=${1#*=}\ -} # Extended-shell func_split_long_opt implementation' "$cfgfile" > $cfgfile.tmp \ - && mv -f "$cfgfile.tmp" "$cfgfile" \ - || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") -test 0 -eq $? || _lt_function_replace_fail=: - - - sed -e '/^func_split_short_opt ()$/,/^} # func_split_short_opt /c\ -func_split_short_opt ()\ -{\ -\ func_split_short_opt_arg=${1#??}\ -\ func_split_short_opt_name=${1%"$func_split_short_opt_arg"}\ -} # Extended-shell func_split_short_opt implementation' "$cfgfile" > $cfgfile.tmp \ - && mv -f "$cfgfile.tmp" "$cfgfile" \ - || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") -test 0 -eq $? || _lt_function_replace_fail=: - - - sed -e '/^func_lo2o ()$/,/^} # func_lo2o /c\ -func_lo2o ()\ -{\ -\ case ${1} in\ -\ *.lo) func_lo2o_result=${1%.lo}.${objext} ;;\ -\ *) func_lo2o_result=${1} ;;\ -\ esac\ -} # Extended-shell func_lo2o implementation' "$cfgfile" > $cfgfile.tmp \ - && mv -f "$cfgfile.tmp" "$cfgfile" \ - || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") -test 0 -eq $? || _lt_function_replace_fail=: - - - sed -e '/^func_xform ()$/,/^} # func_xform /c\ -func_xform ()\ -{\ - func_xform_result=${1%.*}.lo\ -} # Extended-shell func_xform implementation' "$cfgfile" > $cfgfile.tmp \ - && mv -f "$cfgfile.tmp" "$cfgfile" \ - || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") -test 0 -eq $? || _lt_function_replace_fail=: - - - sed -e '/^func_arith ()$/,/^} # func_arith /c\ -func_arith ()\ -{\ - func_arith_result=$(( $* ))\ -} # Extended-shell func_arith implementation' "$cfgfile" > $cfgfile.tmp \ - && mv -f "$cfgfile.tmp" "$cfgfile" \ - || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") -test 0 -eq $? || _lt_function_replace_fail=: - - - sed -e '/^func_len ()$/,/^} # func_len /c\ -func_len ()\ -{\ - func_len_result=${#1}\ -} # Extended-shell func_len implementation' "$cfgfile" > $cfgfile.tmp \ - && mv -f "$cfgfile.tmp" "$cfgfile" \ - || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") -test 0 -eq $? || _lt_function_replace_fail=: - -fi - -if test x"$lt_shell_append" = xyes; then - sed -e '/^func_append ()$/,/^} # func_append /c\ -func_append ()\ -{\ - eval "${1}+=\\${2}"\ -} # Extended-shell func_append implementation' "$cfgfile" > $cfgfile.tmp \ - && mv -f "$cfgfile.tmp" "$cfgfile" \ - || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") -test 0 -eq $? || _lt_function_replace_fail=: - - - sed -e '/^func_append_quoted ()$/,/^} # func_append_quoted /c\ -func_append_quoted ()\ -{\ -\ func_quote_for_eval "${2}"\ -\ eval "${1}+=\\\\ \\$func_quote_for_eval_result"\ -} # Extended-shell func_append_quoted implementation' "$cfgfile" > $cfgfile.tmp \ - && mv -f "$cfgfile.tmp" "$cfgfile" \ - || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") -test 0 -eq $? || _lt_function_replace_fail=: - - - # Save a `func_append' function call where possible by direct use of '+=' - sed -e 's%func_append \([a-zA-Z_]\{1,\}\) "%\1+="%g' $cfgfile > $cfgfile.tmp \ - && mv -f "$cfgfile.tmp" "$cfgfile" \ - || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") - test 0 -eq $? || _lt_function_replace_fail=: -else - # Save a `func_append' function call even when '+=' is not available - sed -e 's%func_append \([a-zA-Z_]\{1,\}\) "%\1="$\1%g' $cfgfile > $cfgfile.tmp \ - && mv -f "$cfgfile.tmp" "$cfgfile" \ - || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") - test 0 -eq $? || _lt_function_replace_fail=: -fi - -if test x"$_lt_function_replace_fail" = x":"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: Unable to substitute extended shell functions in $ofile" >&5 -$as_echo "$as_me: WARNING: Unable to substitute extended shell functions in $ofile" >&2;} -fi - - mv -f "$cfgfile" "$ofile" || (rm -f "$ofile" && cp "$cfgfile" "$ofile" && rm -f "$cfgfile") chmod +x "$ofile" @@ -19229,13 +20266,13 @@ # Whether we need a single "-rpath" flag with a separated argument. hardcode_libdir_separator=$lt_hardcode_libdir_separator_CXX -# Set to "yes" if using DIR/libNAME\${shared_ext} during linking hardcodes +# Set to "yes" if using DIR/libNAME\$shared_ext during linking hardcodes # DIR into the resulting binary. hardcode_direct=$hardcode_direct_CXX -# Set to "yes" if using DIR/libNAME\${shared_ext} during linking hardcodes +# Set to "yes" if using DIR/libNAME\$shared_ext during linking hardcodes # DIR into the resulting binary and the resulting library dependency is -# "absolute",i.e impossible to change by setting \${shlibpath_var} if the +# "absolute",i.e impossible to change by setting \$shlibpath_var if the # library is relocated. hardcode_direct_absolute=$hardcode_direct_absolute_CXX @@ -19301,7 +20338,7 @@ _LT_EOF ;; - "MSVC_Net2013/atkmm/atkmmconfig.h":C) cp -f atk/atkmmconfig.h MSVC_Net2013/atkmm/atkmmconfig.h ;; + "MSVC_NMake/atkmm/atkmmconfig.h":C) cp -f atk/atkmmconfig.h MSVC_NMake/atkmm/atkmmconfig.h ;; esac done # for ac_tag diff -Nru atkmm1.6-2.24.2/configure.ac atkmm1.6-2.28.0/configure.ac --- atkmm1.6-2.24.2/configure.ac 2015-11-29 20:04:04.573479320 +0000 +++ atkmm1.6-2.28.0/configure.ac 2018-11-04 11:43:28.754718107 +0000 @@ -19,7 +19,7 @@ # pkg-config name as before and is meant to be binary compatible. Thus for the # time being, the version number cannot be brought in line with ATK, since that # would break compatibility. -AC_INIT([atkmm], [2.24.2], [https://bugzilla.gnome.org/enter_bug.cgi?product=atkmm], +AC_INIT([atkmm], [2.28.0], [https://gitlab.gnome.org/GNOME/atkmm/issues/], [atkmm], [http://www.gtkmm.org/]) AC_PREREQ([2.59]) @@ -29,15 +29,16 @@ AC_CONFIG_HEADERS([build/config.h atk/atkmmconfig.h]) AM_INIT_AUTOMAKE([1.9 -Wno-portability dist-bzip2 no-define nostdinc tar-pax]) -m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES]) +# Support silent build rules. +# Disable by either passing --disable-silent-rules to configure or passing V=1 to make. +m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])]) AM_MAINTAINER_MODE AC_ARG_VAR([ACLOCAL_FLAGS], [aclocal flags, e.g. -I ]) -MM_PREREQ([0.9.8]) +MM_PREREQ([0.9.10]) MM_INIT_MODULE([atkmm-1.6]) -# Copy the mm-common .pl scripts into docs/, -# and use them from there, +# Copy the mm-common .pl scripts into doc/, and use them from there, # so we can dist them to avoid a tarball-build dependency. MM_CONFIG_DOCTOOL_DIR([doc]) @@ -45,7 +46,7 @@ AC_SUBST([ATKMM_SO_VERSION], [2:0:1]) AC_PROG_CXX -MM_AX_CXX_COMPILE_STDCXX_11([noext],[mandatory]) +MM_AX_CXX_COMPILE_STDCXX([11], [noext], [mandatory]) AC_DISABLE_STATIC LT_INIT([win32-dll]) @@ -77,9 +78,9 @@ atk/atkmm/Makefile doc/Makefile doc/reference/Doxyfile - MSVC_Net2013/atkmm/atkmm.rc]) + MSVC_NMake/atkmm/atkmm.rc]) # Copy the generated configuration headers into the MSVC project directories. -AC_CONFIG_COMMANDS([MSVC_Net2013/atkmm/atkmmconfig.h], - [cp -f atk/atkmmconfig.h MSVC_Net2013/atkmm/atkmmconfig.h]) +AC_CONFIG_COMMANDS([MSVC_NMake/atkmm/atkmmconfig.h], + [cp -f atk/atkmmconfig.h MSVC_NMake/atkmm/atkmmconfig.h]) AC_OUTPUT diff -Nru atkmm1.6-2.24.2/debian/changelog atkmm1.6-2.28.0/debian/changelog --- atkmm1.6-2.24.2/debian/changelog 2017-12-20 17:45:15.000000000 +0000 +++ atkmm1.6-2.28.0/debian/changelog 2018-11-23 03:01:40.000000000 +0000 @@ -1,3 +1,14 @@ +atkmm1.6 (2.28.0-1) unstable; urgency=medium + + * New upstream release + * Update Vcs fields for migration to https://salsa.debian.org/ + * debian/copyright: Add pre-generated docs to Files-Excluded + * Build-Depend on doxygen, graphviz & xsltproc to build docs + * libatkmm-1.6-doc: Don't depend on lynx | www-browser + * Bump Standads-Version to 4.2.1 + + -- Jeremy Bicha Thu, 22 Nov 2018 22:01:40 -0500 + atkmm1.6 (2.24.2-3) unstable; urgency=medium * Update Vcs fields for conversion to git diff -Nru atkmm1.6-2.24.2/debian/control atkmm1.6-2.28.0/debian/control --- atkmm1.6-2.24.2/debian/control 2017-12-20 17:45:15.000000000 +0000 +++ atkmm1.6-2.28.0/debian/control 2018-11-23 03:01:40.000000000 +0000 @@ -1,5 +1,5 @@ # This file is autogenerated. DO NOT EDIT! -# +# # Modifications should be made to debian/control.in instead. # This file is regenerated automatically in the clean target. Source: atkmm1.6 @@ -8,15 +8,18 @@ Maintainer: Debian GNOME Maintainers Uploaders: Debian Accessibility Team , Jeremy Bicha , Michael Biebl , Krzysztof Klimonda -Homepage: http://www.gtkmm.org/ -Vcs-Browser: https://anonscm.debian.org/git/pkg-gnome/atkmm.git -Vcs-Git: https://anonscm.debian.org/git/pkg-gnome/atkmm.git Build-Depends: debhelper (>= 11), + doxygen, gnome-pkg-tools (>= 0.11), + graphviz, libglibmm-2.4-dev (>= 2.46.2), libatk1.0-dev (>= 1.18), - mm-common (>= 0.9.8) -Standards-Version: 4.1.2 + mm-common (>= 0.9.8), + xsltproc +Standards-Version: 4.2.1 +Vcs-Browser: https://salsa.debian.org/gnome-team/atkmm +Vcs-Git: https://salsa.debian.org/gnome-team/atkmm.git +Homepage: http://www.gtkmm.org/ Package: libatkmm-1.6-dev Section: libdevel @@ -55,7 +58,6 @@ Multi-Arch: foreign Depends: ${misc:Depends}, ${shlibs:Depends}, - lynx | www-browser, doc-base Recommends: gtkmm-documentation Description: C++ wrappers for ATK accessibility toolkit (documentation) diff -Nru atkmm1.6-2.24.2/debian/control.in atkmm1.6-2.28.0/debian/control.in --- atkmm1.6-2.24.2/debian/control.in 2017-12-20 17:45:15.000000000 +0000 +++ atkmm1.6-2.28.0/debian/control.in 2018-11-23 03:01:40.000000000 +0000 @@ -4,15 +4,18 @@ Maintainer: Debian GNOME Maintainers Uploaders: Debian Accessibility Team , @GNOME_TEAM@, Krzysztof Klimonda -Homepage: http://www.gtkmm.org/ -Vcs-Browser: https://anonscm.debian.org/git/pkg-gnome/atkmm.git -Vcs-Git: https://anonscm.debian.org/git/pkg-gnome/atkmm.git Build-Depends: debhelper (>= 11), + doxygen, gnome-pkg-tools (>= 0.11), + graphviz, libglibmm-2.4-dev (>= 2.46.2), libatk1.0-dev (>= 1.18), - mm-common (>= 0.9.8) -Standards-Version: 4.1.2 + mm-common (>= 0.9.8), + xsltproc +Standards-Version: 4.2.1 +Vcs-Browser: https://salsa.debian.org/gnome-team/atkmm +Vcs-Git: https://salsa.debian.org/gnome-team/atkmm.git +Homepage: http://www.gtkmm.org/ Package: libatkmm-1.6-dev Section: libdevel @@ -51,7 +54,6 @@ Multi-Arch: foreign Depends: ${misc:Depends}, ${shlibs:Depends}, - lynx | www-browser, doc-base Recommends: gtkmm-documentation Description: C++ wrappers for ATK accessibility toolkit (documentation) diff -Nru atkmm1.6-2.24.2/debian/copyright atkmm1.6-2.28.0/debian/copyright --- atkmm1.6-2.24.2/debian/copyright 2017-12-20 17:45:15.000000000 +0000 +++ atkmm1.6-2.28.0/debian/copyright 2018-11-23 03:01:40.000000000 +0000 @@ -4,6 +4,9 @@ Source: https://download.gnome.org/sources/atkmm/ X-Debianized-By: Krzysztof Klimonda X-Debianized-Date: Tue, 03 Nov 2010 21:59:23 +0100 +Files-Excluded: doc/reference/html + doc/reference/atkmm* +Comment: Rebuild docs from source Files: * Copyright: diff -Nru atkmm1.6-2.24.2/debian/gbp.conf atkmm1.6-2.28.0/debian/gbp.conf --- atkmm1.6-2.24.2/debian/gbp.conf 2017-12-20 17:45:15.000000000 +0000 +++ atkmm1.6-2.28.0/debian/gbp.conf 2018-11-23 03:01:40.000000000 +0000 @@ -1,5 +1,17 @@ [DEFAULT] pristine-tar = True -debian-branch=debian/master -upstream-branch=upstream/latest +debian-branch = debian/master +upstream-branch = upstream/latest + +[buildpackage] +sign-tags = True + +[dch] +multimaint-merge = True + +[import-orig] +postimport = dch -v%(version)s New upstream release; git add debian/changelog; debcommit upstream-vcs-tag = %(version)s + +[pq] +patch-numbers = False diff -Nru atkmm1.6-2.24.2/debian/rules atkmm1.6-2.28.0/debian/rules --- atkmm1.6-2.24.2/debian/rules 2017-12-20 17:45:15.000000000 +0000 +++ atkmm1.6-2.28.0/debian/rules 2018-11-23 03:01:40.000000000 +0000 @@ -1,7 +1,4 @@ #!/usr/bin/make -f --include /usr/share/gnome-pkg-tools/1/rules/gnome-get-source.mk - -GNOME_MODULE := atkmm SHARED_PKG := $(shell sed -rn 's/^Package:[[:space:]]*(libatkmm-[[:digit:]\.]+-[[:digit:]][[:alnum:]]*)[[:space:]]*$$/\1/p' debian/control) SHVER := 2.24.0 diff -Nru atkmm1.6-2.24.2/doc/Makefile.am atkmm1.6-2.28.0/doc/Makefile.am --- atkmm1.6-2.24.2/doc/Makefile.am 2014-12-09 08:04:03.793553865 +0000 +++ atkmm1.6-2.28.0/doc/Makefile.am 2018-10-31 17:51:16.681585733 +0000 @@ -16,7 +16,7 @@ ## along with this program. If not, see . include $(top_srcdir)/atk/src/filelist.am -include $(top_srcdir)/atk/atkmm/filelist.am +include $(top_srcdir)/atk/atkmm/filelist.gmake.am atkmm_files_h = $(atkmm_files_built_h) $(filter-out wrap_init.h,$(atkmm_files_extra_h)) diff -Nru atkmm1.6-2.24.2/doc/Makefile.in atkmm1.6-2.28.0/doc/Makefile.in --- atkmm1.6-2.24.2/doc/Makefile.in 2015-11-29 20:04:51.427418011 +0000 +++ atkmm1.6-2.28.0/doc/Makefile.in 2018-11-04 11:44:50.911548061 +0000 @@ -1,7 +1,7 @@ -# Makefile.in generated by automake 1.15 from Makefile.am. +# Makefile.in generated by automake 1.16.1 from Makefile.am. # @configure_input@ -# Copyright (C) 1994-2014 Free Software Foundation, Inc. +# Copyright (C) 1994-2018 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -158,6 +158,7 @@ am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) am__DIST_COMMON = $(srcdir)/Makefile.in \ $(top_srcdir)/atk/atkmm/filelist.am \ + $(top_srcdir)/atk/atkmm/filelist.gmake.am \ $(top_srcdir)/atk/src/filelist.am \ $(top_srcdir)/build/doc-reference.am DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) @@ -224,6 +225,7 @@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ +LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ MAINT = @MAINT@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ @@ -299,6 +301,7 @@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ +runstatedir = @runstatedir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ @@ -341,10 +344,12 @@ atkmm_files_ccg = $(atkmm_files_hg:.hg=.ccg) atkmm_files_built_cc = $(atkmm_files_hg:.hg=.cc) wrap_init.cc atkmm_files_built_h = $(atkmm_files_hg:.hg=.h) -atkmm_files_built_ph = $(patsubst %.hg,private/%_p.h,$(atkmm_files_hg)) atkmm_files_extra_cc = init.cc atkmm_files_extra_h = init.h wrap_init.h atkmm_files_extra_ph = + +# Split out from $(srcdir)/filelist.am +atkmm_files_built_ph = $(patsubst %.hg,private/%_p.h,$(atkmm_files_hg)) atkmm_files_h = $(atkmm_files_built_h) $(filter-out wrap_init.h,$(atkmm_files_extra_h)) book_name = $(ATKMM_MODULE_NAME) doc_input = $(top_srcdir)/atk/atkmm.h $(addprefix $(top_srcdir)/atk/atkmm/,$(atkmm_files_h)) @@ -425,7 +430,7 @@ all: all-am .SUFFIXES: -$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(top_srcdir)/atk/src/filelist.am $(top_srcdir)/atk/atkmm/filelist.am $(top_srcdir)/build/doc-reference.am $(am__configure_deps) +$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(top_srcdir)/atk/src/filelist.am $(top_srcdir)/atk/atkmm/filelist.gmake.am $(top_srcdir)/atk/atkmm/filelist.am $(top_srcdir)/build/doc-reference.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ @@ -442,10 +447,10 @@ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ - echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \ esac; -$(top_srcdir)/atk/src/filelist.am $(top_srcdir)/atk/atkmm/filelist.am $(top_srcdir)/build/doc-reference.am $(am__empty): +$(top_srcdir)/atk/src/filelist.am $(top_srcdir)/atk/atkmm/filelist.gmake.am $(top_srcdir)/atk/atkmm/filelist.am $(top_srcdir)/build/doc-reference.am $(am__empty): $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh @@ -489,7 +494,10 @@ cscope cscopelist: -distdir: $(DISTFILES) +distdir: $(BUILT_SOURCES) + $(MAKE) $(AM_MAKEFLAGS) distdir-am + +distdir-am: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ diff -Nru atkmm1.6-2.24.2/doc/reference/atkmm-1.6.devhelp2 atkmm1.6-2.28.0/doc/reference/atkmm-1.6.devhelp2 --- atkmm1.6-2.24.2/doc/reference/atkmm-1.6.devhelp2 2015-11-29 20:05:33.691303573 +0000 +++ atkmm1.6-2.28.0/doc/reference/atkmm-1.6.devhelp2 1970-01-01 00:00:00.000000000 +0000 @@ -1,821 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru atkmm1.6-2.24.2/doc/reference/atkmm-1.6.tag atkmm1.6-2.28.0/doc/reference/atkmm-1.6.tag --- atkmm1.6-2.24.2/doc/reference/atkmm-1.6.tag 2015-11-29 20:05:32.763321184 +0000 +++ atkmm1.6-2.28.0/doc/reference/atkmm-1.6.tag 1970-01-01 00:00:00.000000000 +0000 @@ -1,18936 +0,0 @@ - - - - atkmm.h - /home/murrayc/checkout/gnome/atkmm/atk/ - atkmm_8h - - - action.h - /home/murrayc/checkout/gnome/atkmm/atk/atkmm/ - action_8h - Atk::Action - Atk - - - action.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/gio/giomm/ - action_8h - - - component.h - /home/murrayc/checkout/gnome/atkmm/atk/atkmm/ - component_8h - Atk::Component - Atk - - - CoordType - group__atkmmEnums.html - ga6c71d0aa1d2e5c4917bafa3f12c811c2 - - - - - Layer - group__atkmmEnums.html - ga880a348fd3270c7bca549113c38501a8 - - - - - document.h - /home/murrayc/checkout/gnome/atkmm/atk/atkmm/ - document_8h - Atk::Document - Atk - - - editabletext.h - /home/murrayc/checkout/gnome/atkmm/atk/atkmm/ - editabletext_8h - Atk::EditableText - Atk - - - hyperlink.h - /home/murrayc/checkout/gnome/atkmm/atk/atkmm/ - hyperlink_8h - Atk::Hyperlink - Atk - - - hypertext.h - /home/murrayc/checkout/gnome/atkmm/atk/atkmm/ - hypertext_8h - Atk::Hypertext - Atk - - - image.h - /home/murrayc/checkout/gnome/atkmm/atk/atkmm/ - image_8h - Atk::Image - Atk - - - implementor.h - /home/murrayc/checkout/gnome/atkmm/atk/atkmm/ - implementor_8h - Atk::Implementor - Atk - - - init.h - /home/murrayc/checkout/gnome/atkmm/atk/atkmm/ - init_8h - Atk - - void - init - namespaceAtk.html - a29ec8cc19a1bc9fcd00565da12583e1e - () - - - - init.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/glib/glibmm/ - glib_2glibmm_2init_8h - - - init.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/gio/giomm/ - gio_2giomm_2init_8h - - - noopobject.h - /home/murrayc/checkout/gnome/atkmm/atk/atkmm/ - noopobject_8h - Atk::NoOpObject - Atk - - - object.h - /home/murrayc/checkout/gnome/atkmm/atk/atkmm/ - object_8h - Atk::Object - Atk - - guint64 - State - namespaceAtk.html - ac8c786b6146e720a10e40c9a6483f153 - - - - - Role - group__atkmmEnums.html - ga19e4dff08645ca208cdf524836a1be27 - - - - - object.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/glib/glibmm/ - object_8h - - - objectaccessible.h - /home/murrayc/checkout/gnome/atkmm/atk/atkmm/ - objectaccessible_8h - Atk::ObjectAccessible - Atk - - - range.h - /home/murrayc/checkout/gnome/atkmm/atk/atkmm/ - range_8h - Atk::Range - Atk - - - relation.h - /home/murrayc/checkout/gnome/atkmm/atk/atkmm/ - relation_8h - Atk::Relation - Atk - - - RelationType - group__atkmmEnums.html - ga83c3f0442ea6f73e32064b0caab555e5 - - - - - relationset.h - /home/murrayc/checkout/gnome/atkmm/atk/atkmm/ - relationset_8h - Atk::RelationSet - Atk - - - selection.h - /home/murrayc/checkout/gnome/atkmm/atk/atkmm/ - selection_8h - Atk::Selection - Atk - - - stateset.h - /home/murrayc/checkout/gnome/atkmm/atk/atkmm/ - stateset_8h - Atk::StateSet - Atk - - - StateType - group__atkmmEnums.html - ga2b925d92032639815edcfd9b0f53d15e - - - - - streamablecontent.h - /home/murrayc/checkout/gnome/atkmm/atk/atkmm/ - streamablecontent_8h - Atk::StreamableContent - Atk - - - table.h - /home/murrayc/checkout/gnome/atkmm/atk/atkmm/ - table_8h - Atk::Table - Atk - - - text.h - /home/murrayc/checkout/gnome/atkmm/atk/atkmm/ - text_8h - Atk::Attribute - Atk::AttributeTraits - Atk::TextAttribute - Atk::Text - Atk - - Glib::SListHandle< Attribute, AttributeTraits > - AttributeSet - namespaceAtk.html - a8759d34cf55e51e9f1a43d0bf4a6db31 - - - - - BuiltinTextAttribute - group__atkmmEnums.html - ga570689825e833a547382a99c553e389c - - - - - TextBoundary - group__atkmmEnums.html - gace98a3ea010fe92c359fa4bcd4aaea5b - - - - - TextClipType - group__atkmmEnums.html - ga0b25ada8fc7111dfed7f6550a6874102 - - - - - TextGranularity - group__atkmmEnums.html - ga19fa84ea5f7567a68ebe784b9d3157ac - - - - - value.h - /home/murrayc/checkout/gnome/atkmm/atk/atkmm/ - value_8h - Atk::Value - Atk - - - value.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/glib/glibmm/ - value_8h - - - giomm.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/gio/ - giomm_8h - - - actiongroup.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/gio/giomm/ - actiongroup_8h - - - actionmap.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/gio/giomm/ - actionmap_8h - - - appinfo.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/gio/giomm/ - appinfo_8h - - - applaunchcontext.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/gio/giomm/ - applaunchcontext_8h - - - application.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/gio/giomm/ - application_8h - - - applicationcommandline.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/gio/giomm/ - applicationcommandline_8h - - - asyncinitable.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/gio/giomm/ - asyncinitable_8h - - - asyncresult.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/gio/giomm/ - asyncresult_8h - - - bufferedinputstream.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/gio/giomm/ - bufferedinputstream_8h - - - bufferedoutputstream.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/gio/giomm/ - bufferedoutputstream_8h - - - cancellable.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/gio/giomm/ - cancellable_8h - - - charsetconverter.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/gio/giomm/ - charsetconverter_8h - - - contenttype.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/gio/giomm/ - contenttype_8h - - - converter.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/gio/giomm/ - converter_8h - - - converterinputstream.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/gio/giomm/ - converterinputstream_8h - - - converteroutputstream.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/gio/giomm/ - converteroutputstream_8h - - - credentials.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/gio/giomm/ - credentials_8h - - - datainputstream.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/gio/giomm/ - datainputstream_8h - - - dataoutputstream.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/gio/giomm/ - dataoutputstream_8h - - - dbusactiongroup.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/gio/giomm/ - dbusactiongroup_8h - - - dbusaddress.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/gio/giomm/ - dbusaddress_8h - - - dbusauthobserver.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/gio/giomm/ - dbusauthobserver_8h - - - dbusconnection.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/gio/giomm/ - dbusconnection_8h - - - dbuserror.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/gio/giomm/ - dbuserror_8h - - - dbuserrorutils.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/gio/giomm/ - dbuserrorutils_8h - - - dbusinterface.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/gio/giomm/ - dbusinterface_8h - - - dbusinterfaceskeleton.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/gio/giomm/ - dbusinterfaceskeleton_8h - - - dbusinterfacevtable.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/gio/giomm/ - dbusinterfacevtable_8h - - - dbusintrospection.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/gio/giomm/ - dbusintrospection_8h - - - dbusmenumodel.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/gio/giomm/ - dbusmenumodel_8h - - - dbusmessage.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/gio/giomm/ - dbusmessage_8h - - - dbusmethodinvocation.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/gio/giomm/ - dbusmethodinvocation_8h - - - dbusobject.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/gio/giomm/ - dbusobject_8h - - - dbusownname.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/gio/giomm/ - dbusownname_8h - - - dbusproxy.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/gio/giomm/ - dbusproxy_8h - - - dbusserver.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/gio/giomm/ - dbusserver_8h - - - dbussubtreevtable.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/gio/giomm/ - dbussubtreevtable_8h - - - dbusutils.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/gio/giomm/ - dbusutils_8h - - - dbuswatchname.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/gio/giomm/ - dbuswatchname_8h - - - desktopappinfo.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/gio/giomm/ - desktopappinfo_8h - - - drive.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/gio/giomm/ - drive_8h - - - emblem.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/gio/giomm/ - emblem_8h - - - emblemedicon.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/gio/giomm/ - emblemedicon_8h - - - enums.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/gio/giomm/ - enums_8h - - - file.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/gio/giomm/ - file_8h - - - fileattributeinfo.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/gio/giomm/ - fileattributeinfo_8h - - - fileattributeinfolist.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/gio/giomm/ - fileattributeinfolist_8h - - - fileenumerator.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/gio/giomm/ - fileenumerator_8h - - - fileicon.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/gio/giomm/ - fileicon_8h - - - fileinfo.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/gio/giomm/ - fileinfo_8h - - - fileinputstream.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/gio/giomm/ - fileinputstream_8h - - - fileiostream.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/gio/giomm/ - fileiostream_8h - - - filemonitor.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/gio/giomm/ - filemonitor_8h - - - filenamecompleter.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/gio/giomm/ - filenamecompleter_8h - - - fileoutputstream.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/gio/giomm/ - fileoutputstream_8h - - - filterinputstream.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/gio/giomm/ - filterinputstream_8h - - - filteroutputstream.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/gio/giomm/ - filteroutputstream_8h - - - icon.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/gio/giomm/ - icon_8h - - - inetaddress.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/gio/giomm/ - inetaddress_8h - - - inetsocketaddress.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/gio/giomm/ - inetsocketaddress_8h - - - initable.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/gio/giomm/ - initable_8h - - - inputstream.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/gio/giomm/ - inputstream_8h - - - iostream.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/gio/giomm/ - iostream_8h - - - loadableicon.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/gio/giomm/ - loadableicon_8h - - - memoryinputstream.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/gio/giomm/ - memoryinputstream_8h - - - memoryoutputstream.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/gio/giomm/ - memoryoutputstream_8h - - - menu.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/gio/giomm/ - menu_8h - - - menuattributeiter.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/gio/giomm/ - menuattributeiter_8h - - - menuitem.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/gio/giomm/ - menuitem_8h - - - menulinkiter.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/gio/giomm/ - menulinkiter_8h - - - menumodel.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/gio/giomm/ - menumodel_8h - - - mount.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/gio/giomm/ - mount_8h - - - mountoperation.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/gio/giomm/ - mountoperation_8h - - - networkaddress.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/gio/giomm/ - networkaddress_8h - - - networkmonitor.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/gio/giomm/ - networkmonitor_8h - - - networkservice.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/gio/giomm/ - networkservice_8h - - - notification.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/gio/giomm/ - notification_8h - - - outputstream.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/gio/giomm/ - outputstream_8h - - - permission.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/gio/giomm/ - permission_8h - - - pollableinputstream.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/gio/giomm/ - pollableinputstream_8h - - - pollableoutputstream.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/gio/giomm/ - pollableoutputstream_8h - - - proxy.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/gio/giomm/ - proxy_8h - - - proxyaddress.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/gio/giomm/ - proxyaddress_8h - - - proxyresolver.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/gio/giomm/ - proxyresolver_8h - - - remoteactiongroup.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/gio/giomm/ - remoteactiongroup_8h - - - resolver.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/gio/giomm/ - resolver_8h - - - resource.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/gio/giomm/ - resource_8h - - - seekable.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/gio/giomm/ - seekable_8h - - - settingsschema.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/gio/giomm/ - settingsschema_8h - - - settingsschemakey.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/gio/giomm/ - settingsschemakey_8h - - - settingsschemasource.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/gio/giomm/ - settingsschemasource_8h - - - simpleaction.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/gio/giomm/ - simpleaction_8h - - - simpleactiongroup.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/gio/giomm/ - simpleactiongroup_8h - - - simpleiostream.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/gio/giomm/ - simpleiostream_8h - - - simplepermission.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/gio/giomm/ - simplepermission_8h - - - socket.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/gio/giomm/ - socket_8h - - - socketaddress.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/gio/giomm/ - socketaddress_8h - - - socketaddressenumerator.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/gio/giomm/ - socketaddressenumerator_8h - - - socketclient.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/gio/giomm/ - socketclient_8h - - - socketconnectable.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/gio/giomm/ - socketconnectable_8h - - - socketconnection.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/gio/giomm/ - socketconnection_8h - - - socketcontrolmessage.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/gio/giomm/ - socketcontrolmessage_8h - - - socketlistener.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/gio/giomm/ - socketlistener_8h - - - socketservice.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/gio/giomm/ - socketservice_8h - - - socketsource.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/gio/giomm/ - socketsource_8h - - - srvtarget.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/gio/giomm/ - srvtarget_8h - - - tcpconnection.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/gio/giomm/ - tcpconnection_8h - - - tcpwrapperconnection.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/gio/giomm/ - tcpwrapperconnection_8h - - - themedicon.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/gio/giomm/ - themedicon_8h - - - threadedsocketservice.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/gio/giomm/ - threadedsocketservice_8h - - - tlscertificate.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/gio/giomm/ - tlscertificate_8h - - - tlsclientconnection.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/gio/giomm/ - tlsclientconnection_8h - - - tlsconnection.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/gio/giomm/ - tlsconnection_8h - - - tlsdatabase.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/gio/giomm/ - tlsdatabase_8h - - - tlsinteraction.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/gio/giomm/ - tlsinteraction_8h - - - tlspassword.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/gio/giomm/ - tlspassword_8h - - - tlsserverconnection.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/gio/giomm/ - tlsserverconnection_8h - - - unixconnection.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/gio/giomm/ - unixconnection_8h - - - unixcredentialsmessage.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/gio/giomm/ - unixcredentialsmessage_8h - - - unixfdlist.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/gio/giomm/ - unixfdlist_8h - - - unixfdmessage.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/gio/giomm/ - unixfdmessage_8h - - - unixinputstream.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/gio/giomm/ - unixinputstream_8h - - - unixoutputstream.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/gio/giomm/ - unixoutputstream_8h - - - unixsocketaddress.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/gio/giomm/ - unixsocketaddress_8h - - - volume.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/gio/giomm/ - volume_8h - - - volumemonitor.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/gio/giomm/ - volumemonitor_8h - - - zlibcompressor.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/gio/giomm/ - zlibcompressor_8h - - - zlibdecompressor.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/gio/giomm/ - zlibdecompressor_8h - - - glibmm.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/glib/ - glibmm_8h - - - arrayhandle.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/glib/glibmm/ - arrayhandle_8h - - - balancedtree.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/glib/glibmm/ - balancedtree_8h - - - base64.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/glib/glibmm/ - base64_8h - - - binding.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/glib/glibmm/ - binding_8h - - - bytearray.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/glib/glibmm/ - bytearray_8h - - - bytes.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/glib/glibmm/ - bytes_8h - - - checksum.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/glib/glibmm/ - checksum_8h - - - class.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/glib/glibmm/ - class_8h - - - containerhandle_shared.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/glib/glibmm/ - containerhandle__shared_8h - - - containers.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/glib/glibmm/ - containers_8h - - - convert.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/glib/glibmm/ - convert_8h - - - date.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/glib/glibmm/ - date_8h - - - datetime.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/glib/glibmm/ - datetime_8h - - - dispatcher.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/glib/glibmm/ - dispatcher_8h - - - error.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/glib/glibmm/ - glib_2glibmm_2error_8h - - - error.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/gio/giomm/ - gio_2giomm_2error_8h - - - exception.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/glib/glibmm/ - exception_8h - - - exceptionhandler.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/glib/glibmm/ - exceptionhandler_8h - - - fileutils.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/glib/glibmm/ - fileutils_8h - - - helperlist.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/glib/glibmm/ - helperlist_8h - - - i18n-lib.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/glib/glibmm/ - i18n-lib_8h - - - i18n.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/glib/glibmm/ - i18n_8h - - - interface.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/glib/glibmm/ - interface_8h - - - iochannel.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/glib/glibmm/ - iochannel_8h - - - keyfile.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/glib/glibmm/ - keyfile_8h - - - listhandle.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/glib/glibmm/ - listhandle_8h - - - main.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/glib/glibmm/ - main_8h - - - markup.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/glib/glibmm/ - markup_8h - - - miscutils.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/glib/glibmm/ - miscutils_8h - - - module.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/glib/glibmm/ - module_8h - - - nodetree.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/glib/glibmm/ - nodetree_8h - - - objectbase.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/glib/glibmm/ - objectbase_8h - - - optioncontext.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/glib/glibmm/ - optioncontext_8h - - - optionentry.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/glib/glibmm/ - optionentry_8h - - - optiongroup.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/glib/glibmm/ - optiongroup_8h - - - pattern.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/glib/glibmm/ - pattern_8h - - - priorities.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/glib/glibmm/ - priorities_8h - - - property.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/glib/glibmm/ - property_8h - - - propertyproxy.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/glib/glibmm/ - propertyproxy_8h - - - propertyproxy_base.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/glib/glibmm/ - propertyproxy__base_8h - - - quark.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/glib/glibmm/ - quark_8h - - - refptr.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/glib/glibmm/ - refptr_8h - - - sarray.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/glib/glibmm/ - sarray_8h - - - shell.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/glib/glibmm/ - shell_8h - - - signalproxy.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/glib/glibmm/ - signalproxy_8h - - - signalproxy_connectionnode.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/glib/glibmm/ - signalproxy__connectionnode_8h - - - slisthandle.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/glib/glibmm/ - slisthandle_8h - - - spawn.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/glib/glibmm/ - spawn_8h - - - streamiochannel.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/glib/glibmm/ - streamiochannel_8h - - - stringutils.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/glib/glibmm/ - stringutils_8h - - - thread.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/glib/glibmm/ - thread_8h - - - threadpool.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/glib/glibmm/ - threadpool_8h - - - threads.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/glib/glibmm/ - threads_8h - - - timer.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/glib/glibmm/ - timer_8h - - - timeval.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/glib/glibmm/ - timeval_8h - - - timezone.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/glib/glibmm/ - timezone_8h - - - unicode.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/glib/glibmm/ - unicode_8h - - - uriutils.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/glib/glibmm/ - uriutils_8h - - - ustring.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/glib/glibmm/ - ustring_8h - - - utility.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/glib/glibmm/ - utility_8h - - - value_basictypes.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/glib/glibmm/ - value__basictypes_8h - - - value_custom.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/glib/glibmm/ - value__custom_8h - - - valuearray.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/glib/glibmm/ - valuearray_8h - - - variant.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/glib/glibmm/ - variant_8h - - - variant_basictypes.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/glib/glibmm/ - variant__basictypes_8h - - - variantdict.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/glib/glibmm/ - variantdict_8h - - - variantiter.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/glib/glibmm/ - variantiter_8h - - - varianttype.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/glib/glibmm/ - varianttype_8h - - - vectorutils.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/glib/glibmm/ - vectorutils_8h - - - weakref.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/glib/glibmm/ - weakref_8h - - - wrap.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/glib/glibmm/ - wrap_8h - - - adaptor_trait.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/home/murrayc/checkout/gnome/libsigc++2/sigc++/adaptors/ - adaptor__trait_8h - - - adaptor_trait.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/home/murrayc/checkout/gnome/libsigc++2/sigc++/adaptors/ - adaptor__trait_8h - - - adaptors.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/home/murrayc/checkout/gnome/libsigc++2/sigc++/adaptors/ - adaptors_8h - - - adaptors.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/home/murrayc/checkout/gnome/libsigc++2/sigc++/adaptors/ - adaptors_8h - - - bound_argument.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/home/murrayc/checkout/gnome/libsigc++2/sigc++/adaptors/ - bound__argument_8h - - - bound_argument.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/home/murrayc/checkout/gnome/libsigc++2/sigc++/adaptors/ - bound__argument_8h - - - compose.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/home/murrayc/checkout/gnome/libsigc++2/sigc++/adaptors/ - compose_8h - - - compose.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/home/murrayc/checkout/gnome/libsigc++2/sigc++/adaptors/ - compose_8h - - - deduce_result_type.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/home/murrayc/checkout/gnome/libsigc++2/sigc++/adaptors/ - deduce__result__type_8h - - - deduce_result_type.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/home/murrayc/checkout/gnome/libsigc++2/sigc++/adaptors/ - deduce__result__type_8h - - - exception_catch.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/home/murrayc/checkout/gnome/libsigc++2/sigc++/adaptors/ - exception__catch_8h - - - exception_catch.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/home/murrayc/checkout/gnome/libsigc++2/sigc++/adaptors/ - exception__catch_8h - - - hide.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/home/murrayc/checkout/gnome/libsigc++2/sigc++/adaptors/ - hide_8h - - - hide.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/home/murrayc/checkout/gnome/libsigc++2/sigc++/adaptors/ - hide_8h - - - base.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/home/murrayc/checkout/gnome/libsigc++2/sigc++/adaptors/lambda/ - base_8h - - - base.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/home/murrayc/checkout/gnome/libsigc++2/sigc++/adaptors/lambda/ - base_8h - - - select.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/home/murrayc/checkout/gnome/libsigc++2/sigc++/adaptors/lambda/ - select_8h - - - select.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/home/murrayc/checkout/gnome/libsigc++2/sigc++/adaptors/lambda/ - select_8h - - - retype.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/home/murrayc/checkout/gnome/libsigc++2/sigc++/adaptors/ - retype_8h - - - retype.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/home/murrayc/checkout/gnome/libsigc++2/sigc++/adaptors/ - retype_8h - - - track_obj.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/home/murrayc/checkout/gnome/libsigc++2/sigc++/adaptors/ - track__obj_8h - - - track_obj.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/home/murrayc/checkout/gnome/libsigc++2/sigc++/adaptors/ - track__obj_8h - - - bind.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/home/murrayc/checkout/gnome/libsigc++2/sigc++/ - bind_8h - - - bind.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/home/murrayc/checkout/gnome/libsigc++2/sigc++/adaptors/ - adaptors_2bind_8h - - - bind.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/home/murrayc/checkout/gnome/libsigc++2/sigc++/ - bind_8h - - - bind.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/home/murrayc/checkout/gnome/libsigc++2/sigc++/adaptors/ - adaptors_2bind_8h - - - bind_return.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/home/murrayc/checkout/gnome/libsigc++2/sigc++/ - bind__return_8h - - - bind_return.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/home/murrayc/checkout/gnome/libsigc++2/sigc++/adaptors/ - adaptors_2bind__return_8h - - - bind_return.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/home/murrayc/checkout/gnome/libsigc++2/sigc++/ - bind__return_8h - - - bind_return.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/home/murrayc/checkout/gnome/libsigc++2/sigc++/adaptors/ - adaptors_2bind__return_8h - - - connection.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/home/murrayc/checkout/gnome/libsigc++2/sigc++/ - connection_8h - - - connection.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/home/murrayc/checkout/gnome/libsigc++2/sigc++/ - connection_8h - - - functor_trait.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/home/murrayc/checkout/gnome/libsigc++2/sigc++/functors/ - functor__trait_8h - - - functor_trait.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/home/murrayc/checkout/gnome/libsigc++2/sigc++/functors/ - functor__trait_8h - - - functors.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/home/murrayc/checkout/gnome/libsigc++2/sigc++/functors/ - functors_8h - - - functors.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/home/murrayc/checkout/gnome/libsigc++2/sigc++/functors/ - functors_8h - - - mem_fun.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/home/murrayc/checkout/gnome/libsigc++2/sigc++/functors/ - mem__fun_8h - - - mem_fun.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/home/murrayc/checkout/gnome/libsigc++2/sigc++/functors/ - mem__fun_8h - - - ptr_fun.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/home/murrayc/checkout/gnome/libsigc++2/sigc++/functors/ - ptr__fun_8h - - - ptr_fun.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/home/murrayc/checkout/gnome/libsigc++2/sigc++/functors/ - ptr__fun_8h - - - slot_base.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/home/murrayc/checkout/gnome/libsigc++2/sigc++/functors/ - slot__base_8h - - - slot_base.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/home/murrayc/checkout/gnome/libsigc++2/sigc++/functors/ - slot__base_8h - - - limit_reference.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/home/murrayc/checkout/gnome/libsigc++2/sigc++/ - limit__reference_8h - - - limit_reference.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/home/murrayc/checkout/gnome/libsigc++2/sigc++/ - limit__reference_8h - - - reference_wrapper.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/home/murrayc/checkout/gnome/libsigc++2/sigc++/ - reference__wrapper_8h - - - reference_wrapper.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/home/murrayc/checkout/gnome/libsigc++2/sigc++/ - reference__wrapper_8h - - - retype_return.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/home/murrayc/checkout/gnome/libsigc++2/sigc++/ - retype__return_8h - - - retype_return.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/home/murrayc/checkout/gnome/libsigc++2/sigc++/adaptors/ - adaptors_2retype__return_8h - - - retype_return.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/home/murrayc/checkout/gnome/libsigc++2/sigc++/ - retype__return_8h - - - retype_return.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/home/murrayc/checkout/gnome/libsigc++2/sigc++/adaptors/ - adaptors_2retype__return_8h - - - sigc++.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/home/murrayc/checkout/gnome/libsigc++2/sigc++/ - sigc_09_09_8h - - - sigc++.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/home/murrayc/checkout/gnome/libsigc++2/sigc++/ - sigc_09_09_8h - - - signal.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/home/murrayc/checkout/gnome/libsigc++2/sigc++/ - signal_8h - - - signal.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/home/murrayc/checkout/gnome/libsigc++2/sigc++/ - signal_8h - - - signal_base.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/home/murrayc/checkout/gnome/libsigc++2/sigc++/ - signal__base_8h - - - signal_base.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/home/murrayc/checkout/gnome/libsigc++2/sigc++/ - signal__base_8h - - - slot.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/home/murrayc/checkout/gnome/libsigc++2/sigc++/ - slot_8h - - - slot.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/home/murrayc/checkout/gnome/libsigc++2/sigc++/functors/ - functors_2slot_8h - - - slot.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/home/murrayc/checkout/gnome/libsigc++2/sigc++/ - slot_8h - - - slot.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/home/murrayc/checkout/gnome/libsigc++2/sigc++/functors/ - functors_2slot_8h - - - trackable.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/home/murrayc/checkout/gnome/libsigc++2/sigc++/ - trackable_8h - - - trackable.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/home/murrayc/checkout/gnome/libsigc++2/sigc++/ - trackable_8h - - - visit_each.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/home/murrayc/checkout/gnome/libsigc++2/sigc++/ - visit__each_8h - - - visit_each.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/home/murrayc/checkout/gnome/libsigc++2/sigc++/ - visit__each_8h - - - algo.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a00970 - - - algo.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a00970 - - - algo.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a00970 - - - algo.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a00970 - - - algobase.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a00971 - - - algobase.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a00971 - - - algobase.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a00971 - - - algobase.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a00971 - - - parallel/algorithm - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a00974 - - - parallel/algorithm - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a00974 - - - parallel/algorithm - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a00974 - - - parallel/algorithm - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a00974 - - - ext/algorithm - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a00973 - - - ext/algorithm - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a00973 - - - ext/algorithm - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a00973 - - - ext/algorithm - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a00973 - - - algorithm - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a00972 - - - algorithm - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a00972 - - - algorithm - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a00972 - - - algorithm - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a00972 - - - parallel/algorithmfwd.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a00976 - - - parallel/algorithmfwd.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a00976 - - - parallel/algorithmfwd.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a00976 - - - parallel/algorithmfwd.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a00976 - - - bits/algorithmfwd.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a00975 - - - bits/algorithmfwd.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a00975 - - - bits/algorithmfwd.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a00975 - - - bits/algorithmfwd.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a00975 - - - aligned_buffer.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a00977 - - - aligned_buffer.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a00977 - - - aligned_buffer.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a00977 - - - aligned_buffer.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a00977 - - - ext/alloc_traits.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a00979 - - - ext/alloc_traits.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a00979 - - - ext/alloc_traits.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a00979 - - - ext/alloc_traits.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a00979 - - - bits/alloc_traits.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a00978 - - - bits/alloc_traits.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a00978 - - - bits/alloc_traits.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a00978 - - - bits/alloc_traits.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a00978 - - - allocator.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a00980 - - - allocator.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a00980 - - - allocator.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a00980 - - - allocator.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a00980 - - - array - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a00981 - - - array - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a00981 - - - array - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a00981 - - - array - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a00981 - - - array_allocator.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a00982 - - - array_allocator.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a00982 - - - array_allocator.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a00982 - - - array_allocator.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a00982 - - - assoc_container.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a00983 - - - assoc_container.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a00983 - - - assoc_container.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a00983 - - - assoc_container.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a00983 - - - atomic - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a00984 - - - atomic - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a00984 - - - atomic - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a00984 - - - atomic - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a00984 - - - atomic_base.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a00985 - - - atomic_base.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a00985 - - - atomic_base.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a00985 - - - atomic_base.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a00985 - - - atomic_lockfree_defines.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a00986 - - - atomic_lockfree_defines.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a00986 - - - atomic_lockfree_defines.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a00986 - - - atomic_lockfree_defines.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a00986 - - - atomic_word.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a00987 - - - atomic_word.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a00987 - - - atomic_word.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a00987 - - - atomic_word.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a00987 - - - atomicity.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a00988 - - - atomicity.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a00988 - - - atomicity.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a00988 - - - atomicity.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a00988 - - - auto_ptr.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a00989 - - - auto_ptr.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a00989 - - - auto_ptr.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a00989 - - - auto_ptr.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a00989 - - - backward_warning.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a00990 - - - backward_warning.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a00990 - - - backward_warning.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a00990 - - - backward_warning.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a00990 - - - balanced_quicksort.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a00991 - - - balanced_quicksort.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a00991 - - - balanced_quicksort.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a00991 - - - balanced_quicksort.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a00991 - - - parallel/base.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a00993 - - - parallel/base.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a00993 - - - parallel/base.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a00993 - - - parallel/base.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a00993 - - - profile/base.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a00992 - - - profile/base.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a00992 - - - profile/base.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a00992 - - - profile/base.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a00992 - - - basic_file.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a00994 - - - basic_file.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a00994 - - - basic_file.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a00994 - - - basic_file.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a00994 - - - basic_ios.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a00995 - - - basic_ios.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a00995 - - - basic_ios.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a00995 - - - basic_ios.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a00995 - - - basic_ios.tcc - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a00996 - - - basic_ios.tcc - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a00996 - - - basic_ios.tcc - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a00996 - - - basic_ios.tcc - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a00996 - - - basic_iterator.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a00997 - - - basic_iterator.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a00997 - - - basic_iterator.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a00997 - - - basic_iterator.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a00997 - - - basic_string.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a00998 - - - basic_string.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a00998 - - - basic_string.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a00998 - - - basic_string.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a00998 - - - basic_string.tcc - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a00999 - - - basic_string.tcc - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a00999 - - - basic_string.tcc - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a00999 - - - basic_string.tcc - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a00999 - - - bin_search_tree_.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01000 - - - bin_search_tree_.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01000 - - - bin_search_tree_.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01000 - - - bin_search_tree_.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01000 - - - binary_heap_.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01001 - - - binary_heap_.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01001 - - - binary_heap_.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01001 - - - binary_heap_.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01001 - - - binders.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01002 - - - binders.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01002 - - - binders.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01002 - - - binders.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01002 - - - binomial_heap_.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01003 - - - binomial_heap_.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01003 - - - binomial_heap_.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01003 - - - binomial_heap_.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01003 - - - binomial_heap_base_.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01004 - - - binomial_heap_base_.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01004 - - - binomial_heap_base_.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01004 - - - binomial_heap_base_.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01004 - - - bitmap_allocator.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01005 - - - bitmap_allocator.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01005 - - - bitmap_allocator.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01005 - - - bitmap_allocator.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01005 - - - profile/bitset - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01008 - - - profile/bitset - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01008 - - - profile/bitset - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01008 - - - profile/bitset - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01008 - - - debug/bitset - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01007 - - - debug/bitset - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01007 - - - debug/bitset - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01007 - - - debug/bitset - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01007 - - - bitset - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01006 - - - bitset - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01006 - - - bitset - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01006 - - - bitset - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01006 - - - bool_set - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01009 - - - bool_set - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01009 - - - bool_set - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01009 - - - bool_set - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01009 - - - bool_set.tcc - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01010 - - - bool_set.tcc - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01010 - - - bool_set.tcc - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01010 - - - bool_set.tcc - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01010 - - - boost_concept_check.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01011 - - - boost_concept_check.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01011 - - - boost_concept_check.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01011 - - - boost_concept_check.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01011 - - - branch_policy.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01012 - - - branch_policy.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01012 - - - branch_policy.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01012 - - - branch_policy.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01012 - - - c++0x_warning.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01013 - - - c++0x_warning.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01013 - - - c++0x_warning.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01013 - - - c++0x_warning.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01013 - - - c++14_warning.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01014 - - - c++14_warning.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01014 - - - c++14_warning.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01014 - - - c++14_warning.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01014 - - - c++allocator.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01015 - - - c++allocator.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01015 - - - c++allocator.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01015 - - - c++allocator.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01015 - - - c++config.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01016 - - - c++config.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01016 - - - c++config.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01016 - - - c++config.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01016 - - - c++io.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01017 - - - c++io.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01017 - - - c++io.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01017 - - - c++io.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01017 - - - c++locale.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01018 - - - c++locale.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01018 - - - c++locale.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01018 - - - c++locale.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01018 - - - c++locale_internal.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01019 - - - c++locale_internal.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01019 - - - c++locale_internal.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01019 - - - c++locale_internal.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01019 - - - cassert - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01020 - - - cassert - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01020 - - - cassert - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01020 - - - cassert - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01020 - - - cast.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01021 - - - cast.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01021 - - - cast.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01021 - - - cast.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01021 - - - cc_hash_max_collision_check_resize_trigger_imp.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01022 - - - cc_hash_max_collision_check_resize_trigger_imp.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01022 - - - cc_hash_max_collision_check_resize_trigger_imp.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01022 - - - cc_hash_max_collision_check_resize_trigger_imp.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01022 - - - cc_ht_map_.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01023 - - - cc_ht_map_.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01023 - - - cc_ht_map_.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01023 - - - cc_ht_map_.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01023 - - - tr1/ccomplex - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01025 - - - tr1/ccomplex - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01025 - - - tr1/ccomplex - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01025 - - - tr1/ccomplex - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01025 - - - ccomplex - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01024 - - - ccomplex - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01024 - - - ccomplex - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01024 - - - ccomplex - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01024 - - - tr1/cctype - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01027 - - - tr1/cctype - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01027 - - - tr1/cctype - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01027 - - - tr1/cctype - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01027 - - - cctype - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01026 - - - cctype - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01026 - - - cctype - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01026 - - - cctype - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01026 - - - cerrno - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01028 - - - cerrno - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01028 - - - cerrno - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01028 - - - cerrno - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01028 - - - tr1/cfenv - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01030 - - - tr1/cfenv - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01030 - - - tr1/cfenv - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01030 - - - tr1/cfenv - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01030 - - - cfenv - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01029 - - - cfenv - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01029 - - - cfenv - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01029 - - - cfenv - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01029 - - - tr1/cfloat - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01032 - - - tr1/cfloat - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01032 - - - tr1/cfloat - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01032 - - - tr1/cfloat - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01032 - - - cfloat - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01031 - - - cfloat - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01031 - - - cfloat - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01031 - - - cfloat - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01031 - - - char_traits.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01033 - - - char_traits.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01033 - - - char_traits.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01033 - - - char_traits.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01033 - - - checkers.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01034 - - - checkers.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01034 - - - checkers.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01034 - - - checkers.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01034 - - - chrono - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01035 - - - chrono - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01035 - - - chrono - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01035 - - - chrono - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01035 - - - tr1/cinttypes - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01037 - - - tr1/cinttypes - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01037 - - - tr1/cinttypes - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01037 - - - tr1/cinttypes - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01037 - - - cinttypes - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01036 - - - cinttypes - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01036 - - - cinttypes - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01036 - - - cinttypes - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01036 - - - ciso646 - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01038 - - - ciso646 - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01038 - - - ciso646 - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01038 - - - ciso646 - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01038 - - - tr1/climits - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01040 - - - tr1/climits - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01040 - - - tr1/climits - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01040 - - - tr1/climits - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01040 - - - climits - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01039 - - - climits - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01039 - - - climits - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01039 - - - climits - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01039 - - - clocale - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01041 - - - clocale - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01041 - - - clocale - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01041 - - - clocale - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01041 - - - tr1/cmath - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01043 - - - tr1/cmath - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01043 - - - tr1/cmath - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01043 - - - tr1/cmath - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01043 - - - cmath - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01042 - - - cmath - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01042 - - - cmath - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01042 - - - cmath - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01042 - - - cmp_fn_imps.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01044 - - - cmp_fn_imps.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01044 - - - cmp_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01044 - - - cmp_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01044 - - - codecvt.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01045 - - - codecvt.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01045 - - - codecvt.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01045 - - - codecvt.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01045 - - - codecvt_specializations.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01046 - - - codecvt_specializations.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01046 - - - codecvt_specializations.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01046 - - - codecvt_specializations.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01046 - - - parallel/compatibility.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01048 - - - parallel/compatibility.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01048 - - - parallel/compatibility.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01048 - - - parallel/compatibility.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01048 - - - x86_64-unknown-linux-gnu/bits/compatibility.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01047 - - - x86_64-unknown-linux-gnu/bits/compatibility.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01047 - - - x86_64-unknown-linux-gnu/bits/compatibility.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01047 - - - x86_64-unknown-linux-gnu/bits/compatibility.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01047 - - - compiletime_settings.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01049 - - - compiletime_settings.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01049 - - - compiletime_settings.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01049 - - - compiletime_settings.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01049 - - - tr1/complex - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01051 - - - tr1/complex - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01051 - - - tr1/complex - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01051 - - - tr1/complex - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01051 - - - complex - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01050 - - - complex - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01050 - - - complex - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01050 - - - complex - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01050 - - - complex.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01052 - - - complex.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01052 - - - complex.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01052 - - - complex.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01052 - - - concept_check.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01053 - - - concept_check.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01053 - - - concept_check.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01053 - - - concept_check.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01053 - - - concurrence.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01054 - - - concurrence.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01054 - - - concurrence.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01054 - - - concurrence.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01054 - - - cond_dealtor.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01055 - - - cond_dealtor.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01055 - - - cond_dealtor.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01055 - - - cond_dealtor.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01055 - - - cond_key_dtor_entry_dealtor.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01056 - - - cond_key_dtor_entry_dealtor.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01056 - - - cond_key_dtor_entry_dealtor.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01056 - - - cond_key_dtor_entry_dealtor.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01056 - - - condition_variable - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01057 - - - condition_variable - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01057 - - - condition_variable - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01057 - - - condition_variable - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01057 - - - unordered_iterator/const_iterator.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01060 - - - unordered_iterator/const_iterator.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01060 - - - unordered_iterator/const_iterator.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01060 - - - unordered_iterator/const_iterator.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01060 - - - left_child_next_sibling_heap_/const_iterator.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01059 - - - left_child_next_sibling_heap_/const_iterator.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01059 - - - left_child_next_sibling_heap_/const_iterator.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01059 - - - left_child_next_sibling_heap_/const_iterator.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01059 - - - binary_heap_/const_iterator.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01058 - - - binary_heap_/const_iterator.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01058 - - - binary_heap_/const_iterator.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01058 - - - binary_heap_/const_iterator.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01058 - - - list_update_map_/constructor_destructor_fn_imps.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01063 - - - list_update_map_/constructor_destructor_fn_imps.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01063 - - - list_update_map_/constructor_destructor_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01063 - - - list_update_map_/constructor_destructor_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01063 - - - gp_hash_table_map_/constructor_destructor_fn_imps.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01062 - - - gp_hash_table_map_/constructor_destructor_fn_imps.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01062 - - - gp_hash_table_map_/constructor_destructor_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01062 - - - gp_hash_table_map_/constructor_destructor_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01062 - - - cc_hash_table_map_/constructor_destructor_fn_imps.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01061 - - - cc_hash_table_map_/constructor_destructor_fn_imps.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01061 - - - cc_hash_table_map_/constructor_destructor_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01061 - - - cc_hash_table_map_/constructor_destructor_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01061 - - - gp_hash_table_map_/constructor_destructor_no_store_hash_fn_imps.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01065 - - - gp_hash_table_map_/constructor_destructor_no_store_hash_fn_imps.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01065 - - - gp_hash_table_map_/constructor_destructor_no_store_hash_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01065 - - - gp_hash_table_map_/constructor_destructor_no_store_hash_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01065 - - - cc_hash_table_map_/constructor_destructor_no_store_hash_fn_imps.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01064 - - - cc_hash_table_map_/constructor_destructor_no_store_hash_fn_imps.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01064 - - - cc_hash_table_map_/constructor_destructor_no_store_hash_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01064 - - - cc_hash_table_map_/constructor_destructor_no_store_hash_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01064 - - - gp_hash_table_map_/constructor_destructor_store_hash_fn_imps.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01067 - - - gp_hash_table_map_/constructor_destructor_store_hash_fn_imps.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01067 - - - gp_hash_table_map_/constructor_destructor_store_hash_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01067 - - - gp_hash_table_map_/constructor_destructor_store_hash_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01067 - - - cc_hash_table_map_/constructor_destructor_store_hash_fn_imps.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01066 - - - cc_hash_table_map_/constructor_destructor_store_hash_fn_imps.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01066 - - - cc_hash_table_map_/constructor_destructor_store_hash_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01066 - - - cc_hash_table_map_/constructor_destructor_store_hash_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01066 - - - thin_heap_/constructors_destructor_fn_imps.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01079 - - - thin_heap_/constructors_destructor_fn_imps.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01079 - - - thin_heap_/constructors_destructor_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01079 - - - thin_heap_/constructors_destructor_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01079 - - - splay_tree_/constructors_destructor_fn_imps.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01078 - - - splay_tree_/constructors_destructor_fn_imps.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01078 - - - splay_tree_/constructors_destructor_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01078 - - - splay_tree_/constructors_destructor_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01078 - - - rc_binomial_heap_/constructors_destructor_fn_imps.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01077 - - - rc_binomial_heap_/constructors_destructor_fn_imps.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01077 - - - rc_binomial_heap_/constructors_destructor_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01077 - - - rc_binomial_heap_/constructors_destructor_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01077 - - - rb_tree_map_/constructors_destructor_fn_imps.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01076 - - - rb_tree_map_/constructors_destructor_fn_imps.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01076 - - - rb_tree_map_/constructors_destructor_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01076 - - - rb_tree_map_/constructors_destructor_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01076 - - - pat_trie_/constructors_destructor_fn_imps.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01075 - - - pat_trie_/constructors_destructor_fn_imps.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01075 - - - pat_trie_/constructors_destructor_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01075 - - - pat_trie_/constructors_destructor_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01075 - - - pairing_heap_/constructors_destructor_fn_imps.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01074 - - - pairing_heap_/constructors_destructor_fn_imps.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01074 - - - pairing_heap_/constructors_destructor_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01074 - - - pairing_heap_/constructors_destructor_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01074 - - - ov_tree_map_/constructors_destructor_fn_imps.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01073 - - - ov_tree_map_/constructors_destructor_fn_imps.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01073 - - - ov_tree_map_/constructors_destructor_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01073 - - - ov_tree_map_/constructors_destructor_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01073 - - - left_child_next_sibling_heap_/constructors_destructor_fn_imps.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01072 - - - left_child_next_sibling_heap_/constructors_destructor_fn_imps.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01072 - - - left_child_next_sibling_heap_/constructors_destructor_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01072 - - - left_child_next_sibling_heap_/constructors_destructor_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01072 - - - bin_search_tree_/constructors_destructor_fn_imps.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01071 - - - bin_search_tree_/constructors_destructor_fn_imps.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01071 - - - bin_search_tree_/constructors_destructor_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01071 - - - bin_search_tree_/constructors_destructor_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01071 - - - binomial_heap_base_/constructors_destructor_fn_imps.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01070 - - - binomial_heap_base_/constructors_destructor_fn_imps.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01070 - - - binomial_heap_base_/constructors_destructor_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01070 - - - binomial_heap_base_/constructors_destructor_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01070 - - - binomial_heap_/constructors_destructor_fn_imps.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01069 - - - binomial_heap_/constructors_destructor_fn_imps.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01069 - - - binomial_heap_/constructors_destructor_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01069 - - - binomial_heap_/constructors_destructor_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01069 - - - binary_heap_/constructors_destructor_fn_imps.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01068 - - - binary_heap_/constructors_destructor_fn_imps.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01068 - - - binary_heap_/constructors_destructor_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01068 - - - binary_heap_/constructors_destructor_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01068 - - - container_base_dispatch.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01080 - - - container_base_dispatch.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01080 - - - container_base_dispatch.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01080 - - - container_base_dispatch.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01080 - - - cpp_type_traits.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01081 - - - cpp_type_traits.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01081 - - - cpp_type_traits.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01081 - - - cpp_type_traits.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01081 - - - cpu_defines.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01082 - - - cpu_defines.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01082 - - - cpu_defines.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01082 - - - cpu_defines.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01082 - - - csetjmp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01083 - - - csetjmp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01083 - - - csetjmp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01083 - - - csetjmp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01083 - - - csignal - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01084 - - - csignal - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01084 - - - csignal - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01084 - - - csignal - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01084 - - - tr1/cstdarg - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01086 - - - tr1/cstdarg - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01086 - - - tr1/cstdarg - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01086 - - - tr1/cstdarg - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01086 - - - cstdarg - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01085 - - - cstdarg - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01085 - - - cstdarg - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01085 - - - cstdarg - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01085 - - - tr1/cstdbool - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01088 - - - tr1/cstdbool - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01088 - - - tr1/cstdbool - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01088 - - - tr1/cstdbool - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01088 - - - cstdbool - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01087 - - - cstdbool - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01087 - - - cstdbool - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01087 - - - cstdbool - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01087 - - - cstddef - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01089 - - - cstddef - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01089 - - - cstddef - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01089 - - - cstddef - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01089 - - - tr1/cstdint - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01091 - - - tr1/cstdint - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01091 - - - tr1/cstdint - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01091 - - - tr1/cstdint - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01091 - - - cstdint - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01090 - - - cstdint - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01090 - - - cstdint - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01090 - - - cstdint - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01090 - - - tr1/cstdio - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01093 - - - tr1/cstdio - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01093 - - - tr1/cstdio - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01093 - - - tr1/cstdio - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01093 - - - cstdio - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01092 - - - cstdio - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01092 - - - cstdio - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01092 - - - cstdio - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01092 - - - tr1/cstdlib - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01095 - - - tr1/cstdlib - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01095 - - - tr1/cstdlib - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01095 - - - tr1/cstdlib - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01095 - - - cstdlib - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01094 - - - cstdlib - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01094 - - - cstdlib - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01094 - - - cstdlib - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01094 - - - cstring - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01096 - - - cstring - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01096 - - - cstring - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01096 - - - cstring - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01096 - - - tr1/ctgmath - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01098 - - - tr1/ctgmath - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01098 - - - tr1/ctgmath - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01098 - - - tr1/ctgmath - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01098 - - - ctgmath - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01097 - - - ctgmath - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01097 - - - ctgmath - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01097 - - - ctgmath - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01097 - - - tr1/ctime - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01100 - - - tr1/ctime - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01100 - - - tr1/ctime - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01100 - - - tr1/ctime - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01100 - - - ctime - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01099 - - - ctime - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01099 - - - ctime - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01099 - - - ctime - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01099 - - - ctype_base.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01101 - - - ctype_base.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01101 - - - ctype_base.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01101 - - - ctype_base.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01101 - - - ctype_inline.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01102 - - - ctype_inline.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01102 - - - ctype_inline.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01102 - - - ctype_inline.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01102 - - - tr1/cwchar - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01104 - - - tr1/cwchar - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01104 - - - tr1/cwchar - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01104 - - - tr1/cwchar - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01104 - - - cwchar - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01103 - - - cwchar - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01103 - - - cwchar - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01103 - - - cwchar - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01103 - - - tr1/cwctype - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01106 - - - tr1/cwctype - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01106 - - - tr1/cwctype - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01106 - - - tr1/cwctype - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01106 - - - cwctype - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01105 - - - cwctype - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01105 - - - cwctype - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01105 - - - cwctype - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01105 - - - cxxabi.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01107 - - - cxxabi.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01107 - - - cxxabi.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01107 - - - cxxabi.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01107 - - - cxxabi_forced.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01108 - - - cxxabi_forced.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01108 - - - cxxabi_forced.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01108 - - - cxxabi_forced.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01108 - - - cxxabi_tweaks.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01109 - - - cxxabi_tweaks.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01109 - - - cxxabi_tweaks.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01109 - - - cxxabi_tweaks.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01109 - - - debug.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01110 - - - debug.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01110 - - - debug.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/glib/glibmm/ - debug_8h - - - debug.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01110 - - - debug.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01110 - - - debug_allocator.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01111 - - - debug_allocator.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01111 - - - debug_allocator.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01111 - - - debug_allocator.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01111 - - - thin_heap_/debug_fn_imps.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01126 - - - thin_heap_/debug_fn_imps.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01126 - - - thin_heap_/debug_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01126 - - - thin_heap_/debug_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01126 - - - splay_tree_/debug_fn_imps.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01125 - - - splay_tree_/debug_fn_imps.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01125 - - - splay_tree_/debug_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01125 - - - splay_tree_/debug_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01125 - - - rc_binomial_heap_/debug_fn_imps.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01124 - - - rc_binomial_heap_/debug_fn_imps.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01124 - - - rc_binomial_heap_/debug_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01124 - - - rc_binomial_heap_/debug_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01124 - - - rb_tree_map_/debug_fn_imps.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01123 - - - rb_tree_map_/debug_fn_imps.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01123 - - - rb_tree_map_/debug_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01123 - - - rb_tree_map_/debug_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01123 - - - pat_trie_/debug_fn_imps.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01122 - - - pat_trie_/debug_fn_imps.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01122 - - - pat_trie_/debug_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01122 - - - pat_trie_/debug_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01122 - - - pairing_heap_/debug_fn_imps.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01121 - - - pairing_heap_/debug_fn_imps.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01121 - - - pairing_heap_/debug_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01121 - - - pairing_heap_/debug_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01121 - - - ov_tree_map_/debug_fn_imps.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01120 - - - ov_tree_map_/debug_fn_imps.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01120 - - - ov_tree_map_/debug_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01120 - - - ov_tree_map_/debug_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01120 - - - list_update_map_/debug_fn_imps.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01119 - - - list_update_map_/debug_fn_imps.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01119 - - - list_update_map_/debug_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01119 - - - list_update_map_/debug_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01119 - - - left_child_next_sibling_heap_/debug_fn_imps.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01118 - - - left_child_next_sibling_heap_/debug_fn_imps.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01118 - - - left_child_next_sibling_heap_/debug_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01118 - - - left_child_next_sibling_heap_/debug_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01118 - - - gp_hash_table_map_/debug_fn_imps.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01117 - - - gp_hash_table_map_/debug_fn_imps.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01117 - - - gp_hash_table_map_/debug_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01117 - - - gp_hash_table_map_/debug_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01117 - - - cc_hash_table_map_/debug_fn_imps.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01116 - - - cc_hash_table_map_/debug_fn_imps.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01116 - - - cc_hash_table_map_/debug_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01116 - - - cc_hash_table_map_/debug_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01116 - - - bin_search_tree_/debug_fn_imps.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01115 - - - bin_search_tree_/debug_fn_imps.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01115 - - - bin_search_tree_/debug_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01115 - - - bin_search_tree_/debug_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01115 - - - binomial_heap_base_/debug_fn_imps.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01114 - - - binomial_heap_base_/debug_fn_imps.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01114 - - - binomial_heap_base_/debug_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01114 - - - binomial_heap_base_/debug_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01114 - - - binomial_heap_/debug_fn_imps.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01113 - - - binomial_heap_/debug_fn_imps.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01113 - - - binomial_heap_/debug_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01113 - - - binomial_heap_/debug_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01113 - - - binary_heap_/debug_fn_imps.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01112 - - - binary_heap_/debug_fn_imps.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01112 - - - binary_heap_/debug_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01112 - - - binary_heap_/debug_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01112 - - - debug_map_base.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01127 - - - debug_map_base.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01127 - - - debug_map_base.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01127 - - - debug_map_base.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01127 - - - gp_hash_table_map_/debug_no_store_hash_fn_imps.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01129 - - - gp_hash_table_map_/debug_no_store_hash_fn_imps.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01129 - - - gp_hash_table_map_/debug_no_store_hash_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01129 - - - gp_hash_table_map_/debug_no_store_hash_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01129 - - - cc_hash_table_map_/debug_no_store_hash_fn_imps.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01128 - - - cc_hash_table_map_/debug_no_store_hash_fn_imps.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01128 - - - cc_hash_table_map_/debug_no_store_hash_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01128 - - - cc_hash_table_map_/debug_no_store_hash_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01128 - - - gp_hash_table_map_/debug_store_hash_fn_imps.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01131 - - - gp_hash_table_map_/debug_store_hash_fn_imps.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01131 - - - gp_hash_table_map_/debug_store_hash_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01131 - - - gp_hash_table_map_/debug_store_hash_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01131 - - - cc_hash_table_map_/debug_store_hash_fn_imps.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01130 - - - cc_hash_table_map_/debug_store_hash_fn_imps.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01130 - - - cc_hash_table_map_/debug_store_hash_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01130 - - - cc_hash_table_map_/debug_store_hash_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01130 - - - decimal - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01132 - - - decimal - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01132 - - - decimal - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01132 - - - decimal - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01132 - - - profile/deque - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01135 - - - profile/deque - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01135 - - - profile/deque - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01135 - - - profile/deque - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01135 - - - debug/deque - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01134 - - - debug/deque - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01134 - - - debug/deque - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01134 - - - debug/deque - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01134 - - - deque - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01133 - - - deque - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01133 - - - deque - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01133 - - - deque - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01133 - - - deque.tcc - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01136 - - - deque.tcc - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01136 - - - deque.tcc - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01136 - - - deque.tcc - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01136 - - - direct_mask_range_hashing_imp.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01137 - - - direct_mask_range_hashing_imp.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01137 - - - direct_mask_range_hashing_imp.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01137 - - - direct_mask_range_hashing_imp.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01137 - - - direct_mod_range_hashing_imp.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01138 - - - direct_mod_range_hashing_imp.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01138 - - - direct_mod_range_hashing_imp.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01138 - - - direct_mod_range_hashing_imp.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01138 - - - dynamic_bitset - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01140 - - - dynamic_bitset - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01140 - - - dynamic_bitset - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01140 - - - dynamic_bitset - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01140 - - - dynamic_bitset.tcc - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01141 - - - dynamic_bitset.tcc - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01141 - - - dynamic_bitset.tcc - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01141 - - - dynamic_bitset.tcc - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01141 - - - enable_special_members.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01142 - - - enable_special_members.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01142 - - - enable_special_members.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01142 - - - enable_special_members.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01142 - - - enc_filebuf.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01143 - - - enc_filebuf.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01143 - - - enc_filebuf.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01143 - - - enc_filebuf.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01143 - - - entry_cmp.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01144 - - - entry_cmp.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01144 - - - entry_cmp.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01144 - - - entry_cmp.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01144 - - - entry_list_fn_imps.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01145 - - - entry_list_fn_imps.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01145 - - - entry_list_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01145 - - - entry_list_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01145 - - - entry_metadata_base.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01146 - - - entry_metadata_base.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01146 - - - entry_metadata_base.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01146 - - - entry_metadata_base.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01146 - - - entry_pred.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01147 - - - entry_pred.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01147 - - - entry_pred.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01147 - - - entry_pred.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01147 - - - eq_by_less.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01148 - - - eq_by_less.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01148 - - - eq_by_less.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01148 - - - eq_by_less.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01148 - - - equally_split.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01149 - - - equally_split.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01149 - - - equally_split.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01149 - - - equally_split.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01149 - - - thin_heap_/erase_fn_imps.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01163 - - - thin_heap_/erase_fn_imps.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01163 - - - thin_heap_/erase_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01163 - - - thin_heap_/erase_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01163 - - - splay_tree_/erase_fn_imps.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01162 - - - splay_tree_/erase_fn_imps.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01162 - - - splay_tree_/erase_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01162 - - - splay_tree_/erase_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01162 - - - rc_binomial_heap_/erase_fn_imps.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01161 - - - rc_binomial_heap_/erase_fn_imps.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01161 - - - rc_binomial_heap_/erase_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01161 - - - rc_binomial_heap_/erase_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01161 - - - rb_tree_map_/erase_fn_imps.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01160 - - - rb_tree_map_/erase_fn_imps.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01160 - - - rb_tree_map_/erase_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01160 - - - rb_tree_map_/erase_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01160 - - - pat_trie_/erase_fn_imps.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01159 - - - pat_trie_/erase_fn_imps.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01159 - - - pat_trie_/erase_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01159 - - - pat_trie_/erase_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01159 - - - pairing_heap_/erase_fn_imps.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01158 - - - pairing_heap_/erase_fn_imps.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01158 - - - pairing_heap_/erase_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01158 - - - pairing_heap_/erase_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01158 - - - ov_tree_map_/erase_fn_imps.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01157 - - - ov_tree_map_/erase_fn_imps.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01157 - - - ov_tree_map_/erase_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01157 - - - ov_tree_map_/erase_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01157 - - - list_update_map_/erase_fn_imps.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01156 - - - list_update_map_/erase_fn_imps.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01156 - - - list_update_map_/erase_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01156 - - - list_update_map_/erase_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01156 - - - left_child_next_sibling_heap_/erase_fn_imps.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01155 - - - left_child_next_sibling_heap_/erase_fn_imps.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01155 - - - left_child_next_sibling_heap_/erase_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01155 - - - left_child_next_sibling_heap_/erase_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01155 - - - gp_hash_table_map_/erase_fn_imps.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01154 - - - gp_hash_table_map_/erase_fn_imps.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01154 - - - gp_hash_table_map_/erase_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01154 - - - gp_hash_table_map_/erase_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01154 - - - cc_hash_table_map_/erase_fn_imps.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01153 - - - cc_hash_table_map_/erase_fn_imps.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01153 - - - cc_hash_table_map_/erase_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01153 - - - cc_hash_table_map_/erase_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01153 - - - bin_search_tree_/erase_fn_imps.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01152 - - - bin_search_tree_/erase_fn_imps.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01152 - - - bin_search_tree_/erase_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01152 - - - bin_search_tree_/erase_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01152 - - - binomial_heap_base_/erase_fn_imps.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01151 - - - binomial_heap_base_/erase_fn_imps.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01151 - - - binomial_heap_base_/erase_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01151 - - - binomial_heap_base_/erase_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01151 - - - binary_heap_/erase_fn_imps.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01150 - - - binary_heap_/erase_fn_imps.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01150 - - - binary_heap_/erase_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01150 - - - binary_heap_/erase_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01150 - - - gp_hash_table_map_/erase_no_store_hash_fn_imps.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01165 - - - gp_hash_table_map_/erase_no_store_hash_fn_imps.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01165 - - - gp_hash_table_map_/erase_no_store_hash_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01165 - - - gp_hash_table_map_/erase_no_store_hash_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01165 - - - cc_hash_table_map_/erase_no_store_hash_fn_imps.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01164 - - - cc_hash_table_map_/erase_no_store_hash_fn_imps.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01164 - - - cc_hash_table_map_/erase_no_store_hash_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01164 - - - cc_hash_table_map_/erase_no_store_hash_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01164 - - - gp_hash_table_map_/erase_store_hash_fn_imps.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01167 - - - gp_hash_table_map_/erase_store_hash_fn_imps.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01167 - - - gp_hash_table_map_/erase_store_hash_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01167 - - - gp_hash_table_map_/erase_store_hash_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01167 - - - cc_hash_table_map_/erase_store_hash_fn_imps.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01166 - - - cc_hash_table_map_/erase_store_hash_fn_imps.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01166 - - - cc_hash_table_map_/erase_store_hash_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01166 - - - cc_hash_table_map_/erase_store_hash_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01166 - - - error_constants.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01168 - - - error_constants.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01168 - - - error_constants.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01168 - - - error_constants.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01168 - - - exception - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01169 - - - exception - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01169 - - - exception - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01169 - - - exception - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01169 - - - exception.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01170 - - - exception.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01170 - - - exception.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01170 - - - exception.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01170 - - - exception_defines.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01171 - - - exception_defines.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01171 - - - exception_defines.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01171 - - - exception_defines.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01171 - - - exception_ptr.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01172 - - - exception_ptr.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01172 - - - exception_ptr.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01172 - - - exception_ptr.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01172 - - - extc++.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01173 - - - extc++.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01173 - - - extc++.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01173 - - - extc++.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01173 - - - extptr_allocator.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01174 - - - extptr_allocator.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01174 - - - extptr_allocator.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01174 - - - extptr_allocator.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01174 - - - features.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01175 - - - features.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01175 - - - features.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01175 - - - features.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01175 - - - fenv.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01176 - - - fenv.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01176 - - - fenv.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01176 - - - fenv.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01176 - - - find.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01177 - - - find.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01177 - - - find.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01177 - - - find.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01177 - - - thin_heap_/find_fn_imps.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01188 - - - thin_heap_/find_fn_imps.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01188 - - - thin_heap_/find_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01188 - - - thin_heap_/find_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01188 - - - splay_tree_/find_fn_imps.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01187 - - - splay_tree_/find_fn_imps.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01187 - - - splay_tree_/find_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01187 - - - splay_tree_/find_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01187 - - - rb_tree_map_/find_fn_imps.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01186 - - - rb_tree_map_/find_fn_imps.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01186 - - - rb_tree_map_/find_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01186 - - - rb_tree_map_/find_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01186 - - - pat_trie_/find_fn_imps.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01185 - - - pat_trie_/find_fn_imps.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01185 - - - pat_trie_/find_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01185 - - - pat_trie_/find_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01185 - - - pairing_heap_/find_fn_imps.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01184 - - - pairing_heap_/find_fn_imps.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01184 - - - pairing_heap_/find_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01184 - - - pairing_heap_/find_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01184 - - - list_update_map_/find_fn_imps.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01183 - - - list_update_map_/find_fn_imps.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01183 - - - list_update_map_/find_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01183 - - - list_update_map_/find_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01183 - - - gp_hash_table_map_/find_fn_imps.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01182 - - - gp_hash_table_map_/find_fn_imps.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01182 - - - gp_hash_table_map_/find_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01182 - - - gp_hash_table_map_/find_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01182 - - - cc_hash_table_map_/find_fn_imps.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01181 - - - cc_hash_table_map_/find_fn_imps.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01181 - - - cc_hash_table_map_/find_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01181 - - - cc_hash_table_map_/find_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01181 - - - bin_search_tree_/find_fn_imps.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01180 - - - bin_search_tree_/find_fn_imps.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01180 - - - bin_search_tree_/find_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01180 - - - bin_search_tree_/find_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01180 - - - binomial_heap_base_/find_fn_imps.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01179 - - - binomial_heap_base_/find_fn_imps.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01179 - - - binomial_heap_base_/find_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01179 - - - binomial_heap_base_/find_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01179 - - - binary_heap_/find_fn_imps.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01178 - - - binary_heap_/find_fn_imps.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01178 - - - binary_heap_/find_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01178 - - - binary_heap_/find_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01178 - - - find_no_store_hash_fn_imps.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01189 - - - find_no_store_hash_fn_imps.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01189 - - - find_no_store_hash_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01189 - - - find_no_store_hash_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01189 - - - find_selectors.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01190 - - - find_selectors.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01190 - - - find_selectors.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01190 - - - find_selectors.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01190 - - - gp_hash_table_map_/find_store_hash_fn_imps.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01192 - - - gp_hash_table_map_/find_store_hash_fn_imps.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01192 - - - gp_hash_table_map_/find_store_hash_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01192 - - - gp_hash_table_map_/find_store_hash_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01192 - - - cc_hash_table_map_/find_store_hash_fn_imps.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01191 - - - cc_hash_table_map_/find_store_hash_fn_imps.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01191 - - - cc_hash_table_map_/find_store_hash_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01191 - - - cc_hash_table_map_/find_store_hash_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01191 - - - for_each.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01193 - - - for_each.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01193 - - - for_each.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01193 - - - for_each.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01193 - - - for_each_selectors.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01194 - - - for_each_selectors.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01194 - - - for_each_selectors.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01194 - - - for_each_selectors.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01194 - - - formatter.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01195 - - - formatter.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01195 - - - formatter.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01195 - - - formatter.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01195 - - - profile/forward_list - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01198 - - - profile/forward_list - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01198 - - - profile/forward_list - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01198 - - - profile/forward_list - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01198 - - - debug/forward_list - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01197 - - - debug/forward_list - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01197 - - - debug/forward_list - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01197 - - - debug/forward_list - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01197 - - - forward_list - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01196 - - - forward_list - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01196 - - - forward_list - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01196 - - - forward_list - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01196 - - - forward_list.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01199 - - - forward_list.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01199 - - - forward_list.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01199 - - - forward_list.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01199 - - - forward_list.tcc - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01200 - - - forward_list.tcc - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01200 - - - forward_list.tcc - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01200 - - - forward_list.tcc - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01200 - - - fstream - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01201 - - - fstream - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01201 - - - fstream - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01201 - - - fstream - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01201 - - - fstream.tcc - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01202 - - - fstream.tcc - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01202 - - - fstream.tcc - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01202 - - - fstream.tcc - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01202 - - - functexcept.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01203 - - - functexcept.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01203 - - - functexcept.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01203 - - - functexcept.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01203 - - - ext/functional - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01205 - - - ext/functional - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01205 - - - ext/functional - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01205 - - - ext/functional - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01205 - - - functional - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01204 - - - functional - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01204 - - - functional - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01204 - - - functional - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01204 - - - functional_hash.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01206 - - - functional_hash.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01206 - - - functional_hash.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01206 - - - functional_hash.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01206 - - - functions.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01207 - - - functions.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01207 - - - functions.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01207 - - - functions.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01207 - - - future - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01208 - - - future - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01208 - - - future - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01208 - - - future - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01208 - - - gp_ht_map_.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01209 - - - gp_ht_map_.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01209 - - - gp_ht_map_.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01209 - - - gp_ht_map_.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01209 - - - gslice.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01210 - - - gslice.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01210 - - - gslice.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01210 - - - gslice.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01210 - - - gslice_array.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01211 - - - gslice_array.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01211 - - - gslice_array.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01211 - - - gslice_array.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01211 - - - hash_bytes.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01217 - - - hash_bytes.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01217 - - - hash_bytes.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01217 - - - hash_bytes.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01217 - - - hash_eq_fn.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01218 - - - hash_eq_fn.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01218 - - - hash_eq_fn.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01218 - - - hash_eq_fn.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01218 - - - hash_exponential_size_policy_imp.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01219 - - - hash_exponential_size_policy_imp.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01219 - - - hash_exponential_size_policy_imp.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01219 - - - hash_exponential_size_policy_imp.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01219 - - - hash_fun.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01220 - - - hash_fun.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01220 - - - hash_fun.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01220 - - - hash_fun.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01220 - - - hash_load_check_resize_trigger_imp.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01221 - - - hash_load_check_resize_trigger_imp.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01221 - - - hash_load_check_resize_trigger_imp.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01221 - - - hash_load_check_resize_trigger_imp.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01221 - - - hash_load_check_resize_trigger_size_base.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01222 - - - hash_load_check_resize_trigger_size_base.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01222 - - - hash_load_check_resize_trigger_size_base.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01222 - - - hash_load_check_resize_trigger_size_base.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01222 - - - hash_map - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01223 - - - hash_map - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01223 - - - hash_map - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01223 - - - hash_map - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01223 - - - hash_policy.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01224 - - - hash_policy.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01224 - - - hash_policy.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01224 - - - hash_policy.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01224 - - - hash_prime_size_policy_imp.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01225 - - - hash_prime_size_policy_imp.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01225 - - - hash_prime_size_policy_imp.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01225 - - - hash_prime_size_policy_imp.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01225 - - - hash_set - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01226 - - - hash_set - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01226 - - - hash_set - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01226 - - - hash_set - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01226 - - - hash_standard_resize_policy_imp.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01227 - - - hash_standard_resize_policy_imp.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01227 - - - hash_standard_resize_policy_imp.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01227 - - - hash_standard_resize_policy_imp.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01227 - - - backward/hashtable.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01229 - - - backward/hashtable.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01229 - - - backward/hashtable.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01229 - - - backward/hashtable.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01229 - - - bits/hashtable.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01228 - - - bits/hashtable.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01228 - - - bits/hashtable.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01228 - - - bits/hashtable.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01228 - - - hashtable_policy.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01230 - - - hashtable_policy.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01230 - - - hashtable_policy.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01230 - - - hashtable_policy.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01230 - - - indirect_array.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01231 - - - indirect_array.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01231 - - - indirect_array.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01231 - - - indirect_array.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01231 - - - splay_tree_/info_fn_imps.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01241 - - - splay_tree_/info_fn_imps.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01241 - - - splay_tree_/info_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01241 - - - splay_tree_/info_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01241 - - - rb_tree_map_/info_fn_imps.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01240 - - - rb_tree_map_/info_fn_imps.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01240 - - - rb_tree_map_/info_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01240 - - - rb_tree_map_/info_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01240 - - - pat_trie_/info_fn_imps.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01239 - - - pat_trie_/info_fn_imps.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01239 - - - pat_trie_/info_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01239 - - - pat_trie_/info_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01239 - - - ov_tree_map_/info_fn_imps.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01238 - - - ov_tree_map_/info_fn_imps.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01238 - - - ov_tree_map_/info_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01238 - - - ov_tree_map_/info_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01238 - - - list_update_map_/info_fn_imps.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01237 - - - list_update_map_/info_fn_imps.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01237 - - - list_update_map_/info_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01237 - - - list_update_map_/info_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01237 - - - left_child_next_sibling_heap_/info_fn_imps.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01236 - - - left_child_next_sibling_heap_/info_fn_imps.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01236 - - - left_child_next_sibling_heap_/info_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01236 - - - left_child_next_sibling_heap_/info_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01236 - - - gp_hash_table_map_/info_fn_imps.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01235 - - - gp_hash_table_map_/info_fn_imps.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01235 - - - gp_hash_table_map_/info_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01235 - - - gp_hash_table_map_/info_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01235 - - - cc_hash_table_map_/info_fn_imps.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01234 - - - cc_hash_table_map_/info_fn_imps.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01234 - - - cc_hash_table_map_/info_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01234 - - - cc_hash_table_map_/info_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01234 - - - bin_search_tree_/info_fn_imps.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01233 - - - bin_search_tree_/info_fn_imps.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01233 - - - bin_search_tree_/info_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01233 - - - bin_search_tree_/info_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01233 - - - binary_heap_/info_fn_imps.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01232 - - - binary_heap_/info_fn_imps.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01232 - - - binary_heap_/info_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01232 - - - binary_heap_/info_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01232 - - - initializer_list - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01242 - - - initializer_list - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01242 - - - initializer_list - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01242 - - - initializer_list - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01242 - - - thin_heap_/insert_fn_imps.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01255 - - - thin_heap_/insert_fn_imps.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01255 - - - thin_heap_/insert_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01255 - - - thin_heap_/insert_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01255 - - - splay_tree_/insert_fn_imps.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01254 - - - splay_tree_/insert_fn_imps.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01254 - - - splay_tree_/insert_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01254 - - - splay_tree_/insert_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01254 - - - rc_binomial_heap_/insert_fn_imps.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01253 - - - rc_binomial_heap_/insert_fn_imps.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01253 - - - rc_binomial_heap_/insert_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01253 - - - rc_binomial_heap_/insert_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01253 - - - rb_tree_map_/insert_fn_imps.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01252 - - - rb_tree_map_/insert_fn_imps.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01252 - - - rb_tree_map_/insert_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01252 - - - rb_tree_map_/insert_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01252 - - - pairing_heap_/insert_fn_imps.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01251 - - - pairing_heap_/insert_fn_imps.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01251 - - - pairing_heap_/insert_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01251 - - - pairing_heap_/insert_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01251 - - - ov_tree_map_/insert_fn_imps.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01250 - - - ov_tree_map_/insert_fn_imps.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01250 - - - ov_tree_map_/insert_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01250 - - - ov_tree_map_/insert_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01250 - - - list_update_map_/insert_fn_imps.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01249 - - - list_update_map_/insert_fn_imps.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01249 - - - list_update_map_/insert_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01249 - - - list_update_map_/insert_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01249 - - - left_child_next_sibling_heap_/insert_fn_imps.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01248 - - - left_child_next_sibling_heap_/insert_fn_imps.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01248 - - - left_child_next_sibling_heap_/insert_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01248 - - - left_child_next_sibling_heap_/insert_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01248 - - - gp_hash_table_map_/insert_fn_imps.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01247 - - - gp_hash_table_map_/insert_fn_imps.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01247 - - - gp_hash_table_map_/insert_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01247 - - - gp_hash_table_map_/insert_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01247 - - - cc_hash_table_map_/insert_fn_imps.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01246 - - - cc_hash_table_map_/insert_fn_imps.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01246 - - - cc_hash_table_map_/insert_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01246 - - - cc_hash_table_map_/insert_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01246 - - - bin_search_tree_/insert_fn_imps.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01245 - - - bin_search_tree_/insert_fn_imps.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01245 - - - bin_search_tree_/insert_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01245 - - - bin_search_tree_/insert_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01245 - - - binomial_heap_base_/insert_fn_imps.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01244 - - - binomial_heap_base_/insert_fn_imps.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01244 - - - binomial_heap_base_/insert_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01244 - - - binomial_heap_base_/insert_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01244 - - - binary_heap_/insert_fn_imps.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01243 - - - binary_heap_/insert_fn_imps.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01243 - - - binary_heap_/insert_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01243 - - - binary_heap_/insert_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01243 - - - insert_join_fn_imps.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01256 - - - insert_join_fn_imps.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01256 - - - insert_join_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01256 - - - insert_join_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01256 - - - gp_hash_table_map_/insert_no_store_hash_fn_imps.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01258 - - - gp_hash_table_map_/insert_no_store_hash_fn_imps.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01258 - - - gp_hash_table_map_/insert_no_store_hash_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01258 - - - gp_hash_table_map_/insert_no_store_hash_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01258 - - - cc_hash_table_map_/insert_no_store_hash_fn_imps.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01257 - - - cc_hash_table_map_/insert_no_store_hash_fn_imps.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01257 - - - cc_hash_table_map_/insert_no_store_hash_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01257 - - - cc_hash_table_map_/insert_no_store_hash_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01257 - - - gp_hash_table_map_/insert_store_hash_fn_imps.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01260 - - - gp_hash_table_map_/insert_store_hash_fn_imps.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01260 - - - gp_hash_table_map_/insert_store_hash_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01260 - - - gp_hash_table_map_/insert_store_hash_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01260 - - - cc_hash_table_map_/insert_store_hash_fn_imps.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01259 - - - cc_hash_table_map_/insert_store_hash_fn_imps.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01259 - - - cc_hash_table_map_/insert_store_hash_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01259 - - - cc_hash_table_map_/insert_store_hash_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01259 - - - iomanip - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01261 - - - iomanip - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01261 - - - iomanip - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01261 - - - iomanip - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01261 - - - ios - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01262 - - - ios - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01262 - - - ios - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01262 - - - ios - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01262 - - - ios_base.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01263 - - - ios_base.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01263 - - - ios_base.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01263 - - - ios_base.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01263 - - - iosfwd - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01264 - - - iosfwd - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01264 - - - iosfwd - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01264 - - - iosfwd - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01264 - - - iostream - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01265 - - - iostream - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01265 - - - iostream - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01265 - - - iostream - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01265 - - - istream - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01266 - - - istream - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01266 - - - istream - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01266 - - - istream - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01266 - - - istream.tcc - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01267 - - - istream.tcc - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01267 - - - istream.tcc - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01267 - - - istream.tcc - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01267 - - - ext/iterator - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01269 - - - ext/iterator - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01269 - - - ext/iterator - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01269 - - - ext/iterator - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01269 - - - iterator - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01268 - - - iterator - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01268 - - - iterator - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01268 - - - iterator - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01268 - - - iterator.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01270 - - - iterator.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01270 - - - iterator.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01270 - - - iterator.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01270 - - - iterator.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01271 - - - iterator.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01271 - - - iterator.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01271 - - - iterator.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01271 - - - iterator_fn_imps.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01272 - - - iterator_fn_imps.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01272 - - - iterator_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01272 - - - iterator_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01272 - - - iterator_tracker.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01273 - - - iterator_tracker.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01273 - - - iterator_tracker.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01273 - - - iterator_tracker.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01273 - - - pat_trie_/iterators_fn_imps.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01280 - - - pat_trie_/iterators_fn_imps.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01280 - - - pat_trie_/iterators_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01280 - - - pat_trie_/iterators_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01280 - - - ov_tree_map_/iterators_fn_imps.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01279 - - - ov_tree_map_/iterators_fn_imps.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01279 - - - ov_tree_map_/iterators_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01279 - - - ov_tree_map_/iterators_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01279 - - - list_update_map_/iterators_fn_imps.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01278 - - - list_update_map_/iterators_fn_imps.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01278 - - - list_update_map_/iterators_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01278 - - - list_update_map_/iterators_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01278 - - - left_child_next_sibling_heap_/iterators_fn_imps.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01277 - - - left_child_next_sibling_heap_/iterators_fn_imps.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01277 - - - left_child_next_sibling_heap_/iterators_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01277 - - - left_child_next_sibling_heap_/iterators_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01277 - - - cc_hash_table_map_/iterators_fn_imps.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01276 - - - cc_hash_table_map_/iterators_fn_imps.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01276 - - - cc_hash_table_map_/iterators_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01276 - - - cc_hash_table_map_/iterators_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01276 - - - bin_search_tree_/iterators_fn_imps.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01275 - - - bin_search_tree_/iterators_fn_imps.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01275 - - - bin_search_tree_/iterators_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01275 - - - bin_search_tree_/iterators_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01275 - - - binary_heap_/iterators_fn_imps.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01274 - - - binary_heap_/iterators_fn_imps.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01274 - - - binary_heap_/iterators_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01274 - - - binary_heap_/iterators_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01274 - - - left_child_next_sibling_heap_.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01281 - - - left_child_next_sibling_heap_.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01281 - - - left_child_next_sibling_heap_.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01281 - - - left_child_next_sibling_heap_.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01281 - - - limits - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01282 - - - limits - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01282 - - - limits - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01282 - - - limits - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01282 - - - linear_probe_fn_imp.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01283 - - - linear_probe_fn_imp.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01283 - - - linear_probe_fn_imp.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01283 - - - linear_probe_fn_imp.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01283 - - - profile/list - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01286 - - - profile/list - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01286 - - - profile/list - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01286 - - - profile/list - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01286 - - - debug/list - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01285 - - - debug/list - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01285 - - - debug/list - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01285 - - - debug/list - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01285 - - - list - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01284 - - - list - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01284 - - - list - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01284 - - - list - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01284 - - - list.tcc - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01287 - - - list.tcc - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01287 - - - list.tcc - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01287 - - - list.tcc - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01287 - - - list_partition.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01288 - - - list_partition.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01288 - - - list_partition.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01288 - - - list_partition.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01288 - - - list_update_policy.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01289 - - - list_update_policy.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01289 - - - list_update_policy.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01289 - - - list_update_policy.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01289 - - - locale - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01290 - - - locale - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01290 - - - locale - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01290 - - - locale - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01290 - - - locale_classes.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01291 - - - locale_classes.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01291 - - - locale_classes.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01291 - - - locale_classes.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01291 - - - locale_classes.tcc - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01292 - - - locale_classes.tcc - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01292 - - - locale_classes.tcc - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01292 - - - locale_classes.tcc - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01292 - - - locale_facets.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01293 - - - locale_facets.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01293 - - - locale_facets.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01293 - - - locale_facets.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01293 - - - locale_facets.tcc - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01294 - - - locale_facets.tcc - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01294 - - - locale_facets.tcc - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01294 - - - locale_facets.tcc - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01294 - - - locale_facets_nonio.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01295 - - - locale_facets_nonio.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01295 - - - locale_facets_nonio.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01295 - - - locale_facets_nonio.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01295 - - - locale_facets_nonio.tcc - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01296 - - - locale_facets_nonio.tcc - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01296 - - - locale_facets_nonio.tcc - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01296 - - - locale_facets_nonio.tcc - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01296 - - - localefwd.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01297 - - - localefwd.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01297 - - - localefwd.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01297 - - - localefwd.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01297 - - - losertree.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01298 - - - losertree.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01298 - - - losertree.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01298 - - - losertree.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01298 - - - lu_counter_metadata.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01299 - - - lu_counter_metadata.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01299 - - - lu_counter_metadata.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01299 - - - lu_counter_metadata.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01299 - - - lu_map_.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01300 - - - lu_map_.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01300 - - - lu_map_.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01300 - - - lu_map_.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01300 - - - macros.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01301 - - - macros.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01301 - - - macros.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01301 - - - macros.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01301 - - - malloc_allocator.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01302 - - - malloc_allocator.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01302 - - - malloc_allocator.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01302 - - - malloc_allocator.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01302 - - - profile/map - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01305 - - - profile/map - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01305 - - - profile/map - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01305 - - - profile/map - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01305 - - - debug/map - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01304 - - - debug/map - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01304 - - - debug/map - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01304 - - - debug/map - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01304 - - - map - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01303 - - - map - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01303 - - - map - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01303 - - - map - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01303 - - - profile/map.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01307 - - - profile/map.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01307 - - - profile/map.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01307 - - - profile/map.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01307 - - - debug/map.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01306 - - - debug/map.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01306 - - - debug/map.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01306 - - - debug/map.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01306 - - - mask_array.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01308 - - - mask_array.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01308 - - - mask_array.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01308 - - - mask_array.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01308 - - - mask_based_range_hashing.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01309 - - - mask_based_range_hashing.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01309 - - - mask_based_range_hashing.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01309 - - - mask_based_range_hashing.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01309 - - - ext/memory - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01311 - - - ext/memory - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01311 - - - ext/memory - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01311 - - - ext/memory - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01311 - - - memory - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01310 - - - memory - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01310 - - - memory - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01310 - - - memory - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01310 - - - memoryfwd.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01312 - - - memoryfwd.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01312 - - - memoryfwd.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01312 - - - memoryfwd.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01312 - - - merge.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01313 - - - merge.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01313 - - - merge.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01313 - - - merge.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01313 - - - messages_members.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01314 - - - messages_members.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01314 - - - messages_members.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01314 - - - messages_members.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01314 - - - mod_based_range_hashing.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01315 - - - mod_based_range_hashing.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01315 - - - mod_based_range_hashing.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01315 - - - mod_based_range_hashing.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01315 - - - move.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01316 - - - move.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01316 - - - move.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01316 - - - move.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01316 - - - mt_allocator.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01317 - - - mt_allocator.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01317 - - - mt_allocator.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01317 - - - mt_allocator.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01317 - - - profile/multimap.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01319 - - - profile/multimap.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01319 - - - profile/multimap.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01319 - - - profile/multimap.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01319 - - - debug/multimap.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01318 - - - debug/multimap.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01318 - - - debug/multimap.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01318 - - - debug/multimap.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01318 - - - multiseq_selection.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01320 - - - multiseq_selection.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01320 - - - multiseq_selection.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01320 - - - multiseq_selection.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01320 - - - profile/multiset.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01322 - - - profile/multiset.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01322 - - - profile/multiset.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01322 - - - profile/multiset.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01322 - - - debug/multiset.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01321 - - - debug/multiset.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01321 - - - debug/multiset.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01321 - - - debug/multiset.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01321 - - - multiway_merge.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01323 - - - multiway_merge.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01323 - - - multiway_merge.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01323 - - - multiway_merge.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01323 - - - multiway_mergesort.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01324 - - - multiway_mergesort.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01324 - - - multiway_mergesort.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01324 - - - multiway_mergesort.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01324 - - - mutex - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01325 - - - mutex - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01325 - - - mutex - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01325 - - - mutex - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01325 - - - nested_exception.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01326 - - - nested_exception.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01326 - - - nested_exception.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01326 - - - nested_exception.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01326 - - - new - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01327 - - - new - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01327 - - - new - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01327 - - - new - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01327 - - - new_allocator.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01328 - - - new_allocator.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01328 - - - new_allocator.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01328 - - - new_allocator.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01328 - - - splay_tree_/node.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01331 - - - splay_tree_/node.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01331 - - - splay_tree_/node.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01331 - - - splay_tree_/node.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01331 - - - rb_tree_map_/node.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01330 - - - rb_tree_map_/node.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01330 - - - rb_tree_map_/node.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01330 - - - rb_tree_map_/node.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01330 - - - left_child_next_sibling_heap_/node.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01329 - - - left_child_next_sibling_heap_/node.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01329 - - - left_child_next_sibling_heap_/node.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01329 - - - left_child_next_sibling_heap_/node.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01329 - - - ov_tree_map_/node_iterators.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01333 - - - ov_tree_map_/node_iterators.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01333 - - - ov_tree_map_/node_iterators.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01333 - - - ov_tree_map_/node_iterators.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01333 - - - bin_search_tree_/node_iterators.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01332 - - - bin_search_tree_/node_iterators.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01332 - - - bin_search_tree_/node_iterators.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01332 - - - bin_search_tree_/node_iterators.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01332 - - - trie_policy/node_metadata_selector.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01335 - - - trie_policy/node_metadata_selector.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01335 - - - trie_policy/node_metadata_selector.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01335 - - - trie_policy/node_metadata_selector.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01335 - - - tree_policy/node_metadata_selector.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01334 - - - tree_policy/node_metadata_selector.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01334 - - - tree_policy/node_metadata_selector.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01334 - - - tree_policy/node_metadata_selector.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01334 - - - null_node_metadata.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01336 - - - null_node_metadata.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01336 - - - null_node_metadata.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01336 - - - null_node_metadata.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01336 - - - parallel/numeric - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01339 - - - parallel/numeric - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01339 - - - parallel/numeric - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01339 - - - parallel/numeric - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01339 - - - ext/numeric - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01338 - - - ext/numeric - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01338 - - - ext/numeric - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01338 - - - ext/numeric - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01338 - - - numeric - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01337 - - - numeric - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01337 - - - numeric - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01337 - - - numeric - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01337 - - - numeric_traits.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01340 - - - numeric_traits.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01340 - - - numeric_traits.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01340 - - - numeric_traits.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01340 - - - numericfwd.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01341 - - - numericfwd.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01341 - - - numericfwd.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01341 - - - numericfwd.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01341 - - - omp_loop.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01342 - - - omp_loop.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01342 - - - omp_loop.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01342 - - - omp_loop.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01342 - - - omp_loop_static.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01343 - - - omp_loop_static.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01343 - - - omp_loop_static.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01343 - - - omp_loop_static.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01343 - - - opt_random.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01344 - - - opt_random.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01344 - - - opt_random.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01344 - - - opt_random.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01344 - - - trie_policy/order_statistics_imp.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01346 - - - trie_policy/order_statistics_imp.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01346 - - - trie_policy/order_statistics_imp.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01346 - - - trie_policy/order_statistics_imp.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01346 - - - tree_policy/order_statistics_imp.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01345 - - - tree_policy/order_statistics_imp.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01345 - - - tree_policy/order_statistics_imp.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01345 - - - tree_policy/order_statistics_imp.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01345 - - - os_defines.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01347 - - - os_defines.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01347 - - - os_defines.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01347 - - - os_defines.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01347 - - - ostream - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01348 - - - ostream - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01348 - - - ostream - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01348 - - - ostream - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01348 - - - ostream.tcc - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01349 - - - ostream.tcc - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01349 - - - ostream.tcc - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01349 - - - ostream.tcc - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01349 - - - ostream_insert.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01350 - - - ostream_insert.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01350 - - - ostream_insert.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01350 - - - ostream_insert.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01350 - - - ov_tree_map_.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01351 - - - ov_tree_map_.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01351 - - - ov_tree_map_.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01351 - - - ov_tree_map_.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01351 - - - pairing_heap_.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01352 - - - pairing_heap_.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01352 - - - pairing_heap_.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01352 - - - pairing_heap_.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01352 - - - par_loop.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01353 - - - par_loop.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01353 - - - par_loop.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01353 - - - par_loop.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01353 - - - parallel.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01354 - - - parallel.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01354 - - - parallel.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01354 - - - parallel.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01354 - - - parse_numbers.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01355 - - - parse_numbers.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01355 - - - parse_numbers.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01355 - - - parse_numbers.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01355 - - - partial_sum.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01356 - - - partial_sum.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01356 - - - partial_sum.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01356 - - - partial_sum.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01356 - - - partition.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01357 - - - partition.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01357 - - - partition.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01357 - - - partition.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01357 - - - pat_trie_.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01358 - - - pat_trie_.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01358 - - - pat_trie_.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01358 - - - pat_trie_.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01358 - - - pat_trie_base.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01359 - - - pat_trie_base.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01359 - - - pat_trie_base.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01359 - - - pat_trie_base.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01359 - - - pod_char_traits.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01360 - - - pod_char_traits.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01360 - - - pod_char_traits.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01360 - - - pod_char_traits.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01360 - - - unordered_iterator/point_const_iterator.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01363 - - - unordered_iterator/point_const_iterator.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01363 - - - unordered_iterator/point_const_iterator.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01363 - - - unordered_iterator/point_const_iterator.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01363 - - - left_child_next_sibling_heap_/point_const_iterator.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01362 - - - left_child_next_sibling_heap_/point_const_iterator.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01362 - - - left_child_next_sibling_heap_/point_const_iterator.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01362 - - - left_child_next_sibling_heap_/point_const_iterator.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01362 - - - binary_heap_/point_const_iterator.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01361 - - - binary_heap_/point_const_iterator.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01361 - - - binary_heap_/point_const_iterator.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01361 - - - binary_heap_/point_const_iterator.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01361 - - - point_iterator.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01364 - - - point_iterator.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01364 - - - point_iterator.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01364 - - - point_iterator.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01364 - - - point_iterators.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01365 - - - point_iterators.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01365 - - - point_iterators.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01365 - - - point_iterators.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01365 - - - pointer.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01366 - - - pointer.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01366 - - - pointer.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01366 - - - pointer.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01366 - - - pat_trie_/policy_access_fn_imps.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01373 - - - pat_trie_/policy_access_fn_imps.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01373 - - - pat_trie_/policy_access_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01373 - - - pat_trie_/policy_access_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01373 - - - ov_tree_map_/policy_access_fn_imps.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01372 - - - ov_tree_map_/policy_access_fn_imps.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01372 - - - ov_tree_map_/policy_access_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01372 - - - ov_tree_map_/policy_access_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01372 - - - left_child_next_sibling_heap_/policy_access_fn_imps.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01371 - - - left_child_next_sibling_heap_/policy_access_fn_imps.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01371 - - - left_child_next_sibling_heap_/policy_access_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01371 - - - left_child_next_sibling_heap_/policy_access_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01371 - - - gp_hash_table_map_/policy_access_fn_imps.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01370 - - - gp_hash_table_map_/policy_access_fn_imps.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01370 - - - gp_hash_table_map_/policy_access_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01370 - - - gp_hash_table_map_/policy_access_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01370 - - - cc_hash_table_map_/policy_access_fn_imps.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01369 - - - cc_hash_table_map_/policy_access_fn_imps.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01369 - - - cc_hash_table_map_/policy_access_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01369 - - - cc_hash_table_map_/policy_access_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01369 - - - bin_search_tree_/policy_access_fn_imps.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01368 - - - bin_search_tree_/policy_access_fn_imps.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01368 - - - bin_search_tree_/policy_access_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01368 - - - bin_search_tree_/policy_access_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01368 - - - binary_heap_/policy_access_fn_imps.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01367 - - - binary_heap_/policy_access_fn_imps.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01367 - - - binary_heap_/policy_access_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01367 - - - binary_heap_/policy_access_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01367 - - - pool_allocator.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01374 - - - pool_allocator.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01374 - - - pool_allocator.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01374 - - - pool_allocator.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01374 - - - postypes.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01375 - - - postypes.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01375 - - - postypes.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01375 - - - postypes.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01375 - - - predefined_ops.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01376 - - - predefined_ops.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01376 - - - predefined_ops.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01376 - - - predefined_ops.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01376 - - - prefix_search_node_update_imp.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01377 - - - prefix_search_node_update_imp.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01377 - - - prefix_search_node_update_imp.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01377 - - - prefix_search_node_update_imp.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01377 - - - priority_queue.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01378 - - - priority_queue.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01378 - - - priority_queue.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01378 - - - priority_queue.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01378 - - - priority_queue_base_dispatch.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01379 - - - priority_queue_base_dispatch.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01379 - - - priority_queue_base_dispatch.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01379 - - - priority_queue_base_dispatch.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01379 - - - probe_fn_base.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01380 - - - probe_fn_base.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01380 - - - probe_fn_base.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01380 - - - probe_fn_base.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01380 - - - profiler.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01381 - - - profiler.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01381 - - - profiler.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01381 - - - profiler.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01381 - - - profiler_algos.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01382 - - - profiler_algos.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01382 - - - profiler_algos.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01382 - - - profiler_algos.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01382 - - - profiler_container_size.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01383 - - - profiler_container_size.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01383 - - - profiler_container_size.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01383 - - - profiler_container_size.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01383 - - - profiler_hash_func.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01384 - - - profiler_hash_func.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01384 - - - profiler_hash_func.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01384 - - - profiler_hash_func.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01384 - - - profiler_hashtable_size.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01385 - - - profiler_hashtable_size.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01385 - - - profiler_hashtable_size.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01385 - - - profiler_hashtable_size.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01385 - - - profiler_list_to_slist.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01386 - - - profiler_list_to_slist.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01386 - - - profiler_list_to_slist.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01386 - - - profiler_list_to_slist.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01386 - - - profiler_list_to_vector.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01387 - - - profiler_list_to_vector.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01387 - - - profiler_list_to_vector.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01387 - - - profiler_list_to_vector.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01387 - - - profiler_map_to_unordered_map.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01388 - - - profiler_map_to_unordered_map.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01388 - - - profiler_map_to_unordered_map.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01388 - - - profiler_map_to_unordered_map.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01388 - - - profiler_node.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01389 - - - profiler_node.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01389 - - - profiler_node.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01389 - - - profiler_node.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01389 - - - profiler_state.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01390 - - - profiler_state.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01390 - - - profiler_state.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01390 - - - profiler_state.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01390 - - - profiler_trace.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01391 - - - profiler_trace.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01391 - - - profiler_trace.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01391 - - - profiler_trace.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01391 - - - profiler_vector_size.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01392 - - - profiler_vector_size.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01392 - - - profiler_vector_size.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01392 - - - profiler_vector_size.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01392 - - - profiler_vector_to_list.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01393 - - - profiler_vector_to_list.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01393 - - - profiler_vector_to_list.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01393 - - - profiler_vector_to_list.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01393 - - - ptr_traits.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01394 - - - ptr_traits.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01394 - - - ptr_traits.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01394 - - - ptr_traits.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01394 - - - quadratic_probe_fn_imp.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01395 - - - quadratic_probe_fn_imp.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01395 - - - quadratic_probe_fn_imp.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01395 - - - quadratic_probe_fn_imp.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01395 - - - queue - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01396 - - - queue - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01396 - - - queue - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01396 - - - queue - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01396 - - - queue.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01397 - - - queue.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01397 - - - queue.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01397 - - - queue.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01397 - - - quicksort.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01398 - - - quicksort.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01398 - - - quicksort.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01398 - - - quicksort.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01398 - - - pat_trie_/r_erase_fn_imps.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01400 - - - pat_trie_/r_erase_fn_imps.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01400 - - - pat_trie_/r_erase_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01400 - - - pat_trie_/r_erase_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01400 - - - bin_search_tree_/r_erase_fn_imps.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01399 - - - bin_search_tree_/r_erase_fn_imps.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01399 - - - bin_search_tree_/r_erase_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01399 - - - bin_search_tree_/r_erase_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01399 - - - random - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01401 - - - random - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01401 - - - random - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01401 - - - random - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01401 - - - random.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01402 - - - random.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01402 - - - random.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/glib/glibmm/ - random_8h - - - random.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01402 - - - random.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01402 - - - ext/random.tcc - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01404 - - - ext/random.tcc - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01404 - - - ext/random.tcc - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01404 - - - ext/random.tcc - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01404 - - - bits/random.tcc - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01403 - - - bits/random.tcc - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01403 - - - bits/random.tcc - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01403 - - - bits/random.tcc - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01403 - - - random_number.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01405 - - - random_number.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01405 - - - random_number.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01405 - - - random_number.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01405 - - - random_shuffle.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01406 - - - random_shuffle.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01406 - - - random_shuffle.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01406 - - - random_shuffle.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01406 - - - range_access.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01407 - - - range_access.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01407 - - - range_access.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01407 - - - range_access.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01407 - - - ranged_hash_fn.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01408 - - - ranged_hash_fn.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01408 - - - ranged_hash_fn.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01408 - - - ranged_hash_fn.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01408 - - - ranged_probe_fn.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01409 - - - ranged_probe_fn.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01409 - - - ranged_probe_fn.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01409 - - - ranged_probe_fn.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01409 - - - tr2/ratio - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01411 - - - tr2/ratio - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01411 - - - tr2/ratio - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01411 - - - tr2/ratio - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01411 - - - ratio - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01410 - - - ratio - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01410 - - - ratio - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01410 - - - ratio - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01410 - - - rb_tree - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01412 - - - rb_tree - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01412 - - - rb_tree - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01412 - - - rb_tree - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01412 - - - rb_tree_.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01413 - - - rb_tree_.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01413 - - - rb_tree_.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01413 - - - rb_tree_.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01413 - - - rc.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01414 - - - rc.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01414 - - - rc.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01414 - - - rc.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01414 - - - rc_binomial_heap_.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01415 - - - rc_binomial_heap_.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01415 - - - rc_binomial_heap_.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01415 - - - rc_binomial_heap_.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01415 - - - rc_string_base.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01416 - - - rc_string_base.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01416 - - - rc_string_base.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01416 - - - rc_string_base.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01416 - - - regex - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01417 - - - regex - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01417 - - - regex - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01417 - - - regex - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01417 - - - regex.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01418 - - - regex.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01418 - - - regex.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/glib/glibmm/ - regex_8h - - - regex.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01418 - - - regex.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01418 - - - regex.tcc - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01419 - - - regex.tcc - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01419 - - - regex.tcc - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01419 - - - regex.tcc - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01419 - - - regex_automaton.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01420 - - - regex_automaton.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01420 - - - regex_automaton.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01420 - - - regex_automaton.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01420 - - - regex_automaton.tcc - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01421 - - - regex_automaton.tcc - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01421 - - - regex_automaton.tcc - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01421 - - - regex_automaton.tcc - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01421 - - - regex_compiler.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01422 - - - regex_compiler.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01422 - - - regex_compiler.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01422 - - - regex_compiler.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01422 - - - regex_compiler.tcc - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01423 - - - regex_compiler.tcc - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01423 - - - regex_compiler.tcc - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01423 - - - regex_compiler.tcc - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01423 - - - regex_constants.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01424 - - - regex_constants.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01424 - - - regex_constants.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01424 - - - regex_constants.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01424 - - - regex_error.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01425 - - - regex_error.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01425 - - - regex_error.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01425 - - - regex_error.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01425 - - - regex_executor.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01426 - - - regex_executor.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01426 - - - regex_executor.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01426 - - - regex_executor.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01426 - - - regex_executor.tcc - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01427 - - - regex_executor.tcc - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01427 - - - regex_executor.tcc - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01427 - - - regex_executor.tcc - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01427 - - - regex_scanner.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01428 - - - regex_scanner.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01428 - - - regex_scanner.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01428 - - - regex_scanner.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01428 - - - regex_scanner.tcc - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01429 - - - regex_scanner.tcc - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01429 - - - regex_scanner.tcc - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01429 - - - regex_scanner.tcc - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01429 - - - gp_hash_table_map_/resize_fn_imps.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01431 - - - gp_hash_table_map_/resize_fn_imps.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01431 - - - gp_hash_table_map_/resize_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01431 - - - gp_hash_table_map_/resize_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01431 - - - cc_hash_table_map_/resize_fn_imps.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01430 - - - cc_hash_table_map_/resize_fn_imps.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01430 - - - cc_hash_table_map_/resize_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01430 - - - cc_hash_table_map_/resize_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01430 - - - gp_hash_table_map_/resize_no_store_hash_fn_imps.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01433 - - - gp_hash_table_map_/resize_no_store_hash_fn_imps.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01433 - - - gp_hash_table_map_/resize_no_store_hash_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01433 - - - gp_hash_table_map_/resize_no_store_hash_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01433 - - - cc_hash_table_map_/resize_no_store_hash_fn_imps.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01432 - - - cc_hash_table_map_/resize_no_store_hash_fn_imps.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01432 - - - cc_hash_table_map_/resize_no_store_hash_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01432 - - - cc_hash_table_map_/resize_no_store_hash_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01432 - - - resize_policy.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01434 - - - resize_policy.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01434 - - - resize_policy.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01434 - - - resize_policy.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01434 - - - gp_hash_table_map_/resize_store_hash_fn_imps.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01436 - - - gp_hash_table_map_/resize_store_hash_fn_imps.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01436 - - - gp_hash_table_map_/resize_store_hash_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01436 - - - gp_hash_table_map_/resize_store_hash_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01436 - - - cc_hash_table_map_/resize_store_hash_fn_imps.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01435 - - - cc_hash_table_map_/resize_store_hash_fn_imps.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01435 - - - cc_hash_table_map_/resize_store_hash_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01435 - - - cc_hash_table_map_/resize_store_hash_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01435 - - - rope - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01437 - - - rope - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01437 - - - rope - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01437 - - - rope - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01437 - - - ropeimpl.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01438 - - - ropeimpl.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01438 - - - ropeimpl.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01438 - - - ropeimpl.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01438 - - - pat_trie_/rotate_fn_imps.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01440 - - - pat_trie_/rotate_fn_imps.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01440 - - - pat_trie_/rotate_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01440 - - - pat_trie_/rotate_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01440 - - - bin_search_tree_/rotate_fn_imps.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01439 - - - bin_search_tree_/rotate_fn_imps.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01439 - - - bin_search_tree_/rotate_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01439 - - - bin_search_tree_/rotate_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01439 - - - safe_base.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01441 - - - safe_base.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01441 - - - safe_base.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01441 - - - safe_base.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01441 - - - safe_iterator.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01442 - - - safe_iterator.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01442 - - - safe_iterator.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01442 - - - safe_iterator.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01442 - - - safe_iterator.tcc - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01443 - - - safe_iterator.tcc - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01443 - - - safe_iterator.tcc - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01443 - - - safe_iterator.tcc - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01443 - - - safe_local_iterator.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01444 - - - safe_local_iterator.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01444 - - - safe_local_iterator.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01444 - - - safe_local_iterator.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01444 - - - safe_local_iterator.tcc - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01445 - - - safe_local_iterator.tcc - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01445 - - - safe_local_iterator.tcc - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01445 - - - safe_local_iterator.tcc - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01445 - - - safe_sequence.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01446 - - - safe_sequence.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01446 - - - safe_sequence.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01446 - - - safe_sequence.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01446 - - - safe_sequence.tcc - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01447 - - - safe_sequence.tcc - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01447 - - - safe_sequence.tcc - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01447 - - - safe_sequence.tcc - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01447 - - - safe_unordered_base.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01448 - - - safe_unordered_base.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01448 - - - safe_unordered_base.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01448 - - - safe_unordered_base.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01448 - - - safe_unordered_container.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01449 - - - safe_unordered_container.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01449 - - - safe_unordered_container.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01449 - - - safe_unordered_container.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01449 - - - safe_unordered_container.tcc - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01450 - - - safe_unordered_container.tcc - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01450 - - - safe_unordered_container.tcc - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01450 - - - safe_unordered_container.tcc - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01450 - - - sample_probe_fn.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01451 - - - sample_probe_fn.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01451 - - - sample_probe_fn.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01451 - - - sample_probe_fn.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01451 - - - sample_range_hashing.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01452 - - - sample_range_hashing.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01452 - - - sample_range_hashing.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01452 - - - sample_range_hashing.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01452 - - - sample_ranged_hash_fn.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01453 - - - sample_ranged_hash_fn.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01453 - - - sample_ranged_hash_fn.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01453 - - - sample_ranged_hash_fn.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01453 - - - sample_ranged_probe_fn.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01454 - - - sample_ranged_probe_fn.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01454 - - - sample_ranged_probe_fn.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01454 - - - sample_ranged_probe_fn.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01454 - - - sample_resize_policy.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01455 - - - sample_resize_policy.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01455 - - - sample_resize_policy.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01455 - - - sample_resize_policy.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01455 - - - sample_resize_trigger.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01456 - - - sample_resize_trigger.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01456 - - - sample_resize_trigger.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01456 - - - sample_resize_trigger.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01456 - - - sample_size_policy.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01457 - - - sample_size_policy.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01457 - - - sample_size_policy.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01457 - - - sample_size_policy.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01457 - - - sample_tree_node_update.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01458 - - - sample_tree_node_update.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01458 - - - sample_tree_node_update.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01458 - - - sample_tree_node_update.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01458 - - - sample_trie_access_traits.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01459 - - - sample_trie_access_traits.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01459 - - - sample_trie_access_traits.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01459 - - - sample_trie_access_traits.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01459 - - - sample_trie_node_update.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01460 - - - sample_trie_node_update.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01460 - - - sample_trie_node_update.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01460 - - - sample_trie_node_update.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01460 - - - sample_update_policy.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01461 - - - sample_update_policy.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01461 - - - sample_update_policy.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01461 - - - sample_update_policy.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01461 - - - scoped_allocator - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01462 - - - scoped_allocator - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01462 - - - scoped_allocator - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01462 - - - scoped_allocator - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01462 - - - search.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01463 - - - search.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01463 - - - search.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01463 - - - search.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01463 - - - profile/set - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01466 - - - profile/set - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01466 - - - profile/set - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01466 - - - profile/set - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01466 - - - debug/set - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01465 - - - debug/set - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01465 - - - debug/set - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01465 - - - debug/set - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01465 - - - set - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01464 - - - set - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01464 - - - set - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01464 - - - set - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01464 - - - profile/set.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01468 - - - profile/set.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01468 - - - profile/set.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01468 - - - profile/set.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01468 - - - debug/set.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01467 - - - debug/set.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01467 - - - debug/set.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01467 - - - debug/set.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01467 - - - set_operations.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01469 - - - set_operations.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01469 - - - set_operations.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01469 - - - set_operations.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01469 - - - settings.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01470 - - - settings.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01470 - - - settings.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/home/murrayc/checkout/gnome/glibmm/gio/giomm/ - settings_8h - - - settings.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01470 - - - settings.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01470 - - - shared_ptr.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01471 - - - shared_ptr.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01471 - - - shared_ptr.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01471 - - - shared_ptr.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01471 - - - shared_ptr_base.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01472 - - - shared_ptr_base.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01472 - - - shared_ptr_base.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01472 - - - shared_ptr_base.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01472 - - - size_fn_imps.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01473 - - - size_fn_imps.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01473 - - - size_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01473 - - - size_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01473 - - - slice_array.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01474 - - - slice_array.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01474 - - - slice_array.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01474 - - - slice_array.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01474 - - - slist - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01475 - - - slist - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01475 - - - slist - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01475 - - - slist - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01475 - - - sort.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01476 - - - sort.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01476 - - - sort.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01476 - - - sort.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01476 - - - splay_fn_imps.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01477 - - - splay_fn_imps.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01477 - - - splay_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01477 - - - splay_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01477 - - - splay_tree_.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01478 - - - splay_tree_.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01478 - - - splay_tree_.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01478 - - - splay_tree_.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01478 - - - split_fn_imps.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01479 - - - split_fn_imps.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01479 - - - split_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01479 - - - split_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01479 - - - thin_heap_/split_join_fn_imps.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01488 - - - thin_heap_/split_join_fn_imps.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01488 - - - thin_heap_/split_join_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01488 - - - thin_heap_/split_join_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01488 - - - splay_tree_/split_join_fn_imps.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01487 - - - splay_tree_/split_join_fn_imps.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01487 - - - splay_tree_/split_join_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01487 - - - splay_tree_/split_join_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01487 - - - rc_binomial_heap_/split_join_fn_imps.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01486 - - - rc_binomial_heap_/split_join_fn_imps.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01486 - - - rc_binomial_heap_/split_join_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01486 - - - rc_binomial_heap_/split_join_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01486 - - - rb_tree_map_/split_join_fn_imps.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01485 - - - rb_tree_map_/split_join_fn_imps.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01485 - - - rb_tree_map_/split_join_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01485 - - - rb_tree_map_/split_join_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01485 - - - pairing_heap_/split_join_fn_imps.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01484 - - - pairing_heap_/split_join_fn_imps.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01484 - - - pairing_heap_/split_join_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01484 - - - pairing_heap_/split_join_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01484 - - - ov_tree_map_/split_join_fn_imps.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01483 - - - ov_tree_map_/split_join_fn_imps.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01483 - - - ov_tree_map_/split_join_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01483 - - - ov_tree_map_/split_join_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01483 - - - bin_search_tree_/split_join_fn_imps.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01482 - - - bin_search_tree_/split_join_fn_imps.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01482 - - - bin_search_tree_/split_join_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01482 - - - bin_search_tree_/split_join_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01482 - - - binomial_heap_base_/split_join_fn_imps.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01481 - - - binomial_heap_base_/split_join_fn_imps.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01481 - - - binomial_heap_base_/split_join_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01481 - - - binomial_heap_base_/split_join_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01481 - - - binary_heap_/split_join_fn_imps.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01480 - - - binary_heap_/split_join_fn_imps.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01480 - - - binary_heap_/split_join_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01480 - - - binary_heap_/split_join_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01480 - - - sso_string_base.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01489 - - - sso_string_base.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01489 - - - sso_string_base.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01489 - - - sso_string_base.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01489 - - - sstream - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01490 - - - sstream - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01490 - - - sstream - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01490 - - - sstream - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01490 - - - sstream.tcc - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01491 - - - sstream.tcc - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01491 - - - sstream.tcc - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01491 - - - sstream.tcc - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01491 - - - stack - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01492 - - - stack - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01492 - - - stack - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01492 - - - stack - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01492 - - - standard_policies.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01493 - - - standard_policies.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01493 - - - standard_policies.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01493 - - - standard_policies.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01493 - - - stdc++.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01494 - - - stdc++.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01494 - - - stdc++.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01494 - - - stdc++.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01494 - - - stdexcept - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01495 - - - stdexcept - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01495 - - - stdexcept - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01495 - - - stdexcept - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01495 - - - stdio_filebuf.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01496 - - - stdio_filebuf.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01496 - - - stdio_filebuf.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01496 - - - stdio_filebuf.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01496 - - - stdio_sync_filebuf.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01497 - - - stdio_sync_filebuf.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01497 - - - stdio_sync_filebuf.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01497 - - - stdio_sync_filebuf.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01497 - - - stdtr1c++.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01498 - - - stdtr1c++.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01498 - - - stdtr1c++.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01498 - - - stdtr1c++.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01498 - - - stl_algo.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01499 - - - stl_algo.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01499 - - - stl_algo.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01499 - - - stl_algo.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01499 - - - stl_algobase.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01500 - - - stl_algobase.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01500 - - - stl_algobase.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01500 - - - stl_algobase.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01500 - - - stl_bvector.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01501 - - - stl_bvector.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01501 - - - stl_bvector.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01501 - - - stl_bvector.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01501 - - - stl_construct.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01502 - - - stl_construct.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01502 - - - stl_construct.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01502 - - - stl_construct.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01502 - - - stl_deque.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01503 - - - stl_deque.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01503 - - - stl_deque.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01503 - - - stl_deque.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01503 - - - stl_function.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01504 - - - stl_function.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01504 - - - stl_function.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01504 - - - stl_function.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01504 - - - stl_heap.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01505 - - - stl_heap.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01505 - - - stl_heap.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01505 - - - stl_heap.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01505 - - - stl_iterator.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01506 - - - stl_iterator.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01506 - - - stl_iterator.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01506 - - - stl_iterator.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01506 - - - stl_iterator_base_funcs.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01507 - - - stl_iterator_base_funcs.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01507 - - - stl_iterator_base_funcs.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01507 - - - stl_iterator_base_funcs.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01507 - - - stl_iterator_base_types.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01508 - - - stl_iterator_base_types.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01508 - - - stl_iterator_base_types.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01508 - - - stl_iterator_base_types.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01508 - - - stl_list.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01509 - - - stl_list.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01509 - - - stl_list.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01509 - - - stl_list.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01509 - - - stl_map.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01510 - - - stl_map.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01510 - - - stl_map.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01510 - - - stl_map.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01510 - - - stl_multimap.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01511 - - - stl_multimap.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01511 - - - stl_multimap.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01511 - - - stl_multimap.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01511 - - - stl_multiset.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01512 - - - stl_multiset.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01512 - - - stl_multiset.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01512 - - - stl_multiset.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01512 - - - stl_numeric.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01513 - - - stl_numeric.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01513 - - - stl_numeric.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01513 - - - stl_numeric.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01513 - - - stl_pair.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01514 - - - stl_pair.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01514 - - - stl_pair.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01514 - - - stl_pair.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01514 - - - stl_queue.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01515 - - - stl_queue.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01515 - - - stl_queue.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01515 - - - stl_queue.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01515 - - - stl_raw_storage_iter.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01516 - - - stl_raw_storage_iter.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01516 - - - stl_raw_storage_iter.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01516 - - - stl_raw_storage_iter.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01516 - - - stl_relops.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01517 - - - stl_relops.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01517 - - - stl_relops.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01517 - - - stl_relops.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01517 - - - stl_set.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01518 - - - stl_set.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01518 - - - stl_set.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01518 - - - stl_set.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01518 - - - stl_stack.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01519 - - - stl_stack.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01519 - - - stl_stack.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01519 - - - stl_stack.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01519 - - - stl_tempbuf.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01520 - - - stl_tempbuf.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01520 - - - stl_tempbuf.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01520 - - - stl_tempbuf.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01520 - - - stl_tree.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01521 - - - stl_tree.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01521 - - - stl_tree.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01521 - - - stl_tree.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01521 - - - stl_uninitialized.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01522 - - - stl_uninitialized.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01522 - - - stl_uninitialized.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01522 - - - stl_uninitialized.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01522 - - - stl_vector.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01523 - - - stl_vector.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01523 - - - stl_vector.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01523 - - - stl_vector.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01523 - - - stream_iterator.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01524 - - - stream_iterator.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01524 - - - stream_iterator.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01524 - - - stream_iterator.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01524 - - - streambuf - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01525 - - - streambuf - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01525 - - - streambuf - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01525 - - - streambuf - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01525 - - - streambuf.tcc - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01526 - - - streambuf.tcc - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01526 - - - streambuf.tcc - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01526 - - - streambuf.tcc - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01526 - - - streambuf_iterator.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01527 - - - streambuf_iterator.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01527 - - - streambuf_iterator.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01527 - - - streambuf_iterator.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01527 - - - debug/string - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01529 - - - debug/string - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01529 - - - debug/string - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01529 - - - debug/string - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01529 - - - string - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01528 - - - string - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01528 - - - string - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01528 - - - string - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01528 - - - string_conversions.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01530 - - - string_conversions.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01530 - - - string_conversions.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01530 - - - string_conversions.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01530 - - - stringfwd.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01531 - - - stringfwd.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01531 - - - stringfwd.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01531 - - - stringfwd.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01531 - - - strstream - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01532 - - - strstream - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01532 - - - strstream - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01532 - - - strstream - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01532 - - - synth_access_traits.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01533 - - - synth_access_traits.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01533 - - - synth_access_traits.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01533 - - - synth_access_traits.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01533 - - - system_error - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01534 - - - system_error - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01534 - - - system_error - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01534 - - - system_error - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01534 - - - tag_and_trait.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01535 - - - tag_and_trait.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01535 - - - tag_and_trait.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01535 - - - tag_and_trait.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01535 - - - tags.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01536 - - - tags.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01536 - - - tags.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01536 - - - tags.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01536 - - - tgmath.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01537 - - - tgmath.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01537 - - - tgmath.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01537 - - - tgmath.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01537 - - - thin_heap_.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01538 - - - thin_heap_.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01538 - - - thin_heap_.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01538 - - - thin_heap_.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01538 - - - thread - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01539 - - - thread - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01539 - - - thread - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01539 - - - thread - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01539 - - - throw_allocator.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01540 - - - throw_allocator.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01540 - - - throw_allocator.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01540 - - - throw_allocator.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01540 - - - time_members.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01541 - - - time_members.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01541 - - - time_members.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01541 - - - time_members.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01541 - - - thin_heap_/trace_fn_imps.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01549 - - - thin_heap_/trace_fn_imps.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01549 - - - thin_heap_/trace_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01549 - - - thin_heap_/trace_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01549 - - - rc_binomial_heap_/trace_fn_imps.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01548 - - - rc_binomial_heap_/trace_fn_imps.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01548 - - - rc_binomial_heap_/trace_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01548 - - - rc_binomial_heap_/trace_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01548 - - - pat_trie_/trace_fn_imps.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01547 - - - pat_trie_/trace_fn_imps.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01547 - - - pat_trie_/trace_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01547 - - - pat_trie_/trace_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01547 - - - list_update_map_/trace_fn_imps.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01546 - - - list_update_map_/trace_fn_imps.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01546 - - - list_update_map_/trace_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01546 - - - list_update_map_/trace_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01546 - - - left_child_next_sibling_heap_/trace_fn_imps.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01545 - - - left_child_next_sibling_heap_/trace_fn_imps.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01545 - - - left_child_next_sibling_heap_/trace_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01545 - - - left_child_next_sibling_heap_/trace_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01545 - - - gp_hash_table_map_/trace_fn_imps.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01544 - - - gp_hash_table_map_/trace_fn_imps.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01544 - - - gp_hash_table_map_/trace_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01544 - - - gp_hash_table_map_/trace_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01544 - - - cc_hash_table_map_/trace_fn_imps.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01543 - - - cc_hash_table_map_/trace_fn_imps.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01543 - - - cc_hash_table_map_/trace_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01543 - - - cc_hash_table_map_/trace_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01543 - - - binary_heap_/trace_fn_imps.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01542 - - - binary_heap_/trace_fn_imps.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01542 - - - binary_heap_/trace_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01542 - - - binary_heap_/trace_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01542 - - - splay_tree_/traits.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01555 - - - splay_tree_/traits.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01555 - - - splay_tree_/traits.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01555 - - - splay_tree_/traits.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01555 - - - rb_tree_map_/traits.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01554 - - - rb_tree_map_/traits.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01554 - - - rb_tree_map_/traits.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01554 - - - rb_tree_map_/traits.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01554 - - - pat_trie_/traits.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01553 - - - pat_trie_/traits.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01553 - - - pat_trie_/traits.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01553 - - - pat_trie_/traits.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01553 - - - ov_tree_map_/traits.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01552 - - - ov_tree_map_/traits.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01552 - - - ov_tree_map_/traits.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01552 - - - ov_tree_map_/traits.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01552 - - - branch_policy/traits.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01551 - - - branch_policy/traits.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01551 - - - branch_policy/traits.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01551 - - - branch_policy/traits.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01551 - - - bin_search_tree_/traits.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01550 - - - bin_search_tree_/traits.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01550 - - - bin_search_tree_/traits.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01550 - - - bin_search_tree_/traits.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01550 - - - tree_policy.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01556 - - - tree_policy.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01556 - - - tree_policy.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01556 - - - tree_policy.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01556 - - - tree_trace_base.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01557 - - - tree_trace_base.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01557 - - - tree_trace_base.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01557 - - - tree_trace_base.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01557 - - - trie_policy.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01558 - - - trie_policy.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01558 - - - trie_policy.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01558 - - - trie_policy.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01558 - - - trie_policy_base.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01559 - - - trie_policy_base.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01559 - - - trie_policy_base.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01559 - - - trie_policy_base.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01559 - - - trie_string_access_traits_imp.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01560 - - - trie_string_access_traits_imp.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01560 - - - trie_string_access_traits_imp.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01560 - - - trie_string_access_traits_imp.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01560 - - - tuple - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01561 - - - tuple - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01561 - - - tuple - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01561 - - - tuple - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01561 - - - tr2/type_traits - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01563 - - - tr2/type_traits - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01563 - - - tr2/type_traits - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01563 - - - tr2/type_traits - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01563 - - - type_traits - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01562 - - - type_traits - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01562 - - - type_traits - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01562 - - - type_traits - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01562 - - - type_traits.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01564 - - - type_traits.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/home/murrayc/checkout/gnome/libsigc++2/sigc++/ - type__traits_8h - - - type_traits.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01564 - - - type_traits.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01564 - - - type_traits.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/home/murrayc/checkout/gnome/libsigc++2/sigc++/ - type__traits_8h - - - type_traits.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01564 - - - type_utils.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01565 - - - type_utils.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01565 - - - type_utils.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01565 - - - type_utils.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01565 - - - typeindex - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01566 - - - typeindex - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01566 - - - typeindex - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01566 - - - typeindex - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01566 - - - typeinfo - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01567 - - - typeinfo - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01567 - - - typeinfo - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01567 - - - typeinfo - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01567 - - - typelist.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01568 - - - typelist.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01568 - - - typelist.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01568 - - - typelist.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01568 - - - types.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01569 - - - types.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01569 - - - types.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01569 - - - types.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01569 - - - types_traits.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01570 - - - types_traits.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01570 - - - types_traits.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01570 - - - types_traits.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01570 - - - unique_copy.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01571 - - - unique_copy.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01571 - - - unique_copy.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01571 - - - unique_copy.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01571 - - - unique_ptr.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01572 - - - unique_ptr.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01572 - - - unique_ptr.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01572 - - - unique_ptr.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01572 - - - unordered_base.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01573 - - - unordered_base.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01573 - - - unordered_base.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01573 - - - unordered_base.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01573 - - - profile/unordered_map - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01576 - - - profile/unordered_map - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01576 - - - profile/unordered_map - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01576 - - - profile/unordered_map - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01576 - - - debug/unordered_map - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01575 - - - debug/unordered_map - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01575 - - - debug/unordered_map - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01575 - - - debug/unordered_map - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01575 - - - unordered_map - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01574 - - - unordered_map - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01574 - - - unordered_map - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01574 - - - unordered_map - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01574 - - - unordered_map.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01577 - - - unordered_map.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01577 - - - unordered_map.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01577 - - - unordered_map.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01577 - - - profile/unordered_set - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01580 - - - profile/unordered_set - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01580 - - - profile/unordered_set - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01580 - - - profile/unordered_set - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01580 - - - debug/unordered_set - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01579 - - - debug/unordered_set - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01579 - - - debug/unordered_set - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01579 - - - debug/unordered_set - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01579 - - - unordered_set - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01578 - - - unordered_set - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01578 - - - unordered_set - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01578 - - - unordered_set - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01578 - - - unordered_set.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01581 - - - unordered_set.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01581 - - - unordered_set.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01581 - - - unordered_set.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01581 - - - update_fn_imps.hpp - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01582 - - - update_fn_imps.hpp - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01582 - - - update_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01582 - - - update_fn_imps.hpp - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01582 - - - utility - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01584 - - - utility - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01584 - - - utility - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01584 - - - utility - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01584 - - - valarray - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01585 - - - valarray - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01585 - - - valarray - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01585 - - - valarray - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01585 - - - valarray_after.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01586 - - - valarray_after.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01586 - - - valarray_after.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01586 - - - valarray_after.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01586 - - - valarray_array.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01587 - - - valarray_array.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01587 - - - valarray_array.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01587 - - - valarray_array.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01587 - - - valarray_array.tcc - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01588 - - - valarray_array.tcc - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01588 - - - valarray_array.tcc - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01588 - - - valarray_array.tcc - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01588 - - - valarray_before.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01589 - - - valarray_before.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01589 - - - valarray_before.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01589 - - - valarray_before.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01589 - - - profile/vector - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01592 - - - profile/vector - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01592 - - - profile/vector - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01592 - - - profile/vector - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01592 - - - debug/vector - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01591 - - - debug/vector - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01591 - - - debug/vector - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01591 - - - debug/vector - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01591 - - - vector - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01590 - - - vector - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01590 - - - vector - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01590 - - - vector - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01590 - - - vector.tcc - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01593 - - - vector.tcc - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01593 - - - vector.tcc - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01593 - - - vector.tcc - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01593 - - - vstring.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01594 - - - vstring.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01594 - - - vstring.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01594 - - - vstring.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01594 - - - vstring.tcc - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01595 - - - vstring.tcc - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01595 - - - vstring.tcc - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01595 - - - vstring.tcc - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01595 - - - vstring_fwd.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01596 - - - vstring_fwd.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01596 - - - vstring_fwd.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01596 - - - vstring_fwd.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01596 - - - vstring_util.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01597 - - - vstring_util.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01597 - - - vstring_util.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01597 - - - vstring_util.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01597 - - - workstealing.h - /opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01598 - - - workstealing.h - /opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01598 - - - workstealing.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01598 - - - workstealing.h - /opt/gnome/share/doc/glibmm-2.4/reference/glibmm-2.4.tag:/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:/opt/gnome/share/mm-common/doctags/libstdc++.tag: - a01598 - - - Atk::Action - classAtk_1_1Action.html - Glib::Interface - - - Action - classAtk_1_1Action.html - a87a439e94f0fa5e4b0d415c2fd74399c - (Action &&src) noexcept - - - Action & - operator= - classAtk_1_1Action.html - ac4934552741da09f0ca2a0d97901e5b7 - (Action &&src) noexcept - - - virtual - ~Action - classAtk_1_1Action.html - a611dc6da2f6a0060908795e1eac0ec2f - () noexcept - - - AtkAction * - gobj - classAtk_1_1Action.html - a922d5d2a5c8af62cdea07810b229094e - () - - - const AtkAction * - gobj - classAtk_1_1Action.html - a2372fab551e83919d6d55010f881044f - () const - - - bool - do_action - classAtk_1_1Action.html - a41aa7ecc13346d8f9a826d9d9cf88a57 - (int i) - - - int - get_n_actions - classAtk_1_1Action.html - aa698f3d737de395afd3759c850cebba1 - () const - - - Glib::ustring - get_description - classAtk_1_1Action.html - a57dc505bf074239c89b31681e957ab83 - (int i) const - - - Glib::ustring - get_name - classAtk_1_1Action.html - ae8bb8b740952594f5169b983a45e2b23 - (int i) const - - - Glib::ustring - get_keybinding - classAtk_1_1Action.html - a4acdb52d10250f647be0c063cf21293f - (int i) - - - bool - set_description - classAtk_1_1Action.html - af157b00d0904b8dfde07048ec7980c77 - (int i, const Glib::ustring &desc) - - - Glib::ustring - get_localized_name - classAtk_1_1Action.html - a346497af2820bd9d0db1c2944ac779cf - (int i) - - - static void - add_interface - classAtk_1_1Action.html - a2e7470667a8a5a98a1a199111e80bc35 - (GType gtype_implementer) - - - static GType - get_type - classAtk_1_1Action.html - a02c3cea2ff08a6c1eeeedef35af32513 - () - - - - Action - classAtk_1_1Action.html - ac4e11558ec7198e7b57f6866cd7a750b - () - - - virtual bool - do_action_vfunc - classAtk_1_1Action.html - a13d4c4e640ce5583e806f0d9dcefd437 - (int i) - - - virtual int - get_n_actions_vfunc - classAtk_1_1Action.html - af62a12308bdef0811e6daced29ec85cc - () const - - - virtual const char * - get_description_vfunc - classAtk_1_1Action.html - ad025cc8f644426200894f062d2db1573 - (int i) const - - - virtual const char * - get_name_vfunc - classAtk_1_1Action.html - a41e3d9bc5fcef177a26fe131cf04b49e - (int i) const - - - virtual const char * - get_keybinding_vfunc - classAtk_1_1Action.html - a27f7a9d1dcab566b8c9a2cd3f8ef5cc6 - (int i) const - - - virtual bool - set_description_vfunc - classAtk_1_1Action.html - a94c613c958a84eac9610ca84bc78d0be - (int i, const Glib::ustring &desc) - - - Glib::RefPtr< Atk::Action > - wrap - classAtk_1_1Action.html - a7fec8f013e04cd52a8bb16a68ce3b6ff - (AtkAction *object, bool take_copy=false) - - - - Atk::Attribute - classAtk_1_1Attribute.html - - - Attribute - classAtk_1_1Attribute.html - a043d21fa0123a7152130da5cb85cd12a - () - - - - Attribute - classAtk_1_1Attribute.html - ac46e36dcd3292d21fd29139ba4db127c - (const Glib::ustring &name, const Glib::ustring &value) - - - - Attribute - classAtk_1_1Attribute.html - a3edce1f392cd9e725dc6cca8a66866ca - (const AtkAttribute *gobject) - - - - ~Attribute - classAtk_1_1Attribute.html - ab4f0cb246a8c72bb2cabf6b79c0ef267 - () - - - - Attribute - classAtk_1_1Attribute.html - a353ff05cceb0726cfab495f389a6426c - (const Attribute &other) - - - Attribute & - operator= - classAtk_1_1Attribute.html - adeceb8f108e73ef214843ccb3e715575 - (const Attribute &other) - - - void - swap - classAtk_1_1Attribute.html - a64230b500df68f2a178755a74ca1f77f - (Attribute &other) - - - Glib::ustring - get_name - classAtk_1_1Attribute.html - ae791fabdee640e4d0c0edf5a326fdee6 - () const - - - Glib::ustring - get_value - classAtk_1_1Attribute.html - acc9264b10739d04fd1fb099fc6347cd9 - () const - - - AtkAttribute * - gobj - classAtk_1_1Attribute.html - a50ba5d3fa3ba931a1301edb43d42028d - () - - - const AtkAttribute * - gobj - classAtk_1_1Attribute.html - a5ffd66a3f75c573f0fed5a7d4ee42218 - () const - - - AtkAttribute - gobject_ - classAtk_1_1Attribute.html - a8243e2df2dea5d0d6e54ea5f0a645879 - - - - void - swap - classAtk_1_1Attribute.html - ab160a8d72a859ee7b7b9eb83da3c9ef3 - (Attribute &lhs, Attribute &rhs) - - - - Atk::AttributeTraits - structAtk_1_1AttributeTraits.html - - Atk::Attribute - CppType - structAtk_1_1AttributeTraits.html - ad1880881d4bb61879592a79116f49a2d - - - - const AtkAttribute * - CType - structAtk_1_1AttributeTraits.html - afdc02e4c19a2cbb12d2104ead4cece4b - - - - AtkAttribute * - CTypeNonConst - structAtk_1_1AttributeTraits.html - a37462f65af25780b9a555588af344053 - - - - static CType - to_c_type - structAtk_1_1AttributeTraits.html - a56d6bf64e4c1cebd6637046a635de36f - (CType item) - - - static CType - to_c_type - structAtk_1_1AttributeTraits.html - af460000f0f606f11d05f5db4d6a45425 - (const CppType &item) - - - static CppType - to_cpp_type - structAtk_1_1AttributeTraits.html - a8463fe4d8ecb2f3d76b7fc63b4ad1e27 - (CType item) - - - static void - release_c_type - structAtk_1_1AttributeTraits.html - a8886ec0bad433b3db10a9d1a06c009c8 - (CType item) - - - - Atk::Component - classAtk_1_1Component.html - Glib::Interface - - - Component - classAtk_1_1Component.html - a73bf5cdf33a1d8bb907d130645749f40 - (Component &&src) noexcept - - - Component & - operator= - classAtk_1_1Component.html - a572edbd3cf1744c51b1cef085c51b28c - (Component &&src) noexcept - - - virtual - ~Component - classAtk_1_1Component.html - afab06c0cc185e0c05f4a3cd19cca746a - () noexcept - - - AtkComponent * - gobj - classAtk_1_1Component.html - a4e9352cd6e5e139cd5b5c310fab5d993 - () - - - const AtkComponent * - gobj - classAtk_1_1Component.html - acca597d13f18df1b507a739f245a402a - () const - - - guint - add_focus_handler - classAtk_1_1Component.html - a3801c9c8883b04c3cb6cbc3a8324d720 - (AtkFocusHandler handler) - - - bool - contains - classAtk_1_1Component.html - adfdd4667a6179c84f49a28bf7b2c3b6c - (int x, int y, CoordType coord_type) const - - - Glib::RefPtr< Atk::Object > - get_accessible_at_point - classAtk_1_1Component.html - a587373de988a993ac69473a6f968d592 - (int x, int y, CoordType coord_type) - - - void - get_extents - classAtk_1_1Component.html - aff54a73d11808f3b83e476b0b6c6ef72 - (int &x, int &y, int &width, int &height, CoordType coord_type) const - - - void - get_position - classAtk_1_1Component.html - ab3f0b95a127bd1007bc90bf8c34077ba - (int &x, int &y, CoordType coord_type) const - - - void - get_size - classAtk_1_1Component.html - a5a99521eb20cd82226016196f642684b - (int &width, int &height) const - - - Layer - get_layer - classAtk_1_1Component.html - a24ae6220ea9146327965cc116ec5b486 - () const - - - int - get_mdi_zorder - classAtk_1_1Component.html - a2ce831669dc8644aa58c0e1540f78bf7 - () const - - - bool - grab_focus - classAtk_1_1Component.html - ab62940b0782345103171b8e752b58f28 - () - - - void - remove_focus_handler - classAtk_1_1Component.html - a980a75536f126672470779ab68a08502 - (guint handler_id) - - - bool - set_extents - classAtk_1_1Component.html - a9d4d0aa5f9531ed200340e4b273c29cd - (int x, int y, int width, int height, CoordType coord_type) - - - bool - set_position - classAtk_1_1Component.html - a0f799ad812be9ee955d5e04b1022d107 - (int x, int y, CoordType coord_type) - - - bool - set_size - classAtk_1_1Component.html - a41f4181b9b75198b77e2edbdb5dab2f2 - (int width, int height) - - - static void - add_interface - classAtk_1_1Component.html - a15771f86615e09fff9cc8a2e2edabf47 - (GType gtype_implementer) - - - static GType - get_type - classAtk_1_1Component.html - aed84d91484c71856c5f082bf0a1a817b - () - - - - Component - classAtk_1_1Component.html - af1afe43507f5afcf2f996cc847d7c084 - () - - - virtual guint - add_focus_handler_vfunc - classAtk_1_1Component.html - a93b433cd08ca6b758ff4b322974b9ed7 - (AtkFocusHandler handler) - - - virtual bool - contains_vfunc - classAtk_1_1Component.html - af0091566b6e9eb55c6dac5cb67d587e0 - (int x, int y, CoordType coord_type) const - - - virtual Glib::RefPtr< Atk::Object > - get_accessible_at_point_vfunc - classAtk_1_1Component.html - a7d342091a622e3396135beba74423ae2 - (int x, int y, CoordType coord_type) - - - virtual void - get_extents_vfunc - classAtk_1_1Component.html - a4d857e04a0a423823e0d59d411bdb24d - (int &x, int &y, int &width, int &height, CoordType coord_type) const - - - virtual void - get_position_vfunc - classAtk_1_1Component.html - a085db135f48e8e47385276b9a60c3395 - (int &x, int &y, CoordType coord_type) const - - - virtual void - get_size_vfunc - classAtk_1_1Component.html - a5a5778183be0193e7da814c21e8ef79d - (int &width, int &height) const - - - virtual Layer - get_layer_vfunc - classAtk_1_1Component.html - a82df7736bc5d929450ffe75f209a14fa - () const - - - virtual int - get_mdi_zorder_vfunc - classAtk_1_1Component.html - af25995d80bbe33242cd4a2dff11b6764 - () const - - - virtual bool - grab_focus_vfunc - classAtk_1_1Component.html - a1b44688c98c64438910d4aa526b9c7a6 - () - - - virtual void - remove_focus_handler_vfunc - classAtk_1_1Component.html - a2364cc6e09512e0f3fdbc296789da99e - (guint handler_id) - - - virtual bool - set_extents_vfunc - classAtk_1_1Component.html - a035a8abcdf88833c8343ef73a2d42396 - (int x, int y, int width, int height, CoordType coord_type) - - - virtual bool - set_position_vfunc - classAtk_1_1Component.html - a46471481ae0d6e3554d45d1ef6563cd0 - (int x, int y, CoordType coord_type) - - - virtual bool - set_size_vfunc - classAtk_1_1Component.html - af1ffcb3ec49ce31a9a102757dfd4a2b7 - (int width, int height) - - - Glib::RefPtr< Atk::Component > - wrap - classAtk_1_1Component.html - a3eb83954385bb8705cfd2d6d4f2a0f23 - (AtkComponent *object, bool take_copy=false) - - - - Atk::Document - classAtk_1_1Document.html - Glib::Interface - - - Document - classAtk_1_1Document.html - a1975a281a46f8531334e06a14411eec1 - (Document &&src) noexcept - - - Document & - operator= - classAtk_1_1Document.html - ade3d17611781ea669d5b0d9fbe353aed - (Document &&src) noexcept - - - virtual - ~Document - classAtk_1_1Document.html - a408e7da26a757e26e3725b56d4701b8b - () noexcept - - - AtkDocument * - gobj - classAtk_1_1Document.html - a4090329c34cc13c4a9f0ccfdce4cab81 - () - - - const AtkDocument * - gobj - classAtk_1_1Document.html - ab78f086eab33695dcf4d762155d28d43 - () const - - - Glib::ustring - get_document_type - classAtk_1_1Document.html - afc3d3f8af8e9788684fa9075d4b19ca3 - () const - - - gpointer - get_document - classAtk_1_1Document.html - a9416b4cdce5546b53c01590cf345d916 - () - - - Glib::ustring - get_attribute_value - classAtk_1_1Document.html - a2c6ef22a1d3f495cf33644cf2a30dfca - (const Glib::ustring &attribute_name) const - - - bool - set_attribute_value - classAtk_1_1Document.html - a820411b79a19b85f3b49fd0cf270805c - (const Glib::ustring &attribute_name, const Glib::ustring &attribute_value) - - - static void - add_interface - classAtk_1_1Document.html - a4196505a6fa361087e1331099f163a9b - (GType gtype_implementer) - - - static GType - get_type - classAtk_1_1Document.html - a2fbe181bf5391efbc4cd83df6aae15d5 - () - - - - Document - classAtk_1_1Document.html - a7d887df675bfe88dca815e09684e4eba - () - - - virtual const gchar * - get_document_type_vfunc - classAtk_1_1Document.html - aa5cad9c4e1d0d2ff7bd66185e1249828 - () - - - virtual gpointer - get_document_vfunc - classAtk_1_1Document.html - a55bcf80a0f7e9e6d65e9668cd02f5064 - () const - - - Glib::RefPtr< Atk::Document > - wrap - classAtk_1_1Document.html - a03ea1365835687a661421ef1a4ea4582 - (AtkDocument *object, bool take_copy=false) - - - - Atk::EditableText - classAtk_1_1EditableText.html - Glib::Interface - - - EditableText - classAtk_1_1EditableText.html - aaedb014b2be5bb8da0e8cd98e9137d59 - (EditableText &&src) noexcept - - - EditableText & - operator= - classAtk_1_1EditableText.html - ae737b6852902b81034850970f0c12d89 - (EditableText &&src) noexcept - - - virtual - ~EditableText - classAtk_1_1EditableText.html - aedef74afe2d8592ace55058f599e5818 - () noexcept - - - AtkEditableText * - gobj - classAtk_1_1EditableText.html - a636b0522789291428a6637a6d7d70b70 - () - - - const AtkEditableText * - gobj - classAtk_1_1EditableText.html - a091da706928a765d68cca9903344186e - () const - - - bool - set_run_attributes - classAtk_1_1EditableText.html - ae37407f98c293b1c627478c1ab09fc19 - (const AttributeSet &attrib_set, int start_offset, int end_offset) - - - void - set_text_contents - classAtk_1_1EditableText.html - a6a4873f929dc68078ac04626d289cb3d - (const Glib::ustring &string) - - - void - insert_text - classAtk_1_1EditableText.html - a42a9201f189d8ee84315407a1cb6583b - (const Glib::ustring &string, int length, int &position) - - - void - copy_text - classAtk_1_1EditableText.html - a6396f4e74b99391d865ec5249a2a208d - (int start_pos, int end_pos) - - - void - cut_text - classAtk_1_1EditableText.html - a716cc5445588d01148cf7abadef55890 - (int start_pos, int end_pos) - - - void - delete_text - classAtk_1_1EditableText.html - a21a956ca942bb0fb2907abb1e2253b05 - (int start_pos, int end_pos) - - - void - paste_text - classAtk_1_1EditableText.html - ab871ed98fae56fc8a7f15cfcc74267b8 - (int position) - - - static void - add_interface - classAtk_1_1EditableText.html - a3eb8a3bdb1c8a27901f2c8669c428685 - (GType gtype_implementer) - - - static GType - get_type - classAtk_1_1EditableText.html - a7f4f438d3bbed72d64a988ab1ceff29c - () - - - - EditableText - classAtk_1_1EditableText.html - ae158517991102b56fbf26235995c12dc - () - - - virtual bool - set_run_attributes_vfunc - classAtk_1_1EditableText.html - a1dbced3c1a3cddb2f6b5026d9861899e - (AtkAttributeSet *attrib_set, int start_offset, int end_offset) - - - virtual void - set_text_contents_vfunc - classAtk_1_1EditableText.html - a94fa29260877cc59681573745c299e6a - (const Glib::ustring &string) - - - virtual void - insert_text_vfunc - classAtk_1_1EditableText.html - a8804d8be2962b4c3bf4ab7e1a0fdbfd7 - (const Glib::ustring &string, int length, int &position) - - - virtual void - copy_text_vfunc - classAtk_1_1EditableText.html - a0f7fd8e287ea5cd03c24498d8e565902 - (int start_pos, int end_pos) - - - virtual void - cut_text_vfunc - classAtk_1_1EditableText.html - aac4d08e280d76ff17146d71bb3421ef2 - (int start_pos, int end_pos) - - - virtual void - delete_text_vfunc - classAtk_1_1EditableText.html - ae0773ba2194a2c6a23438666c62c03ab - (int start_pos, int end_pos) - - - virtual void - paste_text_vfunc - classAtk_1_1EditableText.html - a72ea607c3cbad44d064441624c34984e - (int position) - - - Glib::RefPtr< Atk::EditableText > - wrap - classAtk_1_1EditableText.html - ad7d508f779bfcfb1b0af2a55af905e34 - (AtkEditableText *object, bool take_copy=false) - - - - Atk::Hyperlink - classAtk_1_1Hyperlink.html - Glib::Object - Atk::Action - - - Hyperlink - classAtk_1_1Hyperlink.html - abd51909f27b6aed85b4827505683a11c - (Hyperlink &&src) noexcept - - - Hyperlink & - operator= - classAtk_1_1Hyperlink.html - a748c57e0bc6c69dc1f059e2ed2a8fec9 - (Hyperlink &&src) noexcept - - - virtual - ~Hyperlink - classAtk_1_1Hyperlink.html - a7ec1861196b7f8ab57a29fd323735cba - () noexcept - - - AtkHyperlink * - gobj - classAtk_1_1Hyperlink.html - a99f2d77401d7707606714aaa2299a0b6 - () - - - const AtkHyperlink * - gobj - classAtk_1_1Hyperlink.html - aa67b0c75fcc91b7c5eda616d8ee4f9bb - () const - - - AtkHyperlink * - gobj_copy - classAtk_1_1Hyperlink.html - a8eab74455274d14ba2e6a9ff5ce523a1 - () - - - Glib::ustring - get_uri - classAtk_1_1Hyperlink.html - a75ad4d2cc741a2500af3c626efca76ff - (int i) const - - - Glib::RefPtr< Atk::Object > - get_object - classAtk_1_1Hyperlink.html - a76a73ddbae151631481c61b8aff68605 - (int i) - - - Glib::RefPtr< const Atk::Object > - get_object - classAtk_1_1Hyperlink.html - ab0f85e1b6fcecde119887070327f3494 - (int i) const - - - int - get_end_index - classAtk_1_1Hyperlink.html - aea6e544340f4b0880b6931e00020b5f8 - () const - - - int - get_start_index - classAtk_1_1Hyperlink.html - a574e97644531c9d9433396afabd21259 - () const - - - bool - is_valid - classAtk_1_1Hyperlink.html - a35779f410dbeda1f015724d2e958500c - () const - - - bool - is_inline - classAtk_1_1Hyperlink.html - acba76981171a0c4cfa26c1e1d29d61c7 - () const - - - int - get_n_anchors - classAtk_1_1Hyperlink.html - af073b29368e1748f5e228800c3648156 - () const - - - Glib::SignalProxy0< void > - signal_link_activated - classAtk_1_1Hyperlink.html - a881cbeaedcf04da340f6592ebe5526d4 - () - - - Glib::PropertyProxy_ReadOnly< bool > - property_selected_link - classAtk_1_1Hyperlink.html - a7386b392fd76e6917a73d0fe8b569a75 - () const - - - Glib::PropertyProxy_ReadOnly< int > - property_number_of_anchors - classAtk_1_1Hyperlink.html - ae0b6e4a91e3a3a24d0a3a3d4cb9d3672 - () const - - - Glib::PropertyProxy_ReadOnly< int > - property_end_index - classAtk_1_1Hyperlink.html - a4a17730caee0056b4d2f1c648626eed5 - () const - - - Glib::PropertyProxy_ReadOnly< int > - property_start_index - classAtk_1_1Hyperlink.html - a7e6b935c47a22c90cf231d65e1dca59b - () const - - - static GType - get_type - classAtk_1_1Hyperlink.html - af21f10a0718b0a6745f1e974f0919ffe - () - - - virtual gchar * - get_uri_vfunc - classAtk_1_1Hyperlink.html - af194a7bef05db3e85171d175fdd60819 - (int i) const - - - virtual Glib::RefPtr< Atk::Object > - get_object_vfunc - classAtk_1_1Hyperlink.html - a8afaed8f11fbc4914d7c3647c2917206 - (int i) - - - virtual int - get_end_index_vfunc - classAtk_1_1Hyperlink.html - a9145f9091618c074bc66bf693ca724b3 - () const - - - virtual int - get_start_index_vfunc - classAtk_1_1Hyperlink.html - a26c09a6c6924d37df497d95af7168d3d - () const - - - virtual bool - is_valid_vfunc - classAtk_1_1Hyperlink.html - a3e1742105026e816b353840a23258fe0 - () const - - - virtual int - get_n_anchors_vfunc - classAtk_1_1Hyperlink.html - a97a6b13ef828068907045f1e7e3693d3 - () const - - - virtual guint - link_state_vfunc - classAtk_1_1Hyperlink.html - a2663f5da6c0a19e514945d6704bbab9b - () const - - - virtual bool - is_selected_link_vfunc - classAtk_1_1Hyperlink.html - a47498b1d5093e828a5740365d0e13905 - () const - - - virtual void - on_link_activated - classAtk_1_1Hyperlink.html - a50b6602f4b136a7a48e1b6d199e2a2e7 - () - - - Glib::RefPtr< Atk::Hyperlink > - wrap - classAtk_1_1Hyperlink.html - af90587b7c6392449e9e406f7cc6d3a8f - (AtkHyperlink *object, bool take_copy=false) - - - - Atk::Hypertext - classAtk_1_1Hypertext.html - Glib::Interface - - - Hypertext - classAtk_1_1Hypertext.html - a187a48e95508aa456922e66ef8f184bd - (Hypertext &&src) noexcept - - - Hypertext & - operator= - classAtk_1_1Hypertext.html - a5c5a894b068b19120318758aca2cfe93 - (Hypertext &&src) noexcept - - - virtual - ~Hypertext - classAtk_1_1Hypertext.html - a39147eec80c15b7f08b0bfa733e04194 - () noexcept - - - AtkHypertext * - gobj - classAtk_1_1Hypertext.html - a527649574ec60f6e253bc385628db219 - () - - - const AtkHypertext * - gobj - classAtk_1_1Hypertext.html - aadafae6feabdc7017323d929c421e4f1 - () const - - - Glib::RefPtr< Hyperlink > - get_link - classAtk_1_1Hypertext.html - adaca2de7d96759f284f07b20f0f267bb - (int link_index) - - - Glib::RefPtr< const Hyperlink > - get_link - classAtk_1_1Hypertext.html - a9e2588009f19677f9cecdbdae93b2bba - (int link_index) const - - - int - get_n_links - classAtk_1_1Hypertext.html - a453a95c2a2421dd0e1dc49c8b73a89c3 - () const - - - int - get_link_index - classAtk_1_1Hypertext.html - a082dbe83116245a99bc3f1e8a4e55cb8 - (int char_index) const - - - Glib::SignalProxy1< void, int > - signal_link_selected - classAtk_1_1Hypertext.html - a487390f673ec71f313e0461e1e9191d9 - () - - - virtual Glib::RefPtr< Hyperlink > - get_link_vfunc - classAtk_1_1Hypertext.html - a3d51d7616d4008e8eab8085aee727575 - (int link_index) - - - virtual int - get_n_links_vfunc - classAtk_1_1Hypertext.html - afd5b257c53abd3829151221f81487821 - () const - - - virtual int - get_link_index_vfunc - classAtk_1_1Hypertext.html - af761e0ee732a0fdbd06a9ca4eff8c4b9 - (int char_index) const - - - static void - add_interface - classAtk_1_1Hypertext.html - adaa05a5a838f566497324999ac639e3e - (GType gtype_implementer) - - - static GType - get_type - classAtk_1_1Hypertext.html - a858a059b2b1b9e9170e97daccd64754d - () - - - - Hypertext - classAtk_1_1Hypertext.html - a78d1d5a298353da4cec128c7dcdbad39 - () - - - virtual void - on_link_selected - classAtk_1_1Hypertext.html - a404833990e4ea9cdd239b73322cabac3 - (int link_index) - - - Glib::RefPtr< Atk::Hypertext > - wrap - classAtk_1_1Hypertext.html - acf4d49135820c5191f7189fab2d7664d - (AtkHypertext *object, bool take_copy=false) - - - - Atk::Image - classAtk_1_1Image.html - Glib::Interface - - - Image - classAtk_1_1Image.html - a07bb0fa286d798c730bf7dac77506fcf - (Image &&src) noexcept - - - Image & - operator= - classAtk_1_1Image.html - aad09d45e9e542bbb7017a8c97dc1334e - (Image &&src) noexcept - - - virtual - ~Image - classAtk_1_1Image.html - ae84c82073bb7633f361a996ff5c1c4e3 - () noexcept - - - AtkImage * - gobj - classAtk_1_1Image.html - a7649474169b7726721b1b5688420c377 - () - - - const AtkImage * - gobj - classAtk_1_1Image.html - a671c40909151052e66300c1324217377 - () const - - - bool - set_image_description - classAtk_1_1Image.html - a53fe6d9b350bf5fd7ba19a6f7179a55c - (const Glib::ustring &description) - - - Glib::ustring - get_image_description - classAtk_1_1Image.html - a857112f6307dfbf5177096f3bb72d80c - () const - - - void - get_image_size - classAtk_1_1Image.html - a22a4c26e1642a421ffec41ea6492e11b - (int &width, int &height) const - - - void - get_image_position - classAtk_1_1Image.html - af22f48ac491ceddb82329076cc63fca9 - (int &x, int &y, CoordType coord_type) const - - - static void - add_interface - classAtk_1_1Image.html - a0301a217fa7dbd2994a1ff8904e9c8f2 - (GType gtype_implementer) - - - static GType - get_type - classAtk_1_1Image.html - a39e9cbc314b2bf63805ead79dcd8a745 - () - - - - Image - classAtk_1_1Image.html - acbfd02f0474db188114575c0070efbca - () - - - virtual bool - set_image_description_vfunc - classAtk_1_1Image.html - a445291439ee8c0b3feac06da935bccdb - (const Glib::ustring &description) - - - virtual const char * - get_image_description_vfunc - classAtk_1_1Image.html - a4c36cfccf4bff7e7832a4d965e53817b - () const - - - virtual void - get_image_position_vfunc - classAtk_1_1Image.html - a75d132a2aa02ebca00020bd010a87de4 - (int &x, int &y, CoordType coord_type) const - - - virtual void - get_image_size_vfunc - classAtk_1_1Image.html - a16478375c58e928b81c43132a892c593 - (int &width, int &height) const - - - Glib::RefPtr< Atk::Image > - wrap - classAtk_1_1Image.html - a03bbf10f56b004d274029b27bd9d83f2 - (AtkImage *object, bool take_copy=false) - - - - Atk::Implementor - classAtk_1_1Implementor.html - Glib::Interface - - - Implementor - classAtk_1_1Implementor.html - a107c3e711d707d84e43eecd412402989 - (Implementor &&src) noexcept - - - Implementor & - operator= - classAtk_1_1Implementor.html - a39733d7aba0cc26fbd085d1220c5fdd8 - (Implementor &&src) noexcept - - - virtual - ~Implementor - classAtk_1_1Implementor.html - a484054449cd54b9952cb5277ed7e9240 - () noexcept - - - AtkImplementor * - gobj - classAtk_1_1Implementor.html - a2ff0ebc78e6c37d678487f588be17ae6 - () - - - const AtkImplementor * - gobj - classAtk_1_1Implementor.html - a468eb4b800275ac8d6ca2130496af275 - () const - - - static void - add_interface - classAtk_1_1Implementor.html - a838764354ab8c6d2c84ff291b57fdb05 - (GType gtype_implementer) - - - static GType - get_type - classAtk_1_1Implementor.html - a9460675c87793cb667a377568f5d348e - () - - - - Implementor - classAtk_1_1Implementor.html - a7c5105ae5d57982fa69fcacdb891e24d - () - - - virtual Glib::RefPtr< Object > - ref_accessibile_vfunc - classAtk_1_1Implementor.html - acc47f90d8800b06b702ac316677283b8 - () - - - Glib::RefPtr< Atk::Implementor > - wrap - classAtk_1_1Implementor.html - a6b4ff8928c74e07e6c6655865baffbfb - (AtkImplementor *object, bool take_copy=false) - - - - Atk::NoOpObject - classAtk_1_1NoOpObject.html - Atk::Object - Atk::Component - Atk::Action - Atk::EditableText - Atk::Image - Atk::Selection - Atk::Table - Atk::Text - Atk::Hypertext - Atk::Value - - - NoOpObject - classAtk_1_1NoOpObject.html - ab4f7e9560175a1ec47828fe098914af9 - (NoOpObject &&src) noexcept - - - NoOpObject & - operator= - classAtk_1_1NoOpObject.html - aa435b24be60ac7c878d31b355aa25b94 - (NoOpObject &&src) noexcept - - - virtual - ~NoOpObject - classAtk_1_1NoOpObject.html - ab58c43d254493433a1bbbe124a891203 - () noexcept - - - AtkNoOpObject * - gobj - classAtk_1_1NoOpObject.html - aaad07a3a8ce4dea968c53f0098498836 - () - - - const AtkNoOpObject * - gobj - classAtk_1_1NoOpObject.html - af54be60c4815bde603b886cbb876baea - () const - - - AtkNoOpObject * - gobj_copy - classAtk_1_1NoOpObject.html - ae91fd9a44888365a2978aa53bb9ce9cd - () - - - static GType - get_type - classAtk_1_1NoOpObject.html - aded86b1b34b3350cac1366e52c4663d2 - () - - - Glib::RefPtr< Atk::NoOpObject > - wrap - classAtk_1_1NoOpObject.html - a0cb9e4aec035de86146f2b798f72a181 - (AtkNoOpObject *object, bool take_copy=false) - - - - Atk::Object - classAtk_1_1Object.html - Glib::Object - - - Object - classAtk_1_1Object.html - abc9637d9681fc84134c9ddd9a263054f - (Object &&src) noexcept - - - Object & - operator= - classAtk_1_1Object.html - a7ccd808ecd9f180d2b3b762f5cff49e2 - (Object &&src) noexcept - - - virtual - ~Object - classAtk_1_1Object.html - aa8105e113d0fe7eb8958057d1d079820 - () noexcept - - - AtkObject * - gobj - classAtk_1_1Object.html - ad864427ab22cefa700508f559a65edd2 - () - - - const AtkObject * - gobj - classAtk_1_1Object.html - a49f094cb0ca77cae3a9623ec0148f895 - () const - - - AtkObject * - gobj_copy - classAtk_1_1Object.html - a1035c027c592673cfda5375801349a21 - () - - - Glib::ustring - get_name - classAtk_1_1Object.html - a13a68f38ef69b789c2007e11d284c9bf - () const - - - Glib::ustring - get_description - classAtk_1_1Object.html - a7868a3abf0f976b0613b438b443648bb - () const - - - Glib::RefPtr< Atk::Object > - get_parent - classAtk_1_1Object.html - a84a2e2618308c253a5c4c2d69639475c - () - - - int - get_n_accessible_children - classAtk_1_1Object.html - a3442b9a00d230bdc2c90c9f674449fb2 - () const - - - Glib::RefPtr< Atk::Object > - get_accessible_child - classAtk_1_1Object.html - a083c8dc21bb10a1e8d3c1d3d886365f2 - (int i) - - - Glib::RefPtr< RelationSet > - get_relation_set - classAtk_1_1Object.html - aee9b9d193da1e4aae578146451692478 - () - - - Role - get_role - classAtk_1_1Object.html - a00decf39d41483bfe7d81e8b000a09bd - () const - - - Glib::RefPtr< StateSet > - get_state_set - classAtk_1_1Object.html - aa33673dadc19b5e3830fd2531ef13c30 - () - - - int - get_index_in_parent - classAtk_1_1Object.html - a341770f5f567bee4f241c7c4030140cd - () - - - void - set_name - classAtk_1_1Object.html - a11b8b42866677db3b1a241a4071b0a5e - (const Glib::ustring &name) - - - void - set_description - classAtk_1_1Object.html - a7b44bd87ad24140b8f0bbe8ee4267205 - (const Glib::ustring &description) - - - void - set_parent - classAtk_1_1Object.html - a05b859f172dcce174b6ec4c52e0b76be - (const Glib::RefPtr< Atk::Object > &parent) - - - void - set_role - classAtk_1_1Object.html - ac51f6e7286a90a5d4daee05160fe4f28 - (Role role) - - - void - notify_state_change - classAtk_1_1Object.html - a220aafba4f632e755c45bc57f3293689 - (State state, bool value) - - - bool - add_relationship - classAtk_1_1Object.html - a8ccf42eed0a5625d4c46444c73412daa - (RelationType relationship, const Glib::RefPtr< Object > &target) - - - bool - remove_relationship - classAtk_1_1Object.html - ad98e5624388dfec805132e36f6ba53c4 - (RelationType relationship, const Glib::RefPtr< Object > &target) - - - Glib::SignalProxy2< void, guint, gpointer > - signal_children_changed - classAtk_1_1Object.html - a496b9cee7c6ace9a56b300eec209bf05 - () - - - Glib::SignalProxy1< void, bool > - signal_focus_event - classAtk_1_1Object.html - a68d30c414f56a9c1c23f1dce66b5aa30 - () - - - Glib::SignalProxy1< void, AtkPropertyValues * > - signal_property_change - classAtk_1_1Object.html - af8e54093d47b60ce31a27e9187814a8a - () - - - Glib::SignalProxy2< void, const Glib::ustring &, bool > - signal_state_change - classAtk_1_1Object.html - a9da6511ef70dd4f5646894a4f71a1e89 - () - - - Glib::SignalProxy0< void > - signal_visible_data_changed - classAtk_1_1Object.html - a6d0cdb3329a0376d32cb4684c4a29e59 - () - - - Glib::SignalProxy1< void, void ** > - signal_active_descendant_changed - classAtk_1_1Object.html - a3e575cf3924feb39f240d8d4fe24eee5 - () - - - Glib::PropertyProxy< Glib::ustring > - property_accessible_name - classAtk_1_1Object.html - a5f5b74cb23844b99b37be6e9fb571045 - () - - - Glib::PropertyProxy_ReadOnly< Glib::ustring > - property_accessible_name - classAtk_1_1Object.html - ab51410354e9d2cfa23c7d5c9561efbff - () const - - - Glib::PropertyProxy< Glib::ustring > - property_accessible_description - classAtk_1_1Object.html - aea189ff4f0a8bd3113f173ce0916e5f8 - () - - - Glib::PropertyProxy_ReadOnly< Glib::ustring > - property_accessible_description - classAtk_1_1Object.html - a1b34ba420631061c5821e86c77ca5971 - () const - - - Glib::PropertyProxy< Glib::RefPtr< Atk::Object > > - property_accessible_parent - classAtk_1_1Object.html - a35fafce3b8edde7ccbae0aeb57896e91 - () - - - Glib::PropertyProxy_ReadOnly< Glib::RefPtr< Atk::Object > > - property_accessible_parent - classAtk_1_1Object.html - a879928839209a1ee766aa19bd92d2472 - () const - - - Glib::PropertyProxy< double > - property_accessible_value - classAtk_1_1Object.html - ab90aeda547191df4395ce03ee0040254 - () - - - Glib::PropertyProxy_ReadOnly< double > - property_accessible_value - classAtk_1_1Object.html - ab8227be92e7bc624257f00532e9ebfec - () const - - - Glib::PropertyProxy< int > - property_accessible_role - classAtk_1_1Object.html - a8832c96c8bbb9c4aabc3823d8ee883f7 - () - - - Glib::PropertyProxy_ReadOnly< int > - property_accessible_role - classAtk_1_1Object.html - a6a5d2424a6eb8e4dfc41040c28e8aacd - () const - - - Glib::PropertyProxy_ReadOnly< int > - property_accessible_component_layer - classAtk_1_1Object.html - a2d13e8afa514a048be3959c7f2415ac1 - () const - - - Glib::PropertyProxy_ReadOnly< int > - property_accessible_component_mdi_zorder - classAtk_1_1Object.html - a09e5efd14ddd65a6c5e335a6869ca255 - () const - - - Glib::PropertyProxy< Glib::ustring > - property_accessible_table_caption - classAtk_1_1Object.html - a481215c73723a3dc44ea4088a08cd3a9 - () - - - Glib::PropertyProxy_ReadOnly< Glib::ustring > - property_accessible_table_caption - classAtk_1_1Object.html - aa5e9cde08bba3dec29fafb06f845725a - () const - - - Glib::PropertyProxy< Glib::ustring > - property_accessible_table_column_description - classAtk_1_1Object.html - a58f00150a90a1bcf26f928ab55ef11f6 - () - - - Glib::PropertyProxy_ReadOnly< Glib::ustring > - property_accessible_table_column_description - classAtk_1_1Object.html - a303dfa9e9ebb8ac4083b612f7f1a0493 - () const - - - Glib::PropertyProxy< Glib::RefPtr< Atk::Object > > - property_accessible_table_column_header - classAtk_1_1Object.html - a13d39d282f998750a516c80eaf09c721 - () - - - Glib::PropertyProxy_ReadOnly< Glib::RefPtr< Atk::Object > > - property_accessible_table_column_header - classAtk_1_1Object.html - ae2e8c520d70f55b670382818e3778024 - () const - - - Glib::PropertyProxy< Glib::ustring > - property_accessible_table_row_description - classAtk_1_1Object.html - a9e2b9620ef4627e94762bbc4f1ca6dd2 - () - - - Glib::PropertyProxy_ReadOnly< Glib::ustring > - property_accessible_table_row_description - classAtk_1_1Object.html - a9997f90a071551d9eb7d78e796a89a05 - () const - - - Glib::PropertyProxy< Glib::RefPtr< Atk::Object > > - property_accessible_table_row_header - classAtk_1_1Object.html - a5fca91d065e1d2d39f14882342c78d0a - () - - - Glib::PropertyProxy_ReadOnly< Glib::RefPtr< Atk::Object > > - property_accessible_table_row_header - classAtk_1_1Object.html - ae4ee591805e16557e665a337e031a307 - () const - - - Glib::PropertyProxy< Glib::RefPtr< Atk::Object > > - property_accessible_table_summary - classAtk_1_1Object.html - a37b547ab60c11c13f5fd3b79e7068491 - () - - - Glib::PropertyProxy_ReadOnly< Glib::RefPtr< Atk::Object > > - property_accessible_table_summary - classAtk_1_1Object.html - ad0e884afda10d679742b64e13d90b50a - () const - - - static GType - get_type - classAtk_1_1Object.html - ab6c0fea38fa80a8db962f79706bca6b6 - () - - - virtual void - on_children_changed - classAtk_1_1Object.html - a70cdaa61ed852885d72d4b23ae71c042 - (guint change_index, gpointer changed_child) - - - virtual void - on_focus_event - classAtk_1_1Object.html - a55ade2971976ab91064e44d956dd4e29 - (bool focus_in) - - - virtual void - on_property_change - classAtk_1_1Object.html - a3ce5216408c6216502d2c96a016e9ff9 - (AtkPropertyValues *values) - - - virtual void - on_state_change - classAtk_1_1Object.html - ac7838d1294fa83f4aa2280f02f779397 - (const Glib::ustring &name, bool state_set) - - - virtual void - on_visible_data_changed - classAtk_1_1Object.html - a56bcdadf8e0cb521023900a04f52501b - () - - - virtual void - on_active_descendant_changed - classAtk_1_1Object.html - a4c15f596001f107fa12ab6b02c6ac5f1 - (void **child) - - - Glib::RefPtr< Atk::Object > - wrap - classAtk_1_1Object.html - a896ed35b3df49cb5a439b605c1ce4dd8 - (AtkObject *object, bool take_copy=false) - - - - Atk::ObjectAccessible - classAtk_1_1ObjectAccessible.html - Atk::Object - - - ObjectAccessible - classAtk_1_1ObjectAccessible.html - ab3c93fa987049e62cb212914c6151f42 - (ObjectAccessible &&src) noexcept - - - ObjectAccessible & - operator= - classAtk_1_1ObjectAccessible.html - a519f058c722d0f70efe7daecaa3471f1 - (ObjectAccessible &&src) noexcept - - - virtual - ~ObjectAccessible - classAtk_1_1ObjectAccessible.html - a10bd632d5995e089418037b62bbc55f7 - () noexcept - - - AtkGObjectAccessible * - gobj - classAtk_1_1ObjectAccessible.html - a418f39365081796182a26468acec8a3d - () - - - const AtkGObjectAccessible * - gobj - classAtk_1_1ObjectAccessible.html - a3e55ead94a3c4fe574d1dca3e0b081d8 - () const - - - AtkGObjectAccessible * - gobj_copy - classAtk_1_1ObjectAccessible.html - a5b85926be5fdab14aa1ef9db671c2b3c - () - - - static GType - get_type - classAtk_1_1ObjectAccessible.html - a83b1bf11cc078862cfbc7c65fa1835f7 - () - - - Glib::RefPtr< Glib::Object > - get_object - classAtk_1_1ObjectAccessible.html - a5237c718032945105d72b772297cd849 - () - - - Glib::RefPtr< const Glib::Object > - get_object - classAtk_1_1ObjectAccessible.html - acfba15fe7e643cbdb6f76ce691570215 - () const - - - static Glib::RefPtr< Atk::Object > - for_object - classAtk_1_1ObjectAccessible.html - a236c02ae1ea75cec8db3e07ae6a47b84 - (const Glib::RefPtr< Glib::Object > &obj) - - - static Glib::RefPtr< const Atk::Object > - for_object - classAtk_1_1ObjectAccessible.html - a96e311079f82b9b5e2368c6ea72fa5c3 - (const Glib::RefPtr< const Glib::Object > &obj) - - - Glib::RefPtr< Atk::ObjectAccessible > - wrap - classAtk_1_1ObjectAccessible.html - ad064cd66c057c1e305272a0e7ae8a993 - (AtkGObjectAccessible *object, bool take_copy=false) - - - - Atk::Range - classAtk_1_1Range.html - - - Range - classAtk_1_1Range.html - a53714adcdd043b435a07143b310cfea2 - () - - - - Range - classAtk_1_1Range.html - af03d12ebdc841f83d574c25d305db509 - (AtkRange *gobject, bool make_a_copy=true) - - - - Range - classAtk_1_1Range.html - a2ac6cb9af42b516ddb69ccac246ac291 - (const Range &other) - - - Range & - operator= - classAtk_1_1Range.html - a097a4de6fe7f36b2a33bb69581138010 - (const Range &other) - - - - Range - classAtk_1_1Range.html - ac4b86970d97438f009d4320d80642bcc - (Range &&other) noexcept - - - Range & - operator= - classAtk_1_1Range.html - adc56b3e769fa3284bb1932d9f76a8873 - (Range &&other) noexcept - - - - ~Range - classAtk_1_1Range.html - a5d6a5be9c417c9eb74d0b77bed5406ab - () noexcept - - - void - swap - classAtk_1_1Range.html - a7046bfd8002a2f5569deab5abb87271c - (Range &other) noexcept - - - AtkRange * - gobj - classAtk_1_1Range.html - a2ff5b93e1d6b1db1c30f0cdaffdacd87 - () - - - const AtkRange * - gobj - classAtk_1_1Range.html - a3cff44b75c8e7e127b5f6435c148ed53 - () const - - - AtkRange * - gobj_copy - classAtk_1_1Range.html - ab7bd4cc9b4c5bdff2fb371ebc9adecab - () const - - - - Range - classAtk_1_1Range.html - a6af835d5d2a416ec2dc69d9a2ea0ad9a - (double lower_limit, double upper_limit, const Glib::ustring &description) - - - double - get_lower_limit - classAtk_1_1Range.html - a6476f9de4d6b32f99abb0d1eaa5a582e - () const - - - double - get_upper_limit - classAtk_1_1Range.html - a603f765a8fe6785848be2c270d0179bc - () const - - - static GType - get_type - classAtk_1_1Range.html - acd3cc01db46745f8e10ed45567aee598 - () - - - AtkRange * - gobject_ - classAtk_1_1Range.html - a6eea6ef97b622386c2e843e109b0a410 - - - - void - swap - classAtk_1_1Range.html - aa752b782ec6f9f1e9e1e7fb15bf066bd - (Range &lhs, Range &rhs) noexcept - - - Atk::Range - wrap - classAtk_1_1Range.html - ad9b72771e6e36dbdbf7a6e30b1458d7c - (AtkRange *object, bool take_copy=false) - - - - Atk::Relation - classAtk_1_1Relation.html - Glib::Object - - - Relation - classAtk_1_1Relation.html - a79a2c00f770c445116c634a3ec84c1f0 - (Relation &&src) noexcept - - - Relation & - operator= - classAtk_1_1Relation.html - a63e017420ce4befd4c30caa4ab29a00c - (Relation &&src) noexcept - - - virtual - ~Relation - classAtk_1_1Relation.html - a9ff9159876c6b4299b28eba3fecc7200 - () noexcept - - - AtkRelation * - gobj - classAtk_1_1Relation.html - ab0f2045c77cc80a3a33234c0b24502b5 - () - - - const AtkRelation * - gobj - classAtk_1_1Relation.html - adf1190c7f5b9bd05a2df6326de3be904 - () const - - - AtkRelation * - gobj_copy - classAtk_1_1Relation.html - a60670602a86a4812af0af5886c9845f7 - () - - - RelationType - get_relation_type - classAtk_1_1Relation.html - a12a77bd41e0944dcd3092dd44b04a0c6 - () const - - - Glib::ArrayHandle< Glib::RefPtr< Atk::Object > > - get_target - classAtk_1_1Relation.html - a43d56433bac5c1ad96901e4bdca5d996 - () - - - Glib::ArrayHandle< Glib::RefPtr< const Atk::Object > > - get_target - classAtk_1_1Relation.html - a6e6037c097d3cad3223e88a1af8b0270 - () const - - - void - add_target - classAtk_1_1Relation.html - a4f4ad2f69975201108d77bc34d4337f8 - (const Glib::RefPtr< Atk::Object > &target) - - - static GType - get_type - classAtk_1_1Relation.html - a4580ba63dfa8c56c374fcc2aa64eb1a8 - () - - - static Glib::RefPtr< Relation > - create - classAtk_1_1Relation.html - ac490ab229919dd681d578dc74a5c19d8 - (const Glib::ArrayHandle< Glib::RefPtr< Atk::Object > > &targets, RelationType relationship=RELATION_NULL) - - - - Relation - classAtk_1_1Relation.html - a018bb0da9dbc46d4d079236167f7ee54 - (const Glib::ArrayHandle< Glib::RefPtr< Atk::Object > > &targets, RelationType relationship) - - - Glib::RefPtr< Atk::Relation > - wrap - classAtk_1_1Relation.html - a48d5c60d3a30600bdf456761fc34ef1f - (AtkRelation *object, bool take_copy=false) - - - - Atk::RelationSet - classAtk_1_1RelationSet.html - Glib::Object - - - RelationSet - classAtk_1_1RelationSet.html - ad35fe0df2eadc58188b359c3cfae7466 - (RelationSet &&src) noexcept - - - RelationSet & - operator= - classAtk_1_1RelationSet.html - ac69912d88d70d8bb0071d687ee133c7a - (RelationSet &&src) noexcept - - - virtual - ~RelationSet - classAtk_1_1RelationSet.html - a7274a083d3589a02df5d02cee04bf5e2 - () noexcept - - - AtkRelationSet * - gobj - classAtk_1_1RelationSet.html - a0458eadd98421354d95aa6b5082ff860 - () - - - const AtkRelationSet * - gobj - classAtk_1_1RelationSet.html - a2272065cbea31e7ba19c9053be0b123c - () const - - - AtkRelationSet * - gobj_copy - classAtk_1_1RelationSet.html - a4c7b79d440b461e6e425bf829a25f5c5 - () - - - bool - set_contains - classAtk_1_1RelationSet.html - a5d8cb7b1214d468fd53ff44317947662 - (RelationType relationship) - - - void - set_remove - classAtk_1_1RelationSet.html - a27c554ac47fd8e328c85521d5ef3d91b - (const Glib::RefPtr< Relation > &relation) - - - void - set_add - classAtk_1_1RelationSet.html - a6a80557979af5ef7babed4217b6b994d - (const Glib::RefPtr< Relation > &relation) - - - int - get_n_relations - classAtk_1_1RelationSet.html - aae9807b3bc8a2fccf98a9bac28071121 - () const - - - Glib::RefPtr< Relation > - get_relation - classAtk_1_1RelationSet.html - a538bd38d9d4e663cdfddbdaeca539a1d - (gint i) - - - Glib::RefPtr< Relation > - get_relation - classAtk_1_1RelationSet.html - a65328bc128f6fbd2105bfa7633db55a5 - (RelationType relationship) - - - void - add_relation_by_type - classAtk_1_1RelationSet.html - a437be8c938f2229ea22f89b75e12e725 - (RelationType relationship, const Glib::RefPtr< Atk::Object > &target) - - - static GType - get_type - classAtk_1_1RelationSet.html - ae9a9167c08a3b3d942ed993cf2cfc4f2 - () - - - static Glib::RefPtr< RelationSet > - create - classAtk_1_1RelationSet.html - aced8272a8083a745b6f6eedfa47a154b - () - - - - RelationSet - classAtk_1_1RelationSet.html - a7d7f55467656bbe4681eb2c13b124b8b - () - - - Glib::RefPtr< Atk::RelationSet > - wrap - classAtk_1_1RelationSet.html - a5f5c94267804b02ea43df30cf278716a - (AtkRelationSet *object, bool take_copy=false) - - - - Atk::Selection - classAtk_1_1Selection.html - Glib::Interface - - - Selection - classAtk_1_1Selection.html - a002877071d2d2fefabe92e5cbd75777a - (Selection &&src) noexcept - - - Selection & - operator= - classAtk_1_1Selection.html - a4609ea43bcdb156838b8ad0f424e0ae5 - (Selection &&src) noexcept - - - virtual - ~Selection - classAtk_1_1Selection.html - ab0e8fe441eb39f4e34003aa26fd564d9 - () noexcept - - - AtkSelection * - gobj - classAtk_1_1Selection.html - ab7f5468ebda2c09cb24170b6a07250b1 - () - - - const AtkSelection * - gobj - classAtk_1_1Selection.html - a4ea824fa552f7f63314cf938e762d229 - () const - - - bool - add_selection - classAtk_1_1Selection.html - ad7049b1172c9dd0b9849bd2d12a5b134 - (int i) - - - bool - clear_selection - classAtk_1_1Selection.html - afbcb542e8def62329c1e9cb52d5d24a4 - () - - - Glib::RefPtr< Atk::Object > - get_selection - classAtk_1_1Selection.html - ad74b10568731d7f6f503397897702484 - (int i) - - - int - get_selection_count - classAtk_1_1Selection.html - a034483b48f55ac37c3eac3f0d3a0a6d2 - () const - - - bool - is_child_selected - classAtk_1_1Selection.html - a08b260cfe65168478cd8c7b333d2e65a - (int i) const - - - bool - remove_selection - classAtk_1_1Selection.html - a01feedb0395d111ad41f77a14e94988b - (int i) - - - bool - select_all_selection - classAtk_1_1Selection.html - a92e1b742054e0476c6596617d2f8de20 - () - - - Glib::SignalProxy0< void > - signal_selection_changed - classAtk_1_1Selection.html - a77cfe7a9e587c75b907e6fd5ae87b67b - () - - - static void - add_interface - classAtk_1_1Selection.html - a93a878d016d2f576db3c07390d72e558 - (GType gtype_implementer) - - - static GType - get_type - classAtk_1_1Selection.html - a490feb16313697327207e6e777041e69 - () - - - - Selection - classAtk_1_1Selection.html - a085fdb9ae8e3431cbaff2f6f0a32d5d5 - () - - - virtual bool - add_selection_vfunc - classAtk_1_1Selection.html - adfecf829b51fe9a026185c31a408af32 - (int i) - - - virtual bool - clear_selection_vfunc - classAtk_1_1Selection.html - a1f4114016410eceb7e6dfe4108969ad6 - () - - - virtual Glib::RefPtr< Atk::Object > - get_selection_vfunc - classAtk_1_1Selection.html - a917e162fd7d595c0219d7cb8ea9c0d41 - (int i) - - - virtual int - get_selection_count_vfunc - classAtk_1_1Selection.html - ac17e8c71d0bcb0efdd2b4ab47f6a3cd8 - () const - - - virtual bool - is_child_selected_vfunc - classAtk_1_1Selection.html - a14bbd1cc2c2149ee8f026e63c4886240 - (int i) const - - - virtual bool - remove_selection_vfunc - classAtk_1_1Selection.html - a96e54b0008b8c814a429cebe4a058ad8 - (int i) - - - virtual bool - select_all_selection_vfunc - classAtk_1_1Selection.html - abd539e193806de2c2071fa14be2dbad2 - () - - - virtual void - on_selection_changed - classAtk_1_1Selection.html - abc335734ac36cf271049aafa749369b3 - () - - - Glib::RefPtr< Atk::Selection > - wrap - classAtk_1_1Selection.html - a3c2d7634f421fa3c5747fa0acea5336d - (AtkSelection *object, bool take_copy=false) - - - - Atk::StateSet - classAtk_1_1StateSet.html - Glib::Object - - - StateSet - classAtk_1_1StateSet.html - a2029339343d9d6986af7d35ce57add5d - (StateSet &&src) noexcept - - - StateSet & - operator= - classAtk_1_1StateSet.html - af6c397b288ea925dc5a9830be51a9e05 - (StateSet &&src) noexcept - - - virtual - ~StateSet - classAtk_1_1StateSet.html - a582ed2cacd4968297ed8db8bdee67c88 - () noexcept - - - AtkStateSet * - gobj - classAtk_1_1StateSet.html - adbd0e5dba45f3eb59141da59cf7ce8ed - () - - - const AtkStateSet * - gobj - classAtk_1_1StateSet.html - af095ba67a81cc186e6b9f512276f8017 - () const - - - AtkStateSet * - gobj_copy - classAtk_1_1StateSet.html - a13da93101f80ad6d3a297fe9dfebb695 - () - - - bool - is_empty - classAtk_1_1StateSet.html - ad60014ebc037244153ce812843ee4dd9 - () const - - - bool - add_state - classAtk_1_1StateSet.html - aede4c4b8495f9772d35af9da9e77395d - (Atk::StateType type) - - - void - add_states - classAtk_1_1StateSet.html - a88e473c6fd50a2cc71cf6e2222b9eff0 - (const Glib::ArrayHandle< Atk::StateType > &types) - - - void - clear_states - classAtk_1_1StateSet.html - a7534af9c87a8e5af0c4033fafcb05f63 - () - - - bool - contains_state - classAtk_1_1StateSet.html - ab49dcdfd6f09d04e5dd11fe66be83d27 - (Atk::StateType type) - - - bool - contains_states - classAtk_1_1StateSet.html - a206a534c4afcc82d1679ce61924d80f5 - (const Glib::ArrayHandle< Atk::StateType > &types) const - - - bool - remove_state - classAtk_1_1StateSet.html - a9f01863fb1490e645e58f1013496d7b9 - (Atk::StateType type) - - - Glib::RefPtr< StateSet > - and_sets - classAtk_1_1StateSet.html - a770c542a9abc8e97e28e07772d2bf442 - (const Glib::RefPtr< StateSet > &compare_set) - - - Glib::RefPtr< StateSet > - or_sets - classAtk_1_1StateSet.html - a8561d7c446c4d1a7d27be011c2d966e7 - (const Glib::RefPtr< StateSet > &compare_set) - - - Glib::RefPtr< StateSet > - xor_sets - classAtk_1_1StateSet.html - a09d5c551ff86ff3f6b20de3bd746e87c - (const Glib::RefPtr< StateSet > &compare_set) - - - static GType - get_type - classAtk_1_1StateSet.html - af0a832b033fd0171a5e3d24479b8a0c0 - () - - - static Glib::RefPtr< StateSet > - create - classAtk_1_1StateSet.html - abaebcea6f7a81790e9c76ea9ed0ac20f - () - - - - StateSet - classAtk_1_1StateSet.html - a677f991a217c9e4031b0ff4ad78a219b - () - - - Glib::RefPtr< Atk::StateSet > - wrap - classAtk_1_1StateSet.html - ab23628405857278092f4fc24ddca4fe9 - (AtkStateSet *object, bool take_copy=false) - - - - Atk::StreamableContent - classAtk_1_1StreamableContent.html - Glib::Interface - - - StreamableContent - classAtk_1_1StreamableContent.html - a3eb99b5389ed33f219e5c57e6e578bc1 - (StreamableContent &&src) noexcept - - - StreamableContent & - operator= - classAtk_1_1StreamableContent.html - acfebb3a71ec6fb510af13018b70f3ece - (StreamableContent &&src) noexcept - - - virtual - ~StreamableContent - classAtk_1_1StreamableContent.html - a490bd0d36592debbba42a0d3e747b3b8 - () noexcept - - - AtkStreamableContent * - gobj - classAtk_1_1StreamableContent.html - a7e69107bc513a7f3288658d289789eca - () - - - const AtkStreamableContent * - gobj - classAtk_1_1StreamableContent.html - a87b142d8ca1459f685558a9b191ac3be - () const - - - int - get_n_mime_types - classAtk_1_1StreamableContent.html - a0cf791acf27c270ca1b991094c0d1335 - () const - - - Glib::ustring - get_mime_type - classAtk_1_1StreamableContent.html - acb78af36cb7bfd33e767c28da201f267 - (int i) const - - - Glib::RefPtr< Glib::IOChannel > - get_stream - classAtk_1_1StreamableContent.html - a1f601a66e5ab239bb01461ba761af26a - (const Glib::ustring &mime_type) - - - static void - add_interface - classAtk_1_1StreamableContent.html - af04faf4e36324a91e17f62f9a544d656 - (GType gtype_implementer) - - - static GType - get_type - classAtk_1_1StreamableContent.html - a8af479fb148f7a199de3b946cdda9201 - () - - - - StreamableContent - classAtk_1_1StreamableContent.html - aea83c07375e552eca86ac18e0ff08c79 - () - - - virtual int - get_n_mime_types_vfunc - classAtk_1_1StreamableContent.html - ae6b4d6c08e25477125376a3d0511dd1b - () const - - - virtual const gchar * - get_mime_type_vfunc - classAtk_1_1StreamableContent.html - a94e3b6c2f81f67dd2160955090a8d314 - (int i) const - - - virtual GIOChannel * - get_stream_vfunc - classAtk_1_1StreamableContent.html - af3226ec76cb197ad4df38641384a48e0 - (const Glib::ustring &mime_type) - - - Glib::RefPtr< Atk::StreamableContent > - wrap - classAtk_1_1StreamableContent.html - a5e67601b46782d97f4ebf5ed8da1a065 - (AtkStreamableContent *object, bool take_copy=false) - - - - Atk::Table - classAtk_1_1Table.html - Glib::Interface - - - Table - classAtk_1_1Table.html - a1f07d59e2162e3f9e74d577241ed979b - (Table &&src) noexcept - - - Table & - operator= - classAtk_1_1Table.html - a97204cc70214fc31ad57e1cfe2d67304 - (Table &&src) noexcept - - - virtual - ~Table - classAtk_1_1Table.html - a25a33cbfb7f0b0704963b6f5f6e1ca1e - () noexcept - - - AtkTable * - gobj - classAtk_1_1Table.html - af5ffeb6a83f6ea777efccf9d64b82cdb - () - - - const AtkTable * - gobj - classAtk_1_1Table.html - a848d066a1485bcf869665b42b481b338 - () const - - - Glib::RefPtr< Atk::Object > - get_at - classAtk_1_1Table.html - a4b50a5f631399e3822d5ee8390ba95c3 - (int row, int column) - - - Glib::RefPtr< const Atk::Object > - get_at - classAtk_1_1Table.html - a8ee8463e701593155d108a171614e1e7 - (int row, int column) const - - - int - get_index_at - classAtk_1_1Table.html - a642c4291054ec74608856d614ff74888 - (int row, int column) const - - - int - get_column_at_index - classAtk_1_1Table.html - ae3ddedef2be5b9d63fc0f1eac96d5179 - (int index) const - - - int - get_row_at_index - classAtk_1_1Table.html - afac40179aeb4b0a308953bdb9b9ca399 - (int index) const - - - int - get_n_columns - classAtk_1_1Table.html - a14e1295467375a79c4de8e448a01f85d - () const - - - int - get_n_rows - classAtk_1_1Table.html - a4f4430eee45e81b16db42333327de332 - () const - - - int - get_column_extent_at - classAtk_1_1Table.html - ae71b27e7abdb0c186a9f49296137be0a - (int row, int column) const - - - int - get_row_extent_at - classAtk_1_1Table.html - abe872880d9ee01e481e4e4a11a6f5bae - (int row, int column) const - - - Glib::RefPtr< Atk::Object > - get_caption - classAtk_1_1Table.html - a211492e0cd0276ce7305bd17b20b581a - () - - - Glib::RefPtr< const Atk::Object > - get_caption - classAtk_1_1Table.html - accc1795b1859b06b6f660c6433669032 - () const - - - Glib::ustring - get_column_description - classAtk_1_1Table.html - a5b2a98c6d9bc77244546d7fb3ec88165 - (int column) const - - - Glib::RefPtr< Atk::Object > - get_column_header - classAtk_1_1Table.html - a9ba37fbe0e6261a347c450f53c127a94 - (int column) - - - Glib::RefPtr< const Atk::Object > - get_column_header - classAtk_1_1Table.html - a9017834abde66f038e582ce863cb5ef1 - (int column) const - - - Glib::ustring - get_row_description - classAtk_1_1Table.html - afa9f1afb789d11171728f847432728de - (int row) const - - - Glib::RefPtr< Atk::Object > - get_row_header - classAtk_1_1Table.html - a0bc6a4d62279997e1333fd7385ffd326 - (int row) - - - Glib::RefPtr< const Atk::Object > - get_row_header - classAtk_1_1Table.html - a7638f3a1e51161ec6f8d1e5a0e9a8fa7 - (int row) const - - - Glib::RefPtr< Atk::Object > - get_summary - classAtk_1_1Table.html - a3f716d6991eb20db4fa910a79501a6ca - () - - - Glib::RefPtr< const Atk::Object > - get_summary - classAtk_1_1Table.html - a54f5cec8a7dc3c85fa2a470ef6d2d2f5 - () const - - - void - set_caption - classAtk_1_1Table.html - ad228ba0aed17656a4a357211aaddc5f3 - (const Glib::RefPtr< Atk::Object > &caption) - - - void - set_column_description - classAtk_1_1Table.html - a397d3e2c7b1c9a584424be3439fba24f - (int column, const Glib::ustring &description) - - - void - set_column_header - classAtk_1_1Table.html - a4e8716d262dd3c88c90ca311266f9196 - (int column, const Glib::RefPtr< Atk::Object > &header) - - - void - set_row_description - classAtk_1_1Table.html - a359eaf67abf327cc9acfff33dadb8a6e - (int row, const Glib::ustring &description) - - - void - set_row_header - classAtk_1_1Table.html - a1a53f96fde5a601678c691525216501c - (int row, const Glib::RefPtr< Atk::Object > &header) - - - void - set_summary - classAtk_1_1Table.html - a73bbcf6f372e742cbb28bfa16592f300 - (const Glib::RefPtr< Atk::Object > &accessible) - - - Glib::ArrayHandle< int > - get_selected_columns - classAtk_1_1Table.html - aa3c2779dfd44ee2636d844cad704010b - () const - - - Glib::ArrayHandle< int > - get_selected_rows - classAtk_1_1Table.html - a73f1c6d4e7266bb0ba58b4f61afae7a2 - () const - - - bool - is_column_selected - classAtk_1_1Table.html - aba58ad21e97f5083670282a09b369b9f - (int column) const - - - bool - is_row_selected - classAtk_1_1Table.html - a4246b47ae50a6c612112a09361f434e3 - (int row) const - - - bool - is_selected - classAtk_1_1Table.html - a7e6269a5274d11017dd7c447f3cf2ab7 - (int row, int column) const - - - bool - add_row_selection - classAtk_1_1Table.html - aa2045fb8c50eede912a9bbf8912d9dfc - (int row) - - - bool - remove_row_selection - classAtk_1_1Table.html - aef751c6cb1cbaf5d199d9b80dcfe03f1 - (int row) - - - bool - add_column_selection - classAtk_1_1Table.html - a165569ada31b77d5a633cf31121ebf35 - (int column) - - - bool - remove_column_selection - classAtk_1_1Table.html - a1a03bad72a13fe55d98add3be68108c8 - (int column) - - - Glib::SignalProxy2< void, int, int > - signal_row_inserted - classAtk_1_1Table.html - ab9fcfc3052e5e4f42adedd23c69049f3 - () - - - Glib::SignalProxy2< void, int, int > - signal_column_inserted - classAtk_1_1Table.html - a7414d9083c8b81032599ca896d780c0c - () - - - Glib::SignalProxy2< void, int, int > - signal_row_deleted - classAtk_1_1Table.html - a96ff5030121af2595e046f41bd78660b - () - - - Glib::SignalProxy2< void, int, int > - signal_column_deleted - classAtk_1_1Table.html - a531efe6ccd54878b05d918d4ca817d6d - () - - - Glib::SignalProxy0< void > - signal_row_reordered - classAtk_1_1Table.html - adc22d53aa6ec06ef9b11227422819d94 - () - - - Glib::SignalProxy0< void > - signal_column_reordered - classAtk_1_1Table.html - a99acc17c0896b54f55ecdc667f29a72e - () - - - Glib::SignalProxy0< void > - signal_model_changed - classAtk_1_1Table.html - a05af8426e92b8496a8a6a9a95bda9e76 - () - - - static void - add_interface - classAtk_1_1Table.html - a5dbef0d1782da1102fb2703038de84b4 - (GType gtype_implementer) - - - static GType - get_type - classAtk_1_1Table.html - accd1b4580b4414b05cdb08a369399a9a - () - - - - Table - classAtk_1_1Table.html - ae3f99b729974c72921796c2972f2cca2 - () - - - virtual Glib::RefPtr< Atk::Object > - get_at_vfunc - classAtk_1_1Table.html - a3a47fd43520385bc7c39b93cee374f18 - (int row, int column) - - - virtual int - get_index_at_vfunc - classAtk_1_1Table.html - a1f31195e65263f08ba2b45e408d1d36c - (int row, int column) const - - - virtual int - get_column_at_index_vfunc - classAtk_1_1Table.html - a8bde17db4b4556be2f1a6d377678025a - (int index) const - - - virtual int - get_row_at_index_vfunc - classAtk_1_1Table.html - a3d98b93b07d9720d4df20359033f9c04 - (int index) const - - - virtual int - get_n_columns_vfunc - classAtk_1_1Table.html - a7eb07a5a3bd58f8bbbb6b8994a1d41b0 - () const - - - virtual int - get_n_rows_vfunc - classAtk_1_1Table.html - a21dc8564989619f7d8220b6321a854b5 - () const - - - virtual int - get_column_extent_at_vfunc - classAtk_1_1Table.html - a46f4ba4b6acc53cef0de3942e720a609 - (int row, int column) const - - - virtual int - get_row_extent_at_vfunc - classAtk_1_1Table.html - a556b647d788c9eeb3181842b44f801b2 - (int row, int column) const - - - virtual Glib::RefPtr< Atk::Object > - get_caption_vfunc - classAtk_1_1Table.html - ac0058463e4b1ee4fdc2cabd838ef1bf5 - () - - - virtual const char * - get_column_description_vfunc - classAtk_1_1Table.html - aee97bc3ef086f936750b01d1346ec9b1 - (int column) const - - - virtual Glib::RefPtr< Atk::Object > - get_column_header_vfunc - classAtk_1_1Table.html - a235aac0239e9619197d5b1e3fc162bcf - (int column) - - - virtual const char * - get_row_description_vfunc - classAtk_1_1Table.html - ad9aa33e6e59eb9b01537061a67cb23b6 - (int row) const - - - virtual Glib::RefPtr< Atk::Object > - get_row_header_vfunc - classAtk_1_1Table.html - a3c185a79b24cd0cbfbe0d934b9e31956 - (int row) - - - virtual Glib::RefPtr< Atk::Object > - get_summary_vfunc - classAtk_1_1Table.html - a00741db880ac2c6b9a6219cd0bbbbd1a - () - - - virtual void - set_caption_vfunc - classAtk_1_1Table.html - aa3a44286d579753de653972aa39bc3e5 - (const Glib::RefPtr< Atk::Object > &caption) - - - virtual void - set_column_description_vfunc - classAtk_1_1Table.html - a1b523e525875bd715d9145d2339e0a8b - (int column, const char *description) - - - virtual void - set_column_header_vfunc - classAtk_1_1Table.html - a3bd916ee09e6eaa309f8aedabd1c0325 - (int column, const Glib::RefPtr< Atk::Object > &header) - - - virtual void - set_row_description_vfunc - classAtk_1_1Table.html - a941970119e89be3d92bcebb4916a42c6 - (int row, const char *description) - - - virtual void - set_row_header_vfunc - classAtk_1_1Table.html - afa145591edb110af261349c2b27d6a77 - (int row, const Glib::RefPtr< Atk::Object > &header) - - - virtual void - set_summary_vfunc - classAtk_1_1Table.html - a3add1b7c521d33a1a186d75d691125d9 - (const Glib::RefPtr< Atk::Object > &accessible) - - - virtual bool - is_column_selected_vfunc - classAtk_1_1Table.html - aaaf80f8ae386b23a9dccfe5a35959e2a - (int column) const - - - virtual bool - is_row_selected_vfunc - classAtk_1_1Table.html - ad9e64dc45557a01085240ea74083192b - (int row) const - - - virtual bool - is_selected_vfunc - classAtk_1_1Table.html - a00daf048df6d1f9ea254a4ee19952f30 - (int row, int column) const - - - virtual bool - add_row_selection_vfunc - classAtk_1_1Table.html - aee629137df2ea8edd8c34734aca97a15 - (int row) - - - virtual bool - remove_row_selection_vfunc - classAtk_1_1Table.html - a59d9b04f23f6e28d18696e1380acb425 - (int row) - - - virtual bool - add_column_selection_vfunc - classAtk_1_1Table.html - a5da5a90e88f8b6ff060797abed26d2c9 - (int column) - - - virtual bool - remove_column_selection_vfunc - classAtk_1_1Table.html - a51ee71013d878a061b7320a44f967bcf - (int column) - - - virtual int - get_selected_columns_vfunc - classAtk_1_1Table.html - aaf11986c037588f81a1f7e144e7366cd - (int **selected) const - - - virtual int - get_selected_rows_vfunc - classAtk_1_1Table.html - a400cd66c2d53eae11947de5e96cedd7a - (int **selected) const - - - virtual void - on_row_inserted - classAtk_1_1Table.html - a52af90f686a8f29ac6397b9759d5d3f6 - (int row, int num_inserted) - - - virtual void - on_column_inserted - classAtk_1_1Table.html - a7f3f234c028e4314ab8dd1810a7e1cbd - (int column, int num_inserted) - - - virtual void - on_row_deleted - classAtk_1_1Table.html - a62098f5f91740e2123139418209b7df0 - (int row, int num_deleted) - - - virtual void - on_column_deleted - classAtk_1_1Table.html - a6552422ab268a7923f5841ee979c3cdb - (int column, int num_deleted) - - - virtual void - on_row_reordered - classAtk_1_1Table.html - a149a2225e941632fe6d2c71a083aa5da - () - - - virtual void - on_column_reordered - classAtk_1_1Table.html - a316c0007b74cd843494fe41d9643f6a6 - () - - - virtual void - on_model_changed - classAtk_1_1Table.html - a4a70f9cc48913fbce380d0e77ad1b19d - () - - - Glib::RefPtr< Atk::Table > - wrap - classAtk_1_1Table.html - a85251fd251158cdd97aa87b8c137f62d - (AtkTable *object, bool take_copy=false) - - - - Atk::Text - classAtk_1_1Text.html - Glib::Interface - - AtkTextRectangle - Rectangle - classAtk_1_1Text.html - aef8ed58f4c770e63c2381b543339dd15 - - - - - Text - classAtk_1_1Text.html - a028e5126d3aa1e368004179981efcd3d - (Text &&src) noexcept - - - Text & - operator= - classAtk_1_1Text.html - a2c0fca7fe37ad8e7e923568d04b81df7 - (Text &&src) noexcept - - - virtual - ~Text - classAtk_1_1Text.html - a2c6833862f31fa92b978743bcf0759d9 - () noexcept - - - AtkText * - gobj - classAtk_1_1Text.html - a89fa4c5f3fdc6b59a811da1609571bdf - () - - - const AtkText * - gobj - classAtk_1_1Text.html - a2f3329b4e844483278abd627a141142d - () const - - - Glib::ustring - get_text - classAtk_1_1Text.html - a8f749c1f6dc15ffef4e27766ea66655f - (int start_offset, int end_offset) const - - - gunichar - get_character_at_offset - classAtk_1_1Text.html - a061b8607e273fb85e84162a0a0e5b47b - (int offset) const - - - Glib::ustring - get_text_after_offset - classAtk_1_1Text.html - a3850bea8df6900731de05add95c3dc36 - (int offset, TextBoundary boundary_type, int &start_offset, int &end_offset) const - - - Glib::ustring - get_text_at_offset - classAtk_1_1Text.html - af4a06a65abef1a65af82cc11e54adf3f - (int offset, TextBoundary boundary_type, int &start_offset, int &end_offset) const - - - Glib::ustring - get_text_before_offset - classAtk_1_1Text.html - a8472685388551749d87a43ce62982644 - (int offset, TextBoundary boundary_type, int &start_offset, int &end_offset) const - - - Glib::ustring - get_string_at_offset - classAtk_1_1Text.html - adf22ecc82e21072ef153559362566145 - (int offset, TextGranularity granularity, int &start_offset, int &end_offset) - - - int - get_caret_offset - classAtk_1_1Text.html - a10e19ea8a7bb6d5576ef69eb64db8e94 - () const - - - void - get_character_extents - classAtk_1_1Text.html - abfce57bc598c220bc3de0ea9a26f11a4 - (int offset, int &x, int &y, int &width, int &height, CoordType coords) const - - - AttributeSet - get_run_attributes - classAtk_1_1Text.html - a134728ff97897f45014d383502d9cd0e - (int offset, int &start_offset, int &end_offset) const - - - AttributeSet - get_default_attributes - classAtk_1_1Text.html - a48b27d8ac35f7e21a9910fe84c84cdb0 - () const - - - int - get_character_count - classAtk_1_1Text.html - af0097531b66f229867b7b8b2b49d4ddb - () const - - - int - get_offset_at_point - classAtk_1_1Text.html - a933eb7fc0a5a77d1b4393d711bc1719f - (int x, int y, CoordType coords) const - - - int - get_n_selections - classAtk_1_1Text.html - a7027005265ad0212f25c50b53ff775e1 - () const - - - Glib::ustring - get_selection - classAtk_1_1Text.html - aeee0be1f96d9368c68934e66a23921da - (int selection_num, int &start_offset, int &end_offset) const - - - bool - add_selection - classAtk_1_1Text.html - af6cb6584fa1bd0a3541a3d566a356d03 - (int start_offset, int end_offset) - - - bool - remove_selection - classAtk_1_1Text.html - ac0d02f671ae48bd11f6a1c451c399ef9 - (int selection_num) - - - bool - set_selection - classAtk_1_1Text.html - a7e24f7bc27300fa7312fb8742192ac65 - (int selection_num, int start_offset, int end_offset) - - - bool - set_caret_offset - classAtk_1_1Text.html - acbd9dd3ed20867c7665f97e4f9d521d4 - (int offset) - - - void - get_range_extents - classAtk_1_1Text.html - aa58bbce3c64f2c60a92c70703d310495 - (int start_offset, int end_offset, CoordType coord_type, Rectangle &rect) - - - AtkTextRange ** - get_bounded_ranges - classAtk_1_1Text.html - a0d547bd9d5c17d52d16addd236e7b8a2 - (const Rectangle &rect, CoordType coord_type, TextClipType x_clip_type, TextClipType y_clip_type) - - - Glib::SignalProxy2< void, int, int > - signal_text_changed - classAtk_1_1Text.html - a6bf23ccafb0f5fdc2eb0f0e0a1853f16 - () - - - Glib::SignalProxy1< void, int > - signal_text_caret_moved - classAtk_1_1Text.html - a880162a200f019a13c82ec2621d41674 - () - - - Glib::SignalProxy0< void > - signal_text_selection_changed - classAtk_1_1Text.html - a37f85345fddbfd3c3ce311667bdec059 - () - - - Glib::SignalProxy0< void > - signal_text_attributes_changed - classAtk_1_1Text.html - a620cbefacaa02153ab697e2b846e8bae - () - - - static void - add_interface - classAtk_1_1Text.html - a60ea0ab1d7e02db112e78daead23abde - (GType gtype_implementer) - - - static GType - get_type - classAtk_1_1Text.html - a6175dad0ec56e49fb1b8f43f97d6a4af - () - - - - Text - classAtk_1_1Text.html - a4abd0b8b277ee531e457959b763e4688 - () - - - virtual Glib::ustring - get_text_vfunc - classAtk_1_1Text.html - a38446df16438186f00d2e6c185aec843 - (int start_offset, int end_offset) const - - - virtual gunichar - get_character_at_offset_vfunc - classAtk_1_1Text.html - a7dc54968eec4be1da076392bf0739a58 - (int offset) const - - - virtual Glib::ustring - get_text_after_offset_vfunc - classAtk_1_1Text.html - ae75ece1bc7052a9ce77ff8e39490e631 - (int offset, TextBoundary boundary_type, int &start_offset, int &end_offset) const - - - virtual Glib::ustring - get_text_at_offset_vfunc - classAtk_1_1Text.html - af28b3d2490a25f7bc9ac6458210b379f - (int offset, TextBoundary boundary_type, int &start_offset, int &end_offset) const - - - virtual Glib::ustring - get_text_before_offset_vfunc - classAtk_1_1Text.html - a12f7c5a3ebc090a9787ef48ff5b5148d - (int offset, TextBoundary boundary_type, int &start_offset, int &end_offset) const - - - virtual int - get_caret_offset_vfunc - classAtk_1_1Text.html - a200e647b0bffaf009aa92349202e2613 - () const - - - virtual void - get_character_extents_vfunc - classAtk_1_1Text.html - a625281b9f1a45288dfd05e69d6f21197 - (int offset, int &x, int &y, int &width, int &height, CoordType coords) const - - - virtual AtkAttributeSet * - get_run_attributes_vfunc - classAtk_1_1Text.html - aeedf1b3c5837028d4888143fc07b02d4 - (int offset, int &start_offset, int &end_offset) const - - - virtual AtkAttributeSet * - get_default_attributes_vfunc - classAtk_1_1Text.html - aaee88d5014476c05c4ca911d9878fdaf - () const - - - virtual int - get_character_count_vfunc - classAtk_1_1Text.html - af39e032a8cf76bbc05e88bbfaae4a874 - () const - - - virtual int - get_offset_at_point_vfunc - classAtk_1_1Text.html - a99d21f6dceb050aee0bf4786eac298a2 - (int x, int y, CoordType coords) const - - - virtual int - get_n_selections_vfunc - classAtk_1_1Text.html - a1c62fb75eb70aad2ef535c04fedcde5b - () const - - - virtual Glib::ustring - get_selection_vfunc - classAtk_1_1Text.html - a170ea04bc324ae8c249dc3e43f7fe28c - (int selection_num, int &start_offset, int &end_offset) const - - - virtual bool - add_selection_vfunc - classAtk_1_1Text.html - adcf6c2321bd73c525abccd50f4a4b24f - (int start_offset, int end_offset) - - - virtual bool - remove_selection_vfunc - classAtk_1_1Text.html - a85ee3d0a51162dbf6060f28f0c3a8fd9 - (int selection_num) - - - virtual bool - set_selection_vfunc - classAtk_1_1Text.html - abf5a391ed37a8f8f061ab0ae5c54f3ac - (int selection_num, int start_offset, int end_offset) - - - virtual bool - set_caret_offset_vfunc - classAtk_1_1Text.html - a44fd5f06d5bebd94e08ecfd0f9a316dc - (int offset) - - - virtual void - on_text_changed - classAtk_1_1Text.html - acec053d08f490ce3c00f1279ed133ce0 - (int position, int length) - - - virtual void - on_text_caret_moved - classAtk_1_1Text.html - ae5f768a698cf3ba6aadfba48a9dc9b2d - (int location) - - - virtual void - on_text_selection_changed - classAtk_1_1Text.html - aaf45255b13e80d8552ed3cceee245947 - () - - - virtual void - on_text_attributes_changed - classAtk_1_1Text.html - a28e94c8c8ff33a3a1202fbd966af96b4 - () - - - Glib::RefPtr< Atk::Text > - wrap - classAtk_1_1Text.html - a112fb37843d9647af0ca48654c59b3c4 - (AtkText *object, bool take_copy=false) - - - - Atk::TextAttribute - classAtk_1_1TextAttribute.html - - - TextAttribute - classAtk_1_1TextAttribute.html - ac64aa4b57241faccd821ecb7585c9541 - () - - - - TextAttribute - classAtk_1_1TextAttribute.html - a0896075a32b7a606cadcee9fa5a31002 - (BuiltinTextAttribute attribute) - - - - TextAttribute - classAtk_1_1TextAttribute.html - a1f9bdb7bc76f3acc5ebc62979c5ece1c - (int attribute) - - - - operator int - classAtk_1_1TextAttribute.html - a2b2bd880d92d39449062e44945aa2c7a - () const - - - static TextAttribute - for_name - classAtk_1_1TextAttribute.html - a7287f7e177e87a5558f3a220fffe720a - (const Glib::ustring &name) - - - static Glib::ustring - get_name - classAtk_1_1TextAttribute.html - a057f88c2a45781ab896551fb36cd80b1 - (TextAttribute attribute) - - - static Glib::ustring - get_value - classAtk_1_1TextAttribute.html - a6bc77e0d21edd5724e8acae5515228c8 - (TextAttribute attribute, int index) - - - - Atk::Value - classAtk_1_1Value.html - Glib::Interface - - - Value - classAtk_1_1Value.html - af148f6dd41f39f0539179fabd2d25912 - (Value &&src) noexcept - - - Value & - operator= - classAtk_1_1Value.html - a9954c7c77622899961e9201ad5422ecd - (Value &&src) noexcept - - - virtual - ~Value - classAtk_1_1Value.html - a77677dcb15c93a3e94edca91555563e0 - () noexcept - - - AtkValue * - gobj - classAtk_1_1Value.html - a1d492104dfbc24ca3586889e1c9dd122 - () - - - const AtkValue * - gobj - classAtk_1_1Value.html - a1e9774208afa33f5536d0af2f1542724 - () const - - - void - get_current_value - classAtk_1_1Value.html - a413b3aa759306e5453c52c3cc633bbdd - (Glib::ValueBase &value) const - - - void - get_maximum_value - classAtk_1_1Value.html - a05900879b78b99af2f608f8aa6225043 - (Glib::ValueBase &value) const - - - void - get_minimum_value - classAtk_1_1Value.html - aa846b94c5afd243ad9b6488f3c882b30 - (Glib::ValueBase &value) const - - - bool - set_current_value - classAtk_1_1Value.html - a5f68e4192b070a56f2f5dbdc29d18ef1 - (const Glib::ValueBase &value) - - - void - get_value_and_text - classAtk_1_1Value.html - a57b6e5cd2259cc1b9d0d0f893b54aacf - (double &value, Glib::ustring &text) - - - Range - get_range - classAtk_1_1Value.html - a946df62496c55e3a249d132b26d368d3 - () const - - - double - get_increment - classAtk_1_1Value.html - a98c494ad7efd61f3e018c9b755fbf9ef - () - - - void - set_value - classAtk_1_1Value.html - afe294122ffa7695ef429183e6abf1f39 - (const gdouble new_value) - - - static void - add_interface - classAtk_1_1Value.html - ac8564e11ac77f72d5c57b2db14371453 - (GType gtype_implementer) - - - static GType - get_type - classAtk_1_1Value.html - a758297abebea6e5589e2227973b92d71 - () - - - - Value - classAtk_1_1Value.html - a5e4febae93ac4a52bc5618588f45de1d - () - - - virtual void - get_current_value_vfunc - classAtk_1_1Value.html - a551af308c0c75563f3868d0ad2cd33d9 - (Glib::ValueBase &value) const - - - virtual void - get_maximum_value_vfunc - classAtk_1_1Value.html - a207fc4a161bea34cc85d27e995146b9d - (Glib::ValueBase &value) const - - - virtual void - get_minimum_value_vfunc - classAtk_1_1Value.html - ab58f2f48c88ff92b07fced0f8434bbea - (Glib::ValueBase &value) const - - - virtual bool - set_current_value_vfunc - classAtk_1_1Value.html - a1eb831ae8176d444fa8320bb1852a4cf - (const Glib::ValueBase &value) - - - Glib::RefPtr< Atk::Value > - wrap - classAtk_1_1Value.html - a68a42fa970f6678863e0d5163fc58439 - (AtkValue *object, bool take_copy=false) - - - - hash_load_check_resize_trigger_size_base - classhash__load__check__resize__trigger__size__base.html - - - lu_counter_policy_base - classlu__counter__policy__base.html - - - __cxxabiv1 - a00005.html - - - __gnu_cxx - a01601.html - - - __gnu_cxx::__detail - a01603.html - - - __gnu_cxx::typelist - a01605.html - - - __gnu_debug - a01607.html - - - __gnu_internal - a01608.html - - - __gnu_parallel - a01609.html - - - __gnu_pbds - a01610.html - - - __gnu_pbds::detail - a00213.html - - - __gnu_profile - a01612.html - - - __gnu_sequential - a01613.html - - - abi - a01614.html - - - Atk - namespaceAtk.html - Atk::Action - Atk::Attribute - Atk::AttributeTraits - Atk::Component - Atk::Document - Atk::EditableText - Atk::Hyperlink - Atk::Hypertext - Atk::Image - Atk::Implementor - Atk::NoOpObject - Atk::Object - Atk::ObjectAccessible - Atk::Range - Atk::Relation - Atk::RelationSet - Atk::Selection - Atk::StateSet - Atk::StreamableContent - Atk::Table - Atk::Text - Atk::TextAttribute - Atk::Value - - guint64 - State - namespaceAtk.html - ac8c786b6146e720a10e40c9a6483f153 - - - - Glib::SListHandle< Attribute, AttributeTraits > - AttributeSet - namespaceAtk.html - a8759d34cf55e51e9f1a43d0bf4a6db31 - - - - - CoordType - group__atkmmEnums.html - ga6c71d0aa1d2e5c4917bafa3f12c811c2 - - - - - Layer - group__atkmmEnums.html - ga880a348fd3270c7bca549113c38501a8 - - - - - Role - group__atkmmEnums.html - ga19e4dff08645ca208cdf524836a1be27 - - - - - RelationType - group__atkmmEnums.html - ga83c3f0442ea6f73e32064b0caab555e5 - - - - - StateType - group__atkmmEnums.html - ga2b925d92032639815edcfd9b0f53d15e - - - - - BuiltinTextAttribute - group__atkmmEnums.html - ga570689825e833a547382a99c553e389c - - - - - TextBoundary - group__atkmmEnums.html - gace98a3ea010fe92c359fa4bcd4aaea5b - - - - - TextClipType - group__atkmmEnums.html - ga0b25ada8fc7111dfed7f6550a6874102 - - - - - TextGranularity - group__atkmmEnums.html - ga19fa84ea5f7567a68ebe784b9d3157ac - - - - void - init - namespaceAtk.html - a29ec8cc19a1bc9fcd00565da12583e1e - () - - - - Gio - namespaceGio.html - - - Gio::DBus - namespaceGio_1_1DBus.html - - - Gio::DBus::Address - namespaceGio_1_1DBus_1_1Address.html - - - Gio::DBus::ErrorUtils - namespaceGio_1_1DBus_1_1ErrorUtils.html - - - Glib - namespaceGlib.html - - - Glib::Ascii - namespaceGlib_1_1Ascii.html - - - Glib::Base64 - namespaceGlib_1_1Base64.html - - - Glib::Container_Helpers - namespaceGlib_1_1Container__Helpers.html - - - Glib::Markup - namespaceGlib_1_1Markup.html - - - Glib::Threads - namespaceGlib_1_1Threads.html - - - Glib::Unicode - namespaceGlib_1_1Unicode.html - - - sigc - namespacesigc.html - - - sigc::internal - namespacesigc_1_1internal.html - - - std - a01616.html - - - std::__debug - a01617.html - - - std::__detail - a01618.html - - - std::__exception_ptr - a00529.html - - - std::__parallel - a01620.html - - - std::__profile - a01621.html - - - std::_V2 - a00584.html - - - std::chrono - a01623.html - - - std::chrono::_V2 - a00650.html - - - std::decimal - a01625.html - - - std::placeholders - a01626.html - - - std::regex_constants - a01627.html - - - std::rel_ops - a01628.html - - - std::this_thread - a01629.html - - - std::tr1 - a01630.html - - - std::tr1::__detail - a01631.html - - - std::tr2 - a01632.html - - - std::tr2::__detail - a01633.html - - - adaptors - Adaptors - group__adaptors.html - - - pointer_adaptors - Adaptors for pointers to functions - a01676.html - - - memory_adaptors - Adaptors for pointers to members - a01677.html - - - algorithms - Algorithms - a01657.html - - - allocators - Allocators - a01667.html - - - arithmetic_functors - Arithmetic Classes - a01672.html - - - associative_containers - Associative - a01638.html - - - atomics - Atomics - a01663.html - - - hashtable-detail - Base and Implementation Classes - a01665.html - - - regex-detail - Base and Implementation Classes - a01669.html - - - hash-detail - Base and Policy Classes - a01688.html - - - branch-detail - Base and Policy Classes - a01690.html - - - heap-detail - Base and Policy Classes - a01694.html - - - Base64 - Base64 routines - group__Base64.html - - - random_distributions_bernoulli - Bernoulli Distributions - a01704.html - - - binary_search_algorithms - Binary Search - a01662.html - - - binders - Binder Classes - a01682.html - - - logical_functors - Boolean Operations Classes - a01674.html - - - branch-based - Branch-Based - a01689.html - - - CharsetConv - Character Set Conversion - group__CharsetConv.html - - - comparison_functors - Comparison Classes - a01673.html - - - complex_numbers - Complex Numbers - a01644.html - - - concurrency - Concurrency - a01641.html - - - condition_variables - Condition Variables - a01645.html - - - containers - Containers - a01636.html - - - containers-pbds - Containers - a01686.html - - - DBus - D-Bus API - group__DBus.html - - - ds_tags - Data Structure Type - a01698.html - - - decimal - Decimal Floating-Point Arithmetic - a01685.html - - - diagnostics - Diagnostics - a01640.html - - - exceptions - Exceptions - a01642.html - - - exceptions-pbds - Exceptions - a01692.html - - - extensions - Extensions - a01634.html - - - FileUtils - File Utilities - group__FileUtils.html - - - functors - Function Objects - a01671.html - - - sigcfunctors - Functors - group__sigcfunctors.html - - - futures - Futures - a01646.html - - - glibmmValue - Generic Values - group__glibmmValue.html - - - ContHandles - Generic container converters - group__ContHandles.html - - - PatternMatching - Glob-style Pattern Matching - group__PatternMatching.html - - - hash-based - Hash-Based - a01687.html - - - hashes - Hashes - a01664.html - - - heap_algorithms - Heap - a01678.html - - - heap-based - Heap-Based - a01693.html - - - ContHelpers - Helper classes - group__ContHelpers.html - - - io - I/O - a01647.html - - - Global - I/O operators for bitsets. - a01684.html - - - invalidation_tags - Invalidation Guarantees - a01697.html - - - iterator_tags - Iterator Tags - a01680.html - - - iterators - Iterators - a01679.html - - - list-based - List-Based - a01691.html - - - locales - Locales - a01666.html - - - tr1_math_spec_func - Mathematical Special Functions - a01683.html - - - memory - Memory - a01648.html - - - metaprogramming - Metaprogramming - a01654.html - - - MiscUtils - Miscellaneous Utility Functions - group__MiscUtils.html - - - mutating_algorithms - Mutating - a01658.html - - - mutexes - Mutexes - a01650.html - - - negators - Negators - a01675.html - - - non_mutating_algorithms - Non-Mutating - a01659.html - - - random_distributions_normal - Normal Distributions - a01703.html - - - numeric_arrays - Numeric Arrays - a01656.html - - - numerics - Numerics - a01651.html - - - giommContentType - Platform-specific content typing - group__giommContentType.html - - - pointer_abstractions - Pointer Abstractions - a01649.html - - - random_distributions_poisson - Poisson Distributions - a01705.html - - - pbds - Policy-Based Data Structures - a01695.html - - - NetworkIO - Portable Network I/O Functionality - group__NetworkIO.html - - - random_distributions - Random Number Distributions - a01701.html - - - random - Random Number Generation - a01668.html - - - random_generators - Random Number Generators - a01700.html - - - random_utilities - Random Number Utilities - a01706.html - - - Random - Random Numbers - group__Random.html - - - ratio - Rational Arithmetic - a01652.html - - - regex - Regular Expressions - a01670.html - - - SGIextensions - SGI - a01635.html - - - sequences - Sequences - a01637.html - - - set_algorithms - Set Operation - a01661.html - - - ShellUtils - Shell-related Utilities - group__ShellUtils.html - - - signal - Signals - group__signal.html - - - Markup - Simple XML Subset Parser - group__Markup.html - - - slot - Slots - group__slot.html - - - sorting_algorithms - Sorting - a01660.html - - - Spawn - Spawning Processes - group__Spawn.html - - - Streams - Stream Classes - group__Streams.html - - - StringUtils - String Utility Functions - group__StringUtils.html - - - strings - Strings - a01681.html - - - tags - Tags - a01696.html - - - MainLoop - The Main Event Loop - group__MainLoop.html - - - ThreadPools - Thread Pools - group__ThreadPools.html - - - Threads - Threads - group__Threads.html - - - threads - Threads - a01653.html - - - chrono - Time - a01643.html - - - traits - Traits - a01699.html - - - UriUtils - URI Utilities - group__UriUtils.html - - - Unicode - Unicode Manipulation - group__Unicode.html - - - random_distributions_uniform - Uniform Distributions - a01702.html - - - unordered_associative_containers - Unordered Associative - a01639.html - - - utilities - Utilities - a01655.html - - - Variant - Variant Data Types - group__Variant.html - - - atkmmEnums - atkmm Enums and Flags - group__atkmmEnums.html - - - Role - group__atkmmEnums.html - ga19e4dff08645ca208cdf524836a1be27 - - - - - StateType - group__atkmmEnums.html - ga2b925d92032639815edcfd9b0f53d15e - - - - - CoordType - group__atkmmEnums.html - ga6c71d0aa1d2e5c4917bafa3f12c811c2 - - - - - Layer - group__atkmmEnums.html - ga880a348fd3270c7bca549113c38501a8 - - - - - RelationType - group__atkmmEnums.html - ga83c3f0442ea6f73e32064b0caab555e5 - - - - - BuiltinTextAttribute - group__atkmmEnums.html - ga570689825e833a547382a99c553e389c - - - - - TextBoundary - group__atkmmEnums.html - gace98a3ea010fe92c359fa4bcd4aaea5b - - - - - TextClipType - group__atkmmEnums.html - ga0b25ada8fc7111dfed7f6550a6874102 - - - - - TextGranularity - group__atkmmEnums.html - ga19fa84ea5f7567a68ebe784b9d3157ac - - - - - bind - bind(), bind_return() - group__bind.html - - - compose - compose() - group__compose.html - - - exception_catch - exception_catch() - group__exception__catch.html - - - giommEnums - giomm Enums and Flags - group__giommEnums.html - - - glibmmEnums - glibmm Enums and Flags - group__glibmmEnums.html - - - hide - hide(), hide_return() - group__hide.html - - - mem_fun - mem_fun() - group__mem__fun.html - - - ptr_fun - ptr_fun() - group__ptr__fun.html - - - retype - retype(), retype_return() - group__retype.html - - - track_obj - track_obj() - group__track__obj.html - - - index - atkmm Reference Manual - index - description - features - basics - scope - - diff -Nru atkmm1.6-2.24.2/doc/reference/Doxyfile.in atkmm1.6-2.28.0/doc/reference/Doxyfile.in --- atkmm1.6-2.24.2/doc/reference/Doxyfile.in 2014-12-09 08:04:03.793553865 +0000 +++ atkmm1.6-2.28.0/doc/reference/Doxyfile.in 2018-09-11 11:01:51.898786311 +0000 @@ -1,4 +1,4 @@ -# Doxyfile 1.8.3 +# Doxyfile 1.8.11 # @configure_input@ #--------------------------------------------------------------------------- @@ -11,6 +11,7 @@ PROJECT_LOGO = OUTPUT_DIRECTORY = reference CREATE_SUBDIRS = NO +ALLOW_UNICODE_NAMES = NO OUTPUT_LANGUAGE = English BRIEF_MEMBER_DESC = YES REPEAT_BRIEF = YES @@ -48,11 +49,11 @@ SIP_SUPPORT = NO IDL_PROPERTY_SUPPORT = YES DISTRIBUTE_GROUP_DOC = NO +GROUP_NESTED_COMPOUNDS = NO SUBGROUPING = YES INLINE_GROUPED_CLASSES = NO INLINE_SIMPLE_STRUCTS = NO TYPEDEF_HIDES_STRUCT = NO -SYMBOL_CACHE_SIZE = 0 LOOKUP_CACHE_SIZE = 0 #--------------------------------------------------------------------------- # Build related configuration options @@ -71,7 +72,9 @@ INTERNAL_DOCS = NO CASE_SENSE_NAMES = YES HIDE_SCOPE_NAMES = NO +HIDE_COMPOUND_REFERENCE= NO SHOW_INCLUDE_FILES = YES +SHOW_GROUPED_MEMB_INC = NO FORCE_LOCAL_INCLUDES = NO INLINE_INFO = YES SORT_MEMBER_DOCS = YES @@ -93,17 +96,18 @@ LAYOUT_FILE = CITE_BIB_FILES = #--------------------------------------------------------------------------- -# configuration options related to warning and progress messages +# Configuration options related to warning and progress messages #--------------------------------------------------------------------------- -QUIET = NO +QUIET = YES WARNINGS = YES WARN_IF_UNDOCUMENTED = YES WARN_IF_DOC_ERROR = YES WARN_NO_PARAMDOC = NO +WARN_AS_ERROR = NO WARN_FORMAT = "$file:$line: $text" WARN_LOGFILE = reference/doxygen.log #--------------------------------------------------------------------------- -# configuration options related to the input files +# Configuration options related to the input files #--------------------------------------------------------------------------- INPUT = INPUT_ENCODING = UTF-8 @@ -131,7 +135,7 @@ FILTER_SOURCE_PATTERNS = USE_MDFILE_AS_MAINPAGE = #--------------------------------------------------------------------------- -# configuration options related to source browsing +# Configuration options related to source browsing #--------------------------------------------------------------------------- SOURCE_BROWSER = NO INLINE_SOURCES = NO @@ -139,24 +143,27 @@ REFERENCED_BY_RELATION = NO REFERENCES_RELATION = NO REFERENCES_LINK_SOURCE = YES +SOURCE_TOOLTIPS = YES USE_HTAGS = NO VERBATIM_HEADERS = NO +CLANG_ASSISTED_PARSING = NO +CLANG_OPTIONS = #--------------------------------------------------------------------------- -# configuration options related to the alphabetical class index +# Configuration options related to the alphabetical class index #--------------------------------------------------------------------------- ALPHABETICAL_INDEX = YES COLS_IN_ALPHA_INDEX = 5 IGNORE_PREFIX = #--------------------------------------------------------------------------- -# configuration options related to the HTML output +# Configuration options related to the HTML output #--------------------------------------------------------------------------- GENERATE_HTML = YES HTML_OUTPUT = html HTML_FILE_EXTENSION = .html HTML_HEADER = HTML_FOOTER = -HTML_STYLESHEET = "$(MMDOCTOOLDIR)/doxygen.css" -HTML_EXTRA_STYLESHEET = +HTML_STYLESHEET = +HTML_EXTRA_STYLESHEET = "$(MMDOCTOOLDIR)/doxygen-extra.css" HTML_EXTRA_FILES = HTML_COLORSTYLE_HUE = 220 HTML_COLORSTYLE_SAT = 100 @@ -197,14 +204,16 @@ MATHJAX_FORMAT = HTML-CSS MATHJAX_RELPATH = http://cdn.mathjax.org/mathjax/latest MATHJAX_EXTENSIONS = +MATHJAX_CODEFILE = SEARCHENGINE = NO SERVER_BASED_SEARCH = NO EXTERNAL_SEARCH = NO SEARCHENGINE_URL = SEARCHDATA_FILE = searchdata.xml +EXTERNAL_SEARCH_ID = EXTRA_SEARCH_MAPPINGS = #--------------------------------------------------------------------------- -# configuration options related to the LaTeX output +# Configuration options related to the LaTeX output #--------------------------------------------------------------------------- GENERATE_LATEX = NO LATEX_OUTPUT = latex @@ -215,14 +224,17 @@ EXTRA_PACKAGES = LATEX_HEADER = LATEX_FOOTER = +LATEX_EXTRA_STYLESHEET = +LATEX_EXTRA_FILES = PDF_HYPERLINKS = YES USE_PDFLATEX = YES LATEX_BATCHMODE = NO LATEX_HIDE_INDICES = NO LATEX_SOURCE_CODE = NO LATEX_BIB_STYLE = plain +LATEX_TIMESTAMP = NO #--------------------------------------------------------------------------- -# configuration options related to the RTF output +# Configuration options related to the RTF output #--------------------------------------------------------------------------- GENERATE_RTF = NO RTF_OUTPUT = rtf @@ -230,27 +242,33 @@ RTF_HYPERLINKS = NO RTF_STYLESHEET_FILE = RTF_EXTENSIONS_FILE = +RTF_SOURCE_CODE = NO #--------------------------------------------------------------------------- -# configuration options related to the man page output +# Configuration options related to the man page output #--------------------------------------------------------------------------- GENERATE_MAN = NO MAN_OUTPUT = man MAN_EXTENSION = .3 +MAN_SUBDIR = MAN_LINKS = NO #--------------------------------------------------------------------------- -# configuration options related to the XML output +# Configuration options related to the XML output #--------------------------------------------------------------------------- GENERATE_XML = NO XML_OUTPUT = xml -XML_SCHEMA = -XML_DTD = XML_PROGRAMLISTING = NO #--------------------------------------------------------------------------- -# configuration options for the AutoGen Definitions output +# Configuration options related to the DOCBOOK output +#--------------------------------------------------------------------------- +GENERATE_DOCBOOK = NO +DOCBOOK_OUTPUT = docbook +DOCBOOK_PROGRAMLISTING = NO +#--------------------------------------------------------------------------- +# Configuration options for the AutoGen Definitions output #--------------------------------------------------------------------------- GENERATE_AUTOGEN_DEF = NO #--------------------------------------------------------------------------- -# configuration options related to the Perl module output +# Configuration options related to the Perl module output #--------------------------------------------------------------------------- GENERATE_PERLMOD = NO PERLMOD_LATEX = NO @@ -289,18 +307,20 @@ ATKMM_MICRO_VERSION SKIP_FUNCTION_MACROS = YES #--------------------------------------------------------------------------- -# Configuration::additions related to external references +# Configuration options related to external references #--------------------------------------------------------------------------- TAGFILES = @DOXYGEN_TAGFILES@ GENERATE_TAGFILE = "reference/@ATKMM_MODULE_NAME@.tag" ALLEXTERNALS = NO EXTERNAL_GROUPS = NO +EXTERNAL_PAGES = YES PERL_PATH = @PERL@ #--------------------------------------------------------------------------- # Configuration options related to the dot tool #--------------------------------------------------------------------------- CLASS_DIAGRAMS = YES MSCGEN_PATH = +DIA_PATH = HIDE_UNDOC_RELATIONS = NO HAVE_DOT = YES DOT_NUM_THREADS = 0 @@ -324,6 +344,9 @@ DOT_PATH = DOTFILE_DIRS = MSCFILE_DIRS = +DIAFILE_DIRS = +PLANTUML_JAR_PATH = +PLANTUML_INCLUDE_PATH = DOT_GRAPH_MAX_NODES = 50 MAX_DOT_GRAPH_DEPTH = 0 DOT_TRANSPARENT = NO diff -Nru atkmm1.6-2.24.2/doc/reference/html/annotated.html atkmm1.6-2.28.0/doc/reference/html/annotated.html --- atkmm1.6-2.24.2/doc/reference/html/annotated.html 2015-11-29 20:05:33.295311097 +0000 +++ atkmm1.6-2.28.0/doc/reference/html/annotated.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,91 +0,0 @@ - - - - - - -atkmm: Class List - - - - - - -
-
- - - - - - -
-
atkmm -  2.24.2 -
-
-
- - - - -
-
-
-
Class List
-
-
-
Here are the classes, structs, unions and interfaces with brief descriptions:
-
[detail level 12]
- - - - - - - - - - - - - - - - - - - - - - - - - - -
 NAtkThe ATK interface which provides standard mechanism for manipulating hyperlinks
 CActionThe ATK interface provided by UI components which the user can activate/interact with, This should be implemented by instances of Atk::Object classes with which the user can interact directly, i.e
 CAttribute
 CAttributeTraits
 CComponentThe ATK interface provided by UI components which occupy a physical area on the screen
 CDocumentThe ATK interface which allows access to a DOM associated with on object
 CEditableText
 CHyperlinkEncapsulates a link or set of links in a hypertext document
 CHypertext
 CImageThe ATK Interface implemented by components which expose image or pixmap content on-screen
 CImplementor
 CNoOpObjectAn Atk::NoOpObject is an Atk::Object which purports to implement all ATK interfaces
 CObjectThe base object class for the Accessibility Toolkit API
 CObjectAccessibleThis object class is derived from AtkObject and can be used as a basis implementing accessible objects
 CRangeA given range or subrange, to be used with Atk::Value
 CRelationAn Atk::Relation describes a relation between an object and one or more other objects
 CRelationSetA set of Atk::Relations, normally the set of AtkRelations which an Atk::Object has
 CSelectionThe ATK interface implemented by container objects whose Atk::Object children can be selected
 CStateSetAn AtkStateSet determines a component's state set
 CStreamableContentThe ATK interface which provides access to streamable content
 CTableThe ATK interface implemented for UI components which contain tabular or row/column information
 CTextThe ATK interface implemented by components with text content
 CTextAttribute
 CValueThe ATK interface implemented by valuators and components which display or select a value from a bounded range of values
 Chash_load_check_resize_trigger_size_base
 Clu_counter_policy_base
-
-
- - - - Binary files /tmp/tmpOzhFOD/5A0TTRaIcC/atkmm1.6-2.24.2/doc/reference/html/arrowdown.png and /tmp/tmpOzhFOD/Bg2TspT7RQ/atkmm1.6-2.28.0/doc/reference/html/arrowdown.png differ Binary files /tmp/tmpOzhFOD/5A0TTRaIcC/atkmm1.6-2.24.2/doc/reference/html/arrowright.png and /tmp/tmpOzhFOD/Bg2TspT7RQ/atkmm1.6-2.28.0/doc/reference/html/arrowright.png differ Binary files /tmp/tmpOzhFOD/5A0TTRaIcC/atkmm1.6-2.24.2/doc/reference/html/bc_s.png and /tmp/tmpOzhFOD/Bg2TspT7RQ/atkmm1.6-2.28.0/doc/reference/html/bc_s.png differ Binary files /tmp/tmpOzhFOD/5A0TTRaIcC/atkmm1.6-2.24.2/doc/reference/html/bdwn.png and /tmp/tmpOzhFOD/Bg2TspT7RQ/atkmm1.6-2.28.0/doc/reference/html/bdwn.png differ diff -Nru atkmm1.6-2.24.2/doc/reference/html/classAtk_1_1Action.html atkmm1.6-2.28.0/doc/reference/html/classAtk_1_1Action.html --- atkmm1.6-2.24.2/doc/reference/html/classAtk_1_1Action.html 2015-11-29 20:05:33.307310868 +0000 +++ atkmm1.6-2.28.0/doc/reference/html/classAtk_1_1Action.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,829 +0,0 @@ - - - - - - -atkmm: Atk::Action Class Reference - - - - - - -
-
- - - - - - -
-
atkmm -  2.24.2 -
-
-
- - - - - -
- -
- -

The ATK interface provided by UI components which the user can activate/interact with, This should be implemented by instances of Atk::Object classes with which the user can interact directly, i.e. - More...

- -

#include <atkmm/action.h>

-
-Inheritance diagram for Atk::Action:
-
-
Inheritance graph
- - -
[legend]
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

-Public Member Functions

 Action (Action&& src) noexcept
 
Actionoperator= (Action&& src) noexcept
 
virtual ~Action () noexcept
 
AtkAction* gobj ()
 Provides access to the underlying C GObject. More...
 
const AtkAction* gobj () const
 Provides access to the underlying C GObject. More...
 
bool do_action (int i)
 Perform the specified action on the object. More...
 
int get_n_actions () const
 Gets the number of accessible actions available on the object. More...
 
Glib::ustring get_description (int i) const
 Returns a description of the specified action of the object. More...
 
Glib::ustring get_name (int i) const
 Returns the name of the specified action of the object. More...
 
Glib::ustring get_keybinding (int i)
 Returns a keybinding associated with this action, if one exists. More...
 
bool set_description (int i, const Glib::ustring& desc)
 Sets a description of the specified action of the object. More...
 
Glib::ustring get_localized_name (int i)
 Returns the localized name of the specified action of the object. More...
 
- Public Member Functions inherited from Glib::Interface
 Interface ()
 
 Interface (Interface &&src) noexcept
 
Interfaceoperator= (Interface &&src) noexcept
 
 Interface (const Glib::Interface_Class &interface_class)
 
 Interface (GObject *castitem)
 
virtual ~Interface () noexcept
 
 Interface (const Interface &)=delete
 
Interfaceoperator= (const Interface &)=delete
 
GObject * gobj ()
 
const GObject * gobj () const
 
- Public Member Functions inherited from Glib::ObjectBase
 ObjectBase (const ObjectBase &)=delete
 
ObjectBaseoperator= (const ObjectBase &)=delete
 
void set_property_value (const Glib::ustring &property_name, const Glib::ValueBase &value)
 
void get_property_value (const Glib::ustring &property_name, Glib::ValueBase &value) const
 
void set_property (const Glib::ustring &property_name, const PropertyType &value)
 
void get_property (const Glib::ustring &property_name, PropertyType &value) const
 
void connect_property_changed (const Glib::ustring &property_name, const sigc::slot< void > &slot)
 
sigc::connection connect_property_changed_with_return (const Glib::ustring &property_name, const sigc::slot< void > &slot)
 
void freeze_notify ()
 
void thaw_notify ()
 
virtual void reference () const
 
virtual void unreference () const
 
GObject * gobj ()
 
const GObject * gobj () const
 
GObject * gobj_copy () const
 
- Public Member Functions inherited from sigc::trackable
 trackable () noexcept
 
 trackable (const trackable &src) noexcept
 
 trackable (trackable &&src)
 
 ~trackable ()
 
void add_destroy_notify_callback (void *data, func_destroy_notify func) const
 
void notify_callbacks ()
 
trackableoperator= (const trackable &src)
 
trackableoperator= (trackable &&src)
 
void remove_destroy_notify_callback (void *data) const
 
- - - - - - -

-Static Public Member Functions

static void add_interface (GType gtype_implementer)
 
static GType get_type ()
 Get the GType for this class, for use with the underlying GObject type system. More...
 
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

-Protected Member Functions

 Action ()
 You should derive from this class to use it. More...
 
virtual bool do_action_vfunc (int i)
 
virtual int get_n_actions_vfunc () const
 
virtual const char* get_description_vfunc (int i) const
 
virtual const char* get_name_vfunc (int i) const
 
virtual const char* get_keybinding_vfunc (int i) const
 
virtual bool set_description_vfunc (int i, const Glib::ustring& desc)
 
- Protected Member Functions inherited from Glib::ObjectBase
 ObjectBase ()
 
 ObjectBase (const char *custom_type_name)
 
 ObjectBase (const std::type_info &custom_type_info)
 
 ObjectBase (ObjectBase &&src) noexcept
 
ObjectBaseoperator= (ObjectBase &&src) noexcept
 
virtual ~ObjectBase () noexcept=0
 
void initialize (GObject *castitem)
 
void initialize_move (GObject *castitem, Glib::ObjectBase *previous_wrapper)
 
- - - - - -

-Related Functions

(Note that these are not member functions.)

-
Glib::RefPtr< Atk::Actionwrap (AtkAction* object, bool take_copy=false)
 A Glib::wrap() method for this object. More...
 
- - - - -

-Additional Inherited Members

- Public Types inherited from sigc::trackable
typedef internal::func_destroy_notify func_destroy_notify
 
-

Detailed Description

-

The ATK interface provided by UI components which the user can activate/interact with, This should be implemented by instances of Atk::Object classes with which the user can interact directly, i.e.

-

buttons, checkboxes, scrollbars, e.g. components which are not "passive" providers of UI information.

-

Exceptions: when the user interaction is already covered by another appropriate interface such as Atk::EditableText (insert/delete test, etc.) or Atk::Value (set value) then these actions should not be exposed by Atk::Action as well.

-

Also note that the Atk::Action API is limited in that parameters may not be passed to the object being activated; thus the action must be self-contained and specifiable via only a single "verb". Concrete examples include "press", "release", "click" for buttons, "drag" (meaning initiate drag) and "drop" for drag sources and drop targets, etc.

-

Though most UI interactions on components should be invocable via keyboard as well as mouse, there will generally be a close mapping between "mouse actions" that are possible on a component and the Atk::Actions. Where mouse and keyboard actions are redundant in effect, Atk::Action should expose only one action rather than exposing redundant actions if possible. By convention we have been using "mouse centric" terminology for Atk::Action names.

-

Constructor & Destructor Documentation

- -
-
- - - - - -
- - - - - - - -
Atk::Action::Action ()
-
-protected
-
- -

You should derive from this class to use it.

- -
-
- -
-
- - - - - -
- - - - - - - - -
Atk::Action::Action (Action&& src)
-
-noexcept
-
- -
-
- -
-
- - - - - -
- - - - - - - -
virtual Atk::Action::~Action ()
-
-virtualnoexcept
-
- -
-
-

Member Function Documentation

- -
-
- - - - - -
- - - - - - - - -
static void Atk::Action::add_interface (GType gtype_implementer)
-
-static
-
- -
-
- -
-
- - - - - - - - -
bool Atk::Action::do_action (int i)
-
- -

Perform the specified action on the object.

-
Parameters
- - -
iThe action index corresponding to the action to be performed.
-
-
-
Returns
true if success, false otherwise.
- -
-
- -
-
- - - - - -
- - - - - - - - -
virtual bool Atk::Action::do_action_vfunc (int i)
-
-protectedvirtual
-
- -
-
- -
-
- - - - - - - - -
Glib::ustring Atk::Action::get_description (int i) const
-
- -

Returns a description of the specified action of the object.

-
Parameters
- - -
iThe action index corresponding to the action to be performed.
-
-
-
Returns
A description string, or nullptr if action does not implement this interface.
- -
-
- -
-
- - - - - -
- - - - - - - - -
virtual const char* Atk::Action::get_description_vfunc (int i) const
-
-protectedvirtual
-
- -
-
- -
-
- - - - - - - - -
Glib::ustring Atk::Action::get_keybinding (int i)
-
- -

Returns a keybinding associated with this action, if one exists.

-
Parameters
- - -
iThe action index corresponding to the action to be performed.
-
-
-
Returns
A string representing the keybinding, or an empty string if there is no keybinding for this action.
- -
-
- -
-
- - - - - -
- - - - - - - - -
virtual const char* Atk::Action::get_keybinding_vfunc (int i) const
-
-protectedvirtual
-
- -
-
- -
-
- - - - - - - - -
Glib::ustring Atk::Action::get_localized_name (int i)
-
- -

Returns the localized name of the specified action of the object.

-
Parameters
- - -
iThe action index corresponding to the action to be performed.
-
-
-
Returns
A name string, or an empty string if action does not implement this interface.
- -
-
- -
-
- - - - - - - -
int Atk::Action::get_n_actions () const
-
- -

Gets the number of accessible actions available on the object.

-

If there are more than one, the first one is considered the "default" action of the object.

-
Returns
A the number of actions, or 0 if action does not implement this interface.
- -
-
- -
-
- - - - - -
- - - - - - - -
virtual int Atk::Action::get_n_actions_vfunc () const
-
-protectedvirtual
-
- -
-
- -
-
- - - - - - - - -
Glib::ustring Atk::Action::get_name (int i) const
-
- -

Returns the name of the specified action of the object.

-
Parameters
- - -
iThe action index corresponding to the action to be performed.
-
-
-
Returns
A name string, or an empty string if action does not implement this interface.
- -
-
- -
-
- - - - - -
- - - - - - - - -
virtual const char* Atk::Action::get_name_vfunc (int i) const
-
-protectedvirtual
-
- -
-
- -
-
- - - - - -
- - - - - - - -
static GType Atk::Action::get_type ()
-
-static
-
- -

Get the GType for this class, for use with the underlying GObject type system.

- -
-
- -
-
- - - - - -
- - - - - - - -
AtkAction* Atk::Action::gobj ()
-
-inline
-
- -

Provides access to the underlying C GObject.

- -
-
- -
-
- - - - - -
- - - - - - - -
const AtkAction* Atk::Action::gobj () const
-
-inline
-
- -

Provides access to the underlying C GObject.

- -
-
- -
-
- - - - - -
- - - - - - - - -
Action& Atk::Action::operator= (Action&& src)
-
-noexcept
-
- -
-
- -
-
- - - - - - - - - - - - - - - - - - -
bool Atk::Action::set_description (int i,
const Glib::ustringdesc 
)
-
- -

Sets a description of the specified action of the object.

-
Parameters
- - - -
iThe action index corresponding to the action to be performed.
descThe description to be assigned to this action.
-
-
-
Returns
A bool representing if the description was successfully set;.
- -
-
- -
-
- - - - - -
- - - - - - - - - - - - - - - - - - -
virtual bool Atk::Action::set_description_vfunc (int i,
const Glib::ustringdesc 
)
-
-protectedvirtual
-
- -
-
-

Friends And Related Function Documentation

- -
-
- - - - - -
- - - - - - - - - - - - - - - - - - -
Glib::RefPtr< Atk::Action > wrap (AtkAction * object,
bool take_copy = false 
)
-
-related
-
- -

A Glib::wrap() method for this object.

-
Parameters
- - - -
objectThe C instance.
take_copyFalse if the result should take ownership of the C instance. True if it should take a new copy or ref.
-
-
-
Returns
A C++ instance that wraps this C instance.
- -
-
-
- - - - Binary files /tmp/tmpOzhFOD/5A0TTRaIcC/atkmm1.6-2.24.2/doc/reference/html/classAtk_1_1Action__inherit__graph.png and /tmp/tmpOzhFOD/Bg2TspT7RQ/atkmm1.6-2.28.0/doc/reference/html/classAtk_1_1Action__inherit__graph.png differ diff -Nru atkmm1.6-2.24.2/doc/reference/html/classAtk_1_1Action-members.html atkmm1.6-2.28.0/doc/reference/html/classAtk_1_1Action-members.html --- atkmm1.6-2.24.2/doc/reference/html/classAtk_1_1Action-members.html 2015-11-29 20:05:33.299311020 +0000 +++ atkmm1.6-2.28.0/doc/reference/html/classAtk_1_1Action-members.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,129 +0,0 @@ - - - - - - -atkmm: Member List - - - - - - -
-
- - - - - - -
-
atkmm -  2.24.2 -
-
-
- - - - - -
-
-
-
Atk::Action Member List
-
-
- -

This is the complete list of members for Atk::Action, including all inherited members.

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Action()Atk::Actionprotected
Action(Action&& src) noexceptAtk::Action
add_destroy_notify_callback(void *data, func_destroy_notify func) const sigc::trackable
add_interface(GType gtype_implementer)Atk::Actionstatic
connect_property_changed(const Glib::ustring &property_name, const sigc::slot< void > &slot)Glib::ObjectBase
connect_property_changed_with_return(const Glib::ustring &property_name, const sigc::slot< void > &slot)Glib::ObjectBase
do_action(int i)Atk::Action
do_action_vfunc(int i)Atk::Actionprotectedvirtual
freeze_notify()Glib::ObjectBase
func_destroy_notify typedefsigc::trackable
get_description(int i) const Atk::Action
get_description_vfunc(int i) const Atk::Actionprotectedvirtual
get_keybinding(int i)Atk::Action
get_keybinding_vfunc(int i) const Atk::Actionprotectedvirtual
get_localized_name(int i)Atk::Action
get_n_actions() const Atk::Action
get_n_actions_vfunc() const Atk::Actionprotectedvirtual
get_name(int i) const Atk::Action
get_name_vfunc(int i) const Atk::Actionprotectedvirtual
get_property(const Glib::ustring &property_name, PropertyType &value) const Glib::ObjectBase
get_property_value(const Glib::ustring &property_name, Glib::ValueBase &value) const Glib::ObjectBase
get_type()Atk::Actionstatic
gobj()Atk::Actioninline
gobj() const Atk::Actioninline
gobj_copy() const Glib::ObjectBase
initialize(GObject *castitem)Glib::ObjectBaseprotected
initialize_move(GObject *castitem, Glib::ObjectBase *previous_wrapper)Glib::ObjectBaseprotected
Interface()Glib::Interface
Interface(Interface &&src) noexceptGlib::Interface
Interface(const Glib::Interface_Class &interface_class)Glib::Interface
Interface(GObject *castitem)Glib::Interface
Interface(const Interface &)=deleteGlib::Interface
notify_callbacks()sigc::trackable
ObjectBase(const ObjectBase &)=deleteGlib::ObjectBase
ObjectBase()Glib::ObjectBaseprotected
ObjectBase(const char *custom_type_name)Glib::ObjectBaseprotected
ObjectBase(const std::type_info &custom_type_info)Glib::ObjectBaseprotected
ObjectBase(ObjectBase &&src) noexceptGlib::ObjectBaseprotected
operator=(Action&& src) noexceptAtk::Action
Glib::Interface::operator=(Interface &&src) noexceptGlib::Interface
Glib::Interface::operator=(const Interface &)=deleteGlib::Interface
Glib::ObjectBase::operator=(const ObjectBase &)=deleteGlib::ObjectBase
Glib::ObjectBase::operator=(ObjectBase &&src) noexceptGlib::ObjectBaseprotected
sigc::trackable::operator=(const trackable &src)sigc::trackable
sigc::trackable::operator=(trackable &&src)sigc::trackable
reference() const Glib::ObjectBasevirtual
remove_destroy_notify_callback(void *data) const sigc::trackable
set_description(int i, const Glib::ustring& desc)Atk::Action
set_description_vfunc(int i, const Glib::ustring& desc)Atk::Actionprotectedvirtual
set_property(const Glib::ustring &property_name, const PropertyType &value)Glib::ObjectBase
set_property_value(const Glib::ustring &property_name, const Glib::ValueBase &value)Glib::ObjectBase
thaw_notify()Glib::ObjectBase
trackable() noexceptsigc::trackable
trackable(const trackable &src) noexceptsigc::trackable
trackable(trackable &&src)sigc::trackable
unreference() const Glib::ObjectBasevirtual
wrap(AtkAction* object, bool take_copy=false)Atk::Actionrelated
~Action() noexceptAtk::Actionvirtual
~Interface() noexceptGlib::Interfacevirtual
~ObjectBase() noexcept=0Glib::ObjectBaseprotectedpure virtual
~trackable()sigc::trackable
- - - - diff -Nru atkmm1.6-2.24.2/doc/reference/html/classAtk_1_1Attribute.html atkmm1.6-2.28.0/doc/reference/html/classAtk_1_1Attribute.html --- atkmm1.6-2.24.2/doc/reference/html/classAtk_1_1Attribute.html 2015-11-29 20:05:33.347310109 +0000 +++ atkmm1.6-2.28.0/doc/reference/html/classAtk_1_1Attribute.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,378 +0,0 @@ - - - - - - -atkmm: Atk::Attribute Class Reference - - - - - - -
-
- - - - - - -
-
atkmm -  2.24.2 -
-
-
- - - - - -
- -
- -

#include <atkmm/text.h>

- - - - - - - - - - - - - - - - - - - - - - - - - - -

-Public Member Functions

 Attribute ()
 
 Attribute (const Glib::ustring& name, const Glib::ustring& value)
 
 Attribute (const AtkAttribute* gobject)
 
 ~Attribute ()
 
 Attribute (const Attribute& other)
 
Attributeoperator= (const Attribute& other)
 
void swap (Attribute& other)
 
Glib::ustring get_name () const
 
Glib::ustring get_value () const
 
AtkAttribute* gobj ()
 Provides access to the underlying C GObject. More...
 
const AtkAttribute* gobj () const
 Provides access to the underlying C GObject. More...
 
- - - -

-Protected Attributes

AtkAttribute gobject_
 
- - - - -

-Related Functions

(Note that these are not member functions.)

-
void swap (Attribute& lhs, Attribute& rhs)
 
-

Constructor & Destructor Documentation

- -
-
- - - - - - - -
Atk::Attribute::Attribute ()
-
- -
-
- -
-
- - - - - - - - - - - - - - - - - - -
Atk::Attribute::Attribute (const Glib::ustringname,
const Glib::ustringvalue 
)
-
- -
-
- -
-
- - - - - -
- - - - - - - - -
Atk::Attribute::Attribute (const AtkAttribute * gobject)
-
-explicit
-
- -
-
- -
-
- - - - - - - -
Atk::Attribute::~Attribute ()
-
- -
-
- -
-
- - - - - - - - -
Atk::Attribute::Attribute (const Attributeother)
-
- -
-
-

Member Function Documentation

- -
-
- - - - - - - -
Glib::ustring Atk::Attribute::get_name () const
-
- -
-
- -
-
- - - - - - - -
Glib::ustring Atk::Attribute::get_value () const
-
- -
-
- -
-
- - - - - -
- - - - - - - -
AtkAttribute* Atk::Attribute::gobj ()
-
-inline
-
- -

Provides access to the underlying C GObject.

- -
-
- -
-
- - - - - -
- - - - - - - -
const AtkAttribute* Atk::Attribute::gobj () const
-
-inline
-
- -

Provides access to the underlying C GObject.

- -
-
- -
-
- - - - - - - - -
Attribute& Atk::Attribute::operator= (const Attributeother)
-
- -
-
- -
-
- - - - - - - - -
void Atk::Attribute::swap (Attributeother)
-
- -
-
-

Friends And Related Function Documentation

- -
-
- - - - - -
- - - - - - - - - - - - - - - - - - -
void swap (Attributelhs,
Attributerhs 
)
-
-related
-
- -
-
-

Member Data Documentation

- -
-
- - - - - -
- - - - -
AtkAttribute Atk::Attribute::gobject_
-
-protected
-
- -
-
-
- - - - diff -Nru atkmm1.6-2.24.2/doc/reference/html/classAtk_1_1Attribute-members.html atkmm1.6-2.28.0/doc/reference/html/classAtk_1_1Attribute-members.html --- atkmm1.6-2.24.2/doc/reference/html/classAtk_1_1Attribute-members.html 2015-11-29 20:05:33.287311249 +0000 +++ atkmm1.6-2.28.0/doc/reference/html/classAtk_1_1Attribute-members.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,81 +0,0 @@ - - - - - - -atkmm: Member List - - - - - - -
-
- - - - - - -
-
atkmm -  2.24.2 -
-
-
- - - - - -
-
-
-
Atk::Attribute Member List
-
-
- -

This is the complete list of members for Atk::Attribute, including all inherited members.

- - - - - - - - - - - - - - -
Attribute()Atk::Attribute
Attribute(const Glib::ustring& name, const Glib::ustring& value)Atk::Attribute
Attribute(const AtkAttribute* gobject)Atk::Attributeexplicit
Attribute(const Attribute& other)Atk::Attribute
get_name() const Atk::Attribute
get_value() const Atk::Attribute
gobj()Atk::Attributeinline
gobj() const Atk::Attributeinline
gobject_Atk::Attributeprotected
operator=(const Attribute& other)Atk::Attribute
swap(Attribute& other)Atk::Attribute
swap(Attribute& lhs, Attribute& rhs)Atk::Attributerelated
~Attribute()Atk::Attribute
- - - - diff -Nru atkmm1.6-2.24.2/doc/reference/html/classAtk_1_1Component.html atkmm1.6-2.28.0/doc/reference/html/classAtk_1_1Component.html --- atkmm1.6-2.24.2/doc/reference/html/classAtk_1_1Component.html 2015-11-29 20:05:33.355309957 +0000 +++ atkmm1.6-2.28.0/doc/reference/html/classAtk_1_1Component.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,1444 +0,0 @@ - - - - - - -atkmm: Atk::Component Class Reference - - - - - - -
-
- - - - - - -
-
atkmm -  2.24.2 -
-
-
- - - - - -
- -
- -

The ATK interface provided by UI components which occupy a physical area on the screen. - More...

- -

#include <atkmm/component.h>

-
-Inheritance diagram for Atk::Component:
-
-
Inheritance graph
- - -
[legend]
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

-Public Member Functions

 Component (Component&& src) noexcept
 
Componentoperator= (Component&& src) noexcept
 
virtual ~Component () noexcept
 
AtkComponent* gobj ()
 Provides access to the underlying C GObject. More...
 
const AtkComponent* gobj () const
 Provides access to the underlying C GObject. More...
 
guint add_focus_handler (AtkFocusHandler handler)
 Add the specified handler to the set of functions to be called when this object receives focus events (in or out). More...
 
bool contains (int x, int y, CoordType coord_type) const
 Checks whether the specified point is within the extent of the component. More...
 
Glib::RefPtr< Atk::Objectget_accessible_at_point (int x, int y, CoordType coord_type)
 Gets a reference to the accessible child, if one exists, at the coordinate point specified by x and y. More...
 
void get_extents (int& x, int& y, int& width, int& height, CoordType coord_type) const
 Gets the rectangle which gives the extent of the component. More...
 
void get_position (int& x, int& y, CoordType coord_type) const
 Gets the position of component in the form of a point specifying component's top-left corner. More...
 
void get_size (int& width, int& height) const
 Gets the size of the component in terms of width and height. More...
 
Layer get_layer () const
 Gets the layer of the component. More...
 
int get_mdi_zorder () const
 Gets the zorder of the component. More...
 
bool grab_focus ()
 Grabs focus for this component. More...
 
void remove_focus_handler (guint handler_id)
 Remove the handler specified by handler_id from the list of functions to be executed when this object receives focus events (in or out). More...
 
bool set_extents (int x, int y, int width, int height, CoordType coord_type)
 Sets the extents of component. More...
 
bool set_position (int x, int y, CoordType coord_type)
 Sets the postition of component. More...
 
bool set_size (int width, int height)
 Set the size of the component in terms of width and height. More...
 
- Public Member Functions inherited from Glib::Interface
 Interface ()
 
 Interface (Interface &&src) noexcept
 
Interfaceoperator= (Interface &&src) noexcept
 
 Interface (const Glib::Interface_Class &interface_class)
 
 Interface (GObject *castitem)
 
virtual ~Interface () noexcept
 
 Interface (const Interface &)=delete
 
Interfaceoperator= (const Interface &)=delete
 
GObject * gobj ()
 
const GObject * gobj () const
 
- Public Member Functions inherited from Glib::ObjectBase
 ObjectBase (const ObjectBase &)=delete
 
ObjectBaseoperator= (const ObjectBase &)=delete
 
void set_property_value (const Glib::ustring &property_name, const Glib::ValueBase &value)
 
void get_property_value (const Glib::ustring &property_name, Glib::ValueBase &value) const
 
void set_property (const Glib::ustring &property_name, const PropertyType &value)
 
void get_property (const Glib::ustring &property_name, PropertyType &value) const
 
void connect_property_changed (const Glib::ustring &property_name, const sigc::slot< void > &slot)
 
sigc::connection connect_property_changed_with_return (const Glib::ustring &property_name, const sigc::slot< void > &slot)
 
void freeze_notify ()
 
void thaw_notify ()
 
virtual void reference () const
 
virtual void unreference () const
 
GObject * gobj ()
 
const GObject * gobj () const
 
GObject * gobj_copy () const
 
- Public Member Functions inherited from sigc::trackable
 trackable () noexcept
 
 trackable (const trackable &src) noexcept
 
 trackable (trackable &&src)
 
 ~trackable ()
 
void add_destroy_notify_callback (void *data, func_destroy_notify func) const
 
void notify_callbacks ()
 
trackableoperator= (const trackable &src)
 
trackableoperator= (trackable &&src)
 
void remove_destroy_notify_callback (void *data) const
 
- - - - - - -

-Static Public Member Functions

static void add_interface (GType gtype_implementer)
 
static GType get_type ()
 Get the GType for this class, for use with the underlying GObject type system. More...
 
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

-Protected Member Functions

 Component ()
 You should derive from this class to use it. More...
 
virtual guint add_focus_handler_vfunc (AtkFocusHandler handler)
 
virtual bool contains_vfunc (int x, int y, CoordType coord_type) const
 
virtual Glib::RefPtr< Atk::Objectget_accessible_at_point_vfunc (int x, int y, CoordType coord_type)
 
virtual void get_extents_vfunc (int& x, int& y, int& width, int& height, CoordType coord_type) const
 
virtual void get_position_vfunc (int& x, int& y, CoordType coord_type) const
 
virtual void get_size_vfunc (int& width, int& height) const
 
virtual Layer get_layer_vfunc () const
 
virtual int get_mdi_zorder_vfunc () const
 
virtual bool grab_focus_vfunc ()
 
virtual void remove_focus_handler_vfunc (guint handler_id)
 
virtual bool set_extents_vfunc (int x, int y, int width, int height, CoordType coord_type)
 
virtual bool set_position_vfunc (int x, int y, CoordType coord_type)
 
virtual bool set_size_vfunc (int width, int height)
 
- Protected Member Functions inherited from Glib::ObjectBase
 ObjectBase ()
 
 ObjectBase (const char *custom_type_name)
 
 ObjectBase (const std::type_info &custom_type_info)
 
 ObjectBase (ObjectBase &&src) noexcept
 
ObjectBaseoperator= (ObjectBase &&src) noexcept
 
virtual ~ObjectBase () noexcept=0
 
void initialize (GObject *castitem)
 
void initialize_move (GObject *castitem, Glib::ObjectBase *previous_wrapper)
 
- - - - - -

-Related Functions

(Note that these are not member functions.)

-
Glib::RefPtr< Atk::Componentwrap (AtkComponent* object, bool take_copy=false)
 A Glib::wrap() method for this object. More...
 
- - - - -

-Additional Inherited Members

- Public Types inherited from sigc::trackable
typedef internal::func_destroy_notify func_destroy_notify
 
-

Detailed Description

-

The ATK interface provided by UI components which occupy a physical area on the screen.

-

This should be implemented by most if not all UI elements with an actual on-screen presence, i.e. components which can be said to have a screen-coordinate bounding box. Virtually all widgets will need to have Atk::Component implementations provided for their corresponding Atk::Object class. In short, only UI elements which are not GUI elements will omit this ATK interface.

-

A possible exception might be textual information with a transparent background, in which case text glyph bounding box information is provided by Atk::Text.

-

Constructor & Destructor Documentation

- -
-
- - - - - -
- - - - - - - -
Atk::Component::Component ()
-
-protected
-
- -

You should derive from this class to use it.

- -
-
- -
-
- - - - - -
- - - - - - - - -
Atk::Component::Component (Component&& src)
-
-noexcept
-
- -
-
- -
-
- - - - - -
- - - - - - - -
virtual Atk::Component::~Component ()
-
-virtualnoexcept
-
- -
-
-

Member Function Documentation

- -
-
- - - - - - - - -
guint Atk::Component::add_focus_handler (AtkFocusHandler handler)
-
- -

Add the specified handler to the set of functions to be called when this object receives focus events (in or out).

-

If the handler is already added it is not added again

-

Deprecated: 2.9.4: If you need to track when an object gains or lose the focus, use the Atk::Object::signal_state_change() "focused" notification instead.

-
Deprecated:
If you need to track when an object gains or lose the focus, use Atk::Object::signal_state_change() and check for focused notification instead.
-
Parameters
- - -
handlerThe Atk::FocusHandler to be attached to component.
-
-
-
Returns
A handler id which can be used in remove_focus_handler() or zero if the handler was already added.
- -
-
- -
-
- - - - - -
- - - - - - - - -
virtual guint Atk::Component::add_focus_handler_vfunc (AtkFocusHandler handler)
-
-protectedvirtual
-
- -
-
- -
-
- - - - - -
- - - - - - - - -
static void Atk::Component::add_interface (GType gtype_implementer)
-
-static
-
- -
-
- -
-
- - - - - - - - - - - - - - - - - - - - - - - - -
bool Atk::Component::contains (int x,
int y,
CoordType coord_type 
) const
-
- -

Checks whether the specified point is within the extent of the component.

-

Toolkit implementor note: ATK provides a default implementation for this virtual method. In general there are little reason to re-implement it.

-
Parameters
- - - - -
xX coordinate.
yY coordinate.
coord_typeSpecifies whether the coordinates are relative to the screen or to the components top level window.
-
-
-
Returns
true or false indicating whether the specified point is within the extent of the component or not.
- -
-
- -
-
- - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - -
virtual bool Atk::Component::contains_vfunc (int x,
int y,
CoordType coord_type 
) const
-
-protectedvirtual
-
- -
-
- -
-
- - - - - - - - - - - - - - - - - - - - - - - - -
Glib::RefPtr<Atk::Object> Atk::Component::get_accessible_at_point (int x,
int y,
CoordType coord_type 
)
-
- -

Gets a reference to the accessible child, if one exists, at the coordinate point specified by x and y.

-
Parameters
- - - - -
xX coordinate.
yY coordinate.
coord_typeSpecifies whether the coordinates are relative to the screen or to the components top level window.
-
-
-
Returns
A reference to the accessible child, if one exists.
- -
-
- -
-
- - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - -
virtual Glib::RefPtr<Atk::Object> Atk::Component::get_accessible_at_point_vfunc (int x,
int y,
CoordType coord_type 
)
-
-protectedvirtual
-
- -
-
- -
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
void Atk::Component::get_extents (int & x,
int & y,
int & width,
int & height,
CoordType coord_type 
) const
-
- -

Gets the rectangle which gives the extent of the component.

-
Parameters
- - - - - - -
xAddress of int to put x coordinate.
yAddress of int to put y coordinate.
widthAddress of int to put width.
heightAddress of int to put height.
coord_typeSpecifies whether the coordinates are relative to the screen or to the components top level window.
-
-
- -
-
- -
-
- - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
virtual void Atk::Component::get_extents_vfunc (int & x,
int & y,
int & width,
int & height,
CoordType coord_type 
) const
-
-protectedvirtual
-
- -
-
- -
-
- - - - - - - -
Layer Atk::Component::get_layer () const
-
- -

Gets the layer of the component.

-
Returns
An Atk::Layer which is the layer of the component.
- -
-
- -
-
- - - - - -
- - - - - - - -
virtual Layer Atk::Component::get_layer_vfunc () const
-
-protectedvirtual
-
- -
-
- -
-
- - - - - - - -
int Atk::Component::get_mdi_zorder () const
-
- -

Gets the zorder of the component.

-

The value G_MININT will be returned if the layer of the component is not ATK_LAYER_MDI or ATK_LAYER_WINDOW.

-
Returns
A int which is the zorder of the component, i.e. the depth at which the component is shown in relation to other components in the same container.
- -
-
- -
-
- - - - - -
- - - - - - - -
virtual int Atk::Component::get_mdi_zorder_vfunc () const
-
-protectedvirtual
-
- -
-
- -
-
- - - - - - - - - - - - - - - - - - - - - - - - -
void Atk::Component::get_position (int & x,
int & y,
CoordType coord_type 
) const
-
- -

Gets the position of component in the form of a point specifying component's top-left corner.

-

Deprecated: Since 2.12. Use get_extents() instead.

-
Deprecated:
Use get_extents() instead.
-
Parameters
- - - - -
xAddress of int to put x coordinate position.
yAddress of int to put y coordinate position.
coord_typeSpecifies whether the coordinates are relative to the screen or to the components top level window.
-
-
- -
-
- -
-
- - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - -
virtual void Atk::Component::get_position_vfunc (int & x,
int & y,
CoordType coord_type 
) const
-
-protectedvirtual
-
- -
-
- -
-
- - - - - - - - - - - - - - - - - - -
void Atk::Component::get_size (int & width,
int & height 
) const
-
- -

Gets the size of the component in terms of width and height.

-

Deprecated: Since 2.12. Use get_extents() instead.

-
Deprecated:
Use get_extents() instead.
-
Parameters
- - - -
widthAddress of int to put width of component.
heightAddress of int to put height of component.
-
-
- -
-
- -
-
- - - - - -
- - - - - - - - - - - - - - - - - - -
virtual void Atk::Component::get_size_vfunc (int & width,
int & height 
) const
-
-protectedvirtual
-
- -
-
- -
-
- - - - - -
- - - - - - - -
static GType Atk::Component::get_type ()
-
-static
-
- -

Get the GType for this class, for use with the underlying GObject type system.

- -
-
- -
-
- - - - - -
- - - - - - - -
AtkComponent* Atk::Component::gobj ()
-
-inline
-
- -

Provides access to the underlying C GObject.

- -
-
- -
-
- - - - - -
- - - - - - - -
const AtkComponent* Atk::Component::gobj () const
-
-inline
-
- -

Provides access to the underlying C GObject.

- -
-
- -
-
- - - - - - - -
bool Atk::Component::grab_focus ()
-
- -

Grabs focus for this component.

-
Returns
true if successful, false otherwise.
- -
-
- -
-
- - - - - -
- - - - - - - -
virtual bool Atk::Component::grab_focus_vfunc ()
-
-protectedvirtual
-
- -
-
- -
-
- - - - - -
- - - - - - - - -
Component& Atk::Component::operator= (Component&& src)
-
-noexcept
-
- -
-
- -
-
- - - - - - - - -
void Atk::Component::remove_focus_handler (guint handler_id)
-
- -

Remove the handler specified by handler_id from the list of functions to be executed when this object receives focus events (in or out).

-

Deprecated: 2.9.4: If you need to track when an object gains or lose the focus, use the Atk::Object::signal_state_change() "focused" notification instead.

-
Deprecated:
If you need to track when an object gains or lose the focus, use Atk::Object::signal_state_change() and check for focused notification instead.
-
Parameters
- - -
handler_idThe handler id of the focus handler to be removed from component.
-
-
- -
-
- -
-
- - - - - -
- - - - - - - - -
virtual void Atk::Component::remove_focus_handler_vfunc (guint handler_id)
-
-protectedvirtual
-
- -
-
- -
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
bool Atk::Component::set_extents (int x,
int y,
int width,
int height,
CoordType coord_type 
)
-
- -

Sets the extents of component.

-
Parameters
- - - - - - -
xX coordinate.
yY coordinate.
widthWidth to set for component.
heightHeight to set for component.
coord_typeSpecifies whether the coordinates are relative to the screen or to the components top level window.
-
-
-
Returns
true or false whether the extents were set or not.
- -
-
- -
-
- - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
virtual bool Atk::Component::set_extents_vfunc (int x,
int y,
int width,
int height,
CoordType coord_type 
)
-
-protectedvirtual
-
- -
-
- -
-
- - - - - - - - - - - - - - - - - - - - - - - - -
bool Atk::Component::set_position (int x,
int y,
CoordType coord_type 
)
-
- -

Sets the postition of component.

-
Parameters
- - - - -
xX coordinate.
yY coordinate.
coord_typeSpecifies whether the coordinates are relative to the screen or to the components top level window.
-
-
-
Returns
true or false whether or not the position was set or not.
- -
-
- -
-
- - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - -
virtual bool Atk::Component::set_position_vfunc (int x,
int y,
CoordType coord_type 
)
-
-protectedvirtual
-
- -
-
- -
-
- - - - - - - - - - - - - - - - - - -
bool Atk::Component::set_size (int width,
int height 
)
-
- -

Set the size of the component in terms of width and height.

-
Parameters
- - - -
widthWidth to set for component.
heightHeight to set for component.
-
-
-
Returns
true or false whether the size was set or not.
- -
-
- -
-
- - - - - -
- - - - - - - - - - - - - - - - - - -
virtual bool Atk::Component::set_size_vfunc (int width,
int height 
)
-
-protectedvirtual
-
- -
-
-

Friends And Related Function Documentation

- -
-
- - - - - -
- - - - - - - - - - - - - - - - - - -
Glib::RefPtr< Atk::Component > wrap (AtkComponent * object,
bool take_copy = false 
)
-
-related
-
- -

A Glib::wrap() method for this object.

-
Parameters
- - - -
objectThe C instance.
take_copyFalse if the result should take ownership of the C instance. True if it should take a new copy or ref.
-
-
-
Returns
A C++ instance that wraps this C instance.
- -
-
-
- - - - Binary files /tmp/tmpOzhFOD/5A0TTRaIcC/atkmm1.6-2.24.2/doc/reference/html/classAtk_1_1Component__inherit__graph.png and /tmp/tmpOzhFOD/Bg2TspT7RQ/atkmm1.6-2.28.0/doc/reference/html/classAtk_1_1Component__inherit__graph.png differ diff -Nru atkmm1.6-2.24.2/doc/reference/html/classAtk_1_1Component-members.html atkmm1.6-2.28.0/doc/reference/html/classAtk_1_1Component-members.html --- atkmm1.6-2.24.2/doc/reference/html/classAtk_1_1Component-members.html 2015-11-29 20:05:33.287311249 +0000 +++ atkmm1.6-2.28.0/doc/reference/html/classAtk_1_1Component-members.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,142 +0,0 @@ - - - - - - -atkmm: Member List - - - - - - -
-
- - - - - - -
-
atkmm -  2.24.2 -
-
-
- - - - - -
-
-
-
Atk::Component Member List
-
-
- -

This is the complete list of members for Atk::Component, including all inherited members.

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
add_destroy_notify_callback(void *data, func_destroy_notify func) const sigc::trackable
add_focus_handler(AtkFocusHandler handler)Atk::Component
add_focus_handler_vfunc(AtkFocusHandler handler)Atk::Componentprotectedvirtual
add_interface(GType gtype_implementer)Atk::Componentstatic
Component()Atk::Componentprotected
Component(Component&& src) noexceptAtk::Component
connect_property_changed(const Glib::ustring &property_name, const sigc::slot< void > &slot)Glib::ObjectBase
connect_property_changed_with_return(const Glib::ustring &property_name, const sigc::slot< void > &slot)Glib::ObjectBase
contains(int x, int y, CoordType coord_type) const Atk::Component
contains_vfunc(int x, int y, CoordType coord_type) const Atk::Componentprotectedvirtual
freeze_notify()Glib::ObjectBase
func_destroy_notify typedefsigc::trackable
get_accessible_at_point(int x, int y, CoordType coord_type)Atk::Component
get_accessible_at_point_vfunc(int x, int y, CoordType coord_type)Atk::Componentprotectedvirtual
get_extents(int& x, int& y, int& width, int& height, CoordType coord_type) const Atk::Component
get_extents_vfunc(int& x, int& y, int& width, int& height, CoordType coord_type) const Atk::Componentprotectedvirtual
get_layer() const Atk::Component
get_layer_vfunc() const Atk::Componentprotectedvirtual
get_mdi_zorder() const Atk::Component
get_mdi_zorder_vfunc() const Atk::Componentprotectedvirtual
get_position(int& x, int& y, CoordType coord_type) const Atk::Component
get_position_vfunc(int& x, int& y, CoordType coord_type) const Atk::Componentprotectedvirtual
get_property(const Glib::ustring &property_name, PropertyType &value) const Glib::ObjectBase
get_property_value(const Glib::ustring &property_name, Glib::ValueBase &value) const Glib::ObjectBase
get_size(int& width, int& height) const Atk::Component
get_size_vfunc(int& width, int& height) const Atk::Componentprotectedvirtual
get_type()Atk::Componentstatic
gobj()Atk::Componentinline
gobj() const Atk::Componentinline
gobj_copy() const Glib::ObjectBase
grab_focus()Atk::Component
grab_focus_vfunc()Atk::Componentprotectedvirtual
initialize(GObject *castitem)Glib::ObjectBaseprotected
initialize_move(GObject *castitem, Glib::ObjectBase *previous_wrapper)Glib::ObjectBaseprotected
Interface()Glib::Interface
Interface(Interface &&src) noexceptGlib::Interface
Interface(const Glib::Interface_Class &interface_class)Glib::Interface
Interface(GObject *castitem)Glib::Interface
Interface(const Interface &)=deleteGlib::Interface
notify_callbacks()sigc::trackable
ObjectBase(const ObjectBase &)=deleteGlib::ObjectBase
ObjectBase()Glib::ObjectBaseprotected
ObjectBase(const char *custom_type_name)Glib::ObjectBaseprotected
ObjectBase(const std::type_info &custom_type_info)Glib::ObjectBaseprotected
ObjectBase(ObjectBase &&src) noexceptGlib::ObjectBaseprotected
operator=(Component&& src) noexceptAtk::Component
Glib::Interface::operator=(Interface &&src) noexceptGlib::Interface
Glib::Interface::operator=(const Interface &)=deleteGlib::Interface
Glib::ObjectBase::operator=(const ObjectBase &)=deleteGlib::ObjectBase
Glib::ObjectBase::operator=(ObjectBase &&src) noexceptGlib::ObjectBaseprotected
sigc::trackable::operator=(const trackable &src)sigc::trackable
sigc::trackable::operator=(trackable &&src)sigc::trackable
reference() const Glib::ObjectBasevirtual
remove_destroy_notify_callback(void *data) const sigc::trackable
remove_focus_handler(guint handler_id)Atk::Component
remove_focus_handler_vfunc(guint handler_id)Atk::Componentprotectedvirtual
set_extents(int x, int y, int width, int height, CoordType coord_type)Atk::Component
set_extents_vfunc(int x, int y, int width, int height, CoordType coord_type)Atk::Componentprotectedvirtual
set_position(int x, int y, CoordType coord_type)Atk::Component
set_position_vfunc(int x, int y, CoordType coord_type)Atk::Componentprotectedvirtual
set_property(const Glib::ustring &property_name, const PropertyType &value)Glib::ObjectBase
set_property_value(const Glib::ustring &property_name, const Glib::ValueBase &value)Glib::ObjectBase
set_size(int width, int height)Atk::Component
set_size_vfunc(int width, int height)Atk::Componentprotectedvirtual
thaw_notify()Glib::ObjectBase
trackable() noexceptsigc::trackable
trackable(const trackable &src) noexceptsigc::trackable
trackable(trackable &&src)sigc::trackable
unreference() const Glib::ObjectBasevirtual
wrap(AtkComponent* object, bool take_copy=false)Atk::Componentrelated
~Component() noexceptAtk::Componentvirtual
~Interface() noexceptGlib::Interfacevirtual
~ObjectBase() noexcept=0Glib::ObjectBaseprotectedpure virtual
~trackable()sigc::trackable
- - - - diff -Nru atkmm1.6-2.24.2/doc/reference/html/classAtk_1_1Document.html atkmm1.6-2.28.0/doc/reference/html/classAtk_1_1Document.html --- atkmm1.6-2.24.2/doc/reference/html/classAtk_1_1Document.html 2015-11-29 20:05:33.295311097 +0000 +++ atkmm1.6-2.28.0/doc/reference/html/classAtk_1_1Document.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,620 +0,0 @@ - - - - - - -atkmm: Atk::Document Class Reference - - - - - - -
-
- - - - - - -
-
atkmm -  2.24.2 -
-
-
- - - - - -
- -
- -

The ATK interface which allows access to a DOM associated with on object. - More...

- -

#include <atkmm/document.h>

-
-Inheritance diagram for Atk::Document:
-
-
Inheritance graph
- - -
[legend]
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

-Public Member Functions

 Document (Document&& src) noexcept
 
Documentoperator= (Document&& src) noexcept
 
virtual ~Document () noexcept
 
AtkDocument* gobj ()
 Provides access to the underlying C GObject. More...
 
const AtkDocument* gobj () const
 Provides access to the underlying C GObject. More...
 
Glib::ustring get_document_type () const
 Gets a string indicating the document type. More...
 
gpointer get_document ()
 Gets a gpointer that points to an instance of the DOM. More...
 
Glib::ustring get_attribute_value (const Glib::ustring& attribute_name) const
 
bool set_attribute_value (const Glib::ustring& attribute_name, const Glib::ustring& attribute_value)
 
- Public Member Functions inherited from Glib::Interface
 Interface ()
 
 Interface (Interface &&src) noexcept
 
Interfaceoperator= (Interface &&src) noexcept
 
 Interface (const Glib::Interface_Class &interface_class)
 
 Interface (GObject *castitem)
 
virtual ~Interface () noexcept
 
 Interface (const Interface &)=delete
 
Interfaceoperator= (const Interface &)=delete
 
GObject * gobj ()
 
const GObject * gobj () const
 
- Public Member Functions inherited from Glib::ObjectBase
 ObjectBase (const ObjectBase &)=delete
 
ObjectBaseoperator= (const ObjectBase &)=delete
 
void set_property_value (const Glib::ustring &property_name, const Glib::ValueBase &value)
 
void get_property_value (const Glib::ustring &property_name, Glib::ValueBase &value) const
 
void set_property (const Glib::ustring &property_name, const PropertyType &value)
 
void get_property (const Glib::ustring &property_name, PropertyType &value) const
 
void connect_property_changed (const Glib::ustring &property_name, const sigc::slot< void > &slot)
 
sigc::connection connect_property_changed_with_return (const Glib::ustring &property_name, const sigc::slot< void > &slot)
 
void freeze_notify ()
 
void thaw_notify ()
 
virtual void reference () const
 
virtual void unreference () const
 
GObject * gobj ()
 
const GObject * gobj () const
 
GObject * gobj_copy () const
 
- Public Member Functions inherited from sigc::trackable
 trackable () noexcept
 
 trackable (const trackable &src) noexcept
 
 trackable (trackable &&src)
 
 ~trackable ()
 
void add_destroy_notify_callback (void *data, func_destroy_notify func) const
 
void notify_callbacks ()
 
trackableoperator= (const trackable &src)
 
trackableoperator= (trackable &&src)
 
void remove_destroy_notify_callback (void *data) const
 
- - - - - - -

-Static Public Member Functions

static void add_interface (GType gtype_implementer)
 
static GType get_type ()
 Get the GType for this class, for use with the underlying GObject type system. More...
 
- - - - - - - - - - - - - - - - - - - - - - - - - -

-Protected Member Functions

 Document ()
 You should derive from this class to use it. More...
 
virtual const gchar* get_document_type_vfunc ()
 
virtual gpointer get_document_vfunc () const
 
- Protected Member Functions inherited from Glib::ObjectBase
 ObjectBase ()
 
 ObjectBase (const char *custom_type_name)
 
 ObjectBase (const std::type_info &custom_type_info)
 
 ObjectBase (ObjectBase &&src) noexcept
 
ObjectBaseoperator= (ObjectBase &&src) noexcept
 
virtual ~ObjectBase () noexcept=0
 
void initialize (GObject *castitem)
 
void initialize_move (GObject *castitem, Glib::ObjectBase *previous_wrapper)
 
- - - - - -

-Related Functions

(Note that these are not member functions.)

-
Glib::RefPtr< Atk::Documentwrap (AtkDocument* object, bool take_copy=false)
 A Glib::wrap() method for this object. More...
 
- - - - -

-Additional Inherited Members

- Public Types inherited from sigc::trackable
typedef internal::func_destroy_notify func_destroy_notify
 
-

Detailed Description

-

The ATK interface which allows access to a DOM associated with on object.

-

This interface should be supported by any object that has an associated document object model (DOM). This interface provides the standard mechanism allowing an assistive technology access to the DOM.

-

Constructor & Destructor Documentation

- -
-
- - - - - -
- - - - - - - -
Atk::Document::Document ()
-
-protected
-
- -

You should derive from this class to use it.

- -
-
- -
-
- - - - - -
- - - - - - - - -
Atk::Document::Document (Document&& src)
-
-noexcept
-
- -
-
- -
-
- - - - - -
- - - - - - - -
virtual Atk::Document::~Document ()
-
-virtualnoexcept
-
- -
-
-

Member Function Documentation

- -
-
- - - - - -
- - - - - - - - -
static void Atk::Document::add_interface (GType gtype_implementer)
-
-static
-
- -
-
- -
-
- - - - - - - - -
Glib::ustring Atk::Document::get_attribute_value (const Glib::ustringattribute_name) const
-
-
Since atkmm 1.12:
-
Parameters
- - -
attribute_nameA character string representing the name of the attribute whose value is being queried.
-
-
-
Returns
A string value associated with the named attribute for this document, or nullptr if a value for #attribute_name has not been specified for this document.
- -
-
- -
-
- - - - - - - -
gpointer Atk::Document::get_document ()
-
- -

Gets a gpointer that points to an instance of the DOM.

-

It is up to the caller to check atk_document_get_type to determine how to cast this pointer.

-

Deprecated: Since 2.12. document is already a representation of the document. Use it directly, or one of its children, as an instance of the DOM.

-
Deprecated:
Document is already a representation of the document. Use it directly, or one of its children, as an instance of the DOM.
-
Returns
A gpointer that points to an instance of the DOM.
- -
-
- -
-
- - - - - - - -
Glib::ustring Atk::Document::get_document_type () const
-
- -

Gets a string indicating the document type.

-

Deprecated: Since 2.12. Please use get_attributes() to ask for the document type if it applies.

-
Deprecated:
Please use get_attribute() to ask for the document type if it applies.
-
Returns
A string indicating the document type.
- -
-
- -
-
- - - - - -
- - - - - - - -
virtual const gchar* Atk::Document::get_document_type_vfunc ()
-
-protectedvirtual
-
- -
-
- -
-
- - - - - -
- - - - - - - -
virtual gpointer Atk::Document::get_document_vfunc () const
-
-protectedvirtual
-
- -
-
- -
-
- - - - - -
- - - - - - - -
static GType Atk::Document::get_type ()
-
-static
-
- -

Get the GType for this class, for use with the underlying GObject type system.

- -
-
- -
-
- - - - - -
- - - - - - - -
AtkDocument* Atk::Document::gobj ()
-
-inline
-
- -

Provides access to the underlying C GObject.

- -
-
- -
-
- - - - - -
- - - - - - - -
const AtkDocument* Atk::Document::gobj () const
-
-inline
-
- -

Provides access to the underlying C GObject.

- -
-
- -
-
- - - - - -
- - - - - - - - -
Document& Atk::Document::operator= (Document&& src)
-
-noexcept
-
- -
-
- -
-
- - - - - - - - - - - - - - - - - - -
bool Atk::Document::set_attribute_value (const Glib::ustringattribute_name,
const Glib::ustringattribute_value 
)
-
-
Since atkmm 1.12:
-
Parameters
- - - -
attribute_nameA character string representing the name of the attribute whose value is being set.
attribute_valueA string value to be associated with #attribute_name.
-
-
-
Returns
true if #value is successfully associated with #attribute_name for this document, false otherwise (e.g. if the document does not allow the attribute to be modified).
- -
-
-

Friends And Related Function Documentation

- -
-
- - - - - -
- - - - - - - - - - - - - - - - - - -
Glib::RefPtr< Atk::Document > wrap (AtkDocument * object,
bool take_copy = false 
)
-
-related
-
- -

A Glib::wrap() method for this object.

-
Parameters
- - - -
objectThe C instance.
take_copyFalse if the result should take ownership of the C instance. True if it should take a new copy or ref.
-
-
-
Returns
A C++ instance that wraps this C instance.
- -
-
-
- - - - Binary files /tmp/tmpOzhFOD/5A0TTRaIcC/atkmm1.6-2.24.2/doc/reference/html/classAtk_1_1Document__inherit__graph.png and /tmp/tmpOzhFOD/Bg2TspT7RQ/atkmm1.6-2.28.0/doc/reference/html/classAtk_1_1Document__inherit__graph.png differ diff -Nru atkmm1.6-2.24.2/doc/reference/html/classAtk_1_1Document-members.html atkmm1.6-2.28.0/doc/reference/html/classAtk_1_1Document-members.html --- atkmm1.6-2.24.2/doc/reference/html/classAtk_1_1Document-members.html 2015-11-29 20:05:33.327310488 +0000 +++ atkmm1.6-2.28.0/doc/reference/html/classAtk_1_1Document-members.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,122 +0,0 @@ - - - - - - -atkmm: Member List - - - - - - -
-
- - - - - - -
-
atkmm -  2.24.2 -
-
-
- - - - - -
-
-
-
Atk::Document Member List
-
-
- -

This is the complete list of members for Atk::Document, including all inherited members.

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
add_destroy_notify_callback(void *data, func_destroy_notify func) const sigc::trackable
add_interface(GType gtype_implementer)Atk::Documentstatic
connect_property_changed(const Glib::ustring &property_name, const sigc::slot< void > &slot)Glib::ObjectBase
connect_property_changed_with_return(const Glib::ustring &property_name, const sigc::slot< void > &slot)Glib::ObjectBase
Document()Atk::Documentprotected
Document(Document&& src) noexceptAtk::Document
freeze_notify()Glib::ObjectBase
func_destroy_notify typedefsigc::trackable
get_attribute_value(const Glib::ustring& attribute_name) const Atk::Document
get_document()Atk::Document
get_document_type() const Atk::Document
get_document_type_vfunc()Atk::Documentprotectedvirtual
get_document_vfunc() const Atk::Documentprotectedvirtual
get_property(const Glib::ustring &property_name, PropertyType &value) const Glib::ObjectBase
get_property_value(const Glib::ustring &property_name, Glib::ValueBase &value) const Glib::ObjectBase
get_type()Atk::Documentstatic
gobj()Atk::Documentinline
gobj() const Atk::Documentinline
gobj_copy() const Glib::ObjectBase
initialize(GObject *castitem)Glib::ObjectBaseprotected
initialize_move(GObject *castitem, Glib::ObjectBase *previous_wrapper)Glib::ObjectBaseprotected
Interface()Glib::Interface
Interface(Interface &&src) noexceptGlib::Interface
Interface(const Glib::Interface_Class &interface_class)Glib::Interface
Interface(GObject *castitem)Glib::Interface
Interface(const Interface &)=deleteGlib::Interface
notify_callbacks()sigc::trackable
ObjectBase(const ObjectBase &)=deleteGlib::ObjectBase
ObjectBase()Glib::ObjectBaseprotected
ObjectBase(const char *custom_type_name)Glib::ObjectBaseprotected
ObjectBase(const std::type_info &custom_type_info)Glib::ObjectBaseprotected
ObjectBase(ObjectBase &&src) noexceptGlib::ObjectBaseprotected
operator=(Document&& src) noexceptAtk::Document
Glib::Interface::operator=(Interface &&src) noexceptGlib::Interface
Glib::Interface::operator=(const Interface &)=deleteGlib::Interface
Glib::ObjectBase::operator=(const ObjectBase &)=deleteGlib::ObjectBase
Glib::ObjectBase::operator=(ObjectBase &&src) noexceptGlib::ObjectBaseprotected
sigc::trackable::operator=(const trackable &src)sigc::trackable
sigc::trackable::operator=(trackable &&src)sigc::trackable
reference() const Glib::ObjectBasevirtual
remove_destroy_notify_callback(void *data) const sigc::trackable
set_attribute_value(const Glib::ustring& attribute_name, const Glib::ustring& attribute_value)Atk::Document
set_property(const Glib::ustring &property_name, const PropertyType &value)Glib::ObjectBase
set_property_value(const Glib::ustring &property_name, const Glib::ValueBase &value)Glib::ObjectBase
thaw_notify()Glib::ObjectBase
trackable() noexceptsigc::trackable
trackable(const trackable &src) noexceptsigc::trackable
trackable(trackable &&src)sigc::trackable
unreference() const Glib::ObjectBasevirtual
wrap(AtkDocument* object, bool take_copy=false)Atk::Documentrelated
~Document() noexceptAtk::Documentvirtual
~Interface() noexceptGlib::Interfacevirtual
~ObjectBase() noexcept=0Glib::ObjectBaseprotectedpure virtual
~trackable()sigc::trackable
- - - - diff -Nru atkmm1.6-2.24.2/doc/reference/html/classAtk_1_1EditableText.html atkmm1.6-2.28.0/doc/reference/html/classAtk_1_1EditableText.html --- atkmm1.6-2.24.2/doc/reference/html/classAtk_1_1EditableText.html 2015-11-29 20:05:33.343310184 +0000 +++ atkmm1.6-2.28.0/doc/reference/html/classAtk_1_1EditableText.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,958 +0,0 @@ - - - - - - -atkmm: Atk::EditableText Class Reference - - - - - - -
-
- - - - - - -
-
atkmm -  2.24.2 -
-
-
- - - - - -
- -
- -

#include <atkmm/editabletext.h>

-
-Inheritance diagram for Atk::EditableText:
-
-
Inheritance graph
- - -
[legend]
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

-Public Member Functions

 EditableText (EditableText&& src) noexcept
 
EditableTextoperator= (EditableText&& src) noexcept
 
virtual ~EditableText () noexcept
 
AtkEditableText* gobj ()
 Provides access to the underlying C GObject. More...
 
const AtkEditableText* gobj () const
 Provides access to the underlying C GObject. More...
 
bool set_run_attributes (const AttributeSet& attrib_set, int start_offset, int end_offset)
 Sets the attributes for a specified range. More...
 
void set_text_contents (const Glib::ustring&string)
 Set text contents of text. More...
 
void insert_text (const Glib::ustring&string, int length, int& position)
 Insert text at a given position. More...
 
void copy_text (int start_pos, int end_pos)
 Copy text from start_pos up to, but not including end_pos to the clipboard. More...
 
void cut_text (int start_pos, int end_pos)
 Copy text from start_pos up to, but not including end_pos to the clipboard and then delete from the widget. More...
 
void delete_text (int start_pos, int end_pos)
 Delete text start_pos up to, but not including end_pos. More...
 
void paste_text (int position)
 Paste text from clipboard to specified position. More...
 
- Public Member Functions inherited from Glib::Interface
 Interface ()
 
 Interface (Interface &&src) noexcept
 
Interfaceoperator= (Interface &&src) noexcept
 
 Interface (const Glib::Interface_Class &interface_class)
 
 Interface (GObject *castitem)
 
virtual ~Interface () noexcept
 
 Interface (const Interface &)=delete
 
Interfaceoperator= (const Interface &)=delete
 
GObject * gobj ()
 
const GObject * gobj () const
 
- Public Member Functions inherited from Glib::ObjectBase
 ObjectBase (const ObjectBase &)=delete
 
ObjectBaseoperator= (const ObjectBase &)=delete
 
void set_property_value (const Glib::ustring &property_name, const Glib::ValueBase &value)
 
void get_property_value (const Glib::ustring &property_name, Glib::ValueBase &value) const
 
void set_property (const Glib::ustring &property_name, const PropertyType &value)
 
void get_property (const Glib::ustring &property_name, PropertyType &value) const
 
void connect_property_changed (const Glib::ustring &property_name, const sigc::slot< void > &slot)
 
sigc::connection connect_property_changed_with_return (const Glib::ustring &property_name, const sigc::slot< void > &slot)
 
void freeze_notify ()
 
void thaw_notify ()
 
virtual void reference () const
 
virtual void unreference () const
 
GObject * gobj ()
 
const GObject * gobj () const
 
GObject * gobj_copy () const
 
- Public Member Functions inherited from sigc::trackable
 trackable () noexcept
 
 trackable (const trackable &src) noexcept
 
 trackable (trackable &&src)
 
 ~trackable ()
 
void add_destroy_notify_callback (void *data, func_destroy_notify func) const
 
void notify_callbacks ()
 
trackableoperator= (const trackable &src)
 
trackableoperator= (trackable &&src)
 
void remove_destroy_notify_callback (void *data) const
 
- - - - - - -

-Static Public Member Functions

static void add_interface (GType gtype_implementer)
 
static GType get_type ()
 Get the GType for this class, for use with the underlying GObject type system. More...
 
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

-Protected Member Functions

 EditableText ()
 You should derive from this class to use it. More...
 
virtual bool set_run_attributes_vfunc (AtkAttributeSet* attrib_set, int start_offset, int end_offset)
 
virtual void set_text_contents_vfunc (const Glib::ustring&string)
 
virtual void insert_text_vfunc (const Glib::ustring&string, int length, int& position)
 
virtual void copy_text_vfunc (int start_pos, int end_pos)
 
virtual void cut_text_vfunc (int start_pos, int end_pos)
 
virtual void delete_text_vfunc (int start_pos, int end_pos)
 
virtual void paste_text_vfunc (int position)
 
- Protected Member Functions inherited from Glib::ObjectBase
 ObjectBase ()
 
 ObjectBase (const char *custom_type_name)
 
 ObjectBase (const std::type_info &custom_type_info)
 
 ObjectBase (ObjectBase &&src) noexcept
 
ObjectBaseoperator= (ObjectBase &&src) noexcept
 
virtual ~ObjectBase () noexcept=0
 
void initialize (GObject *castitem)
 
void initialize_move (GObject *castitem, Glib::ObjectBase *previous_wrapper)
 
- - - - - -

-Related Functions

(Note that these are not member functions.)

-
Glib::RefPtr< Atk::EditableTextwrap (AtkEditableText* object, bool take_copy=false)
 A Glib::wrap() method for this object. More...
 
- - - - -

-Additional Inherited Members

- Public Types inherited from sigc::trackable
typedef internal::func_destroy_notify func_destroy_notify
 
-

Constructor & Destructor Documentation

- -
-
- - - - - -
- - - - - - - -
Atk::EditableText::EditableText ()
-
-protected
-
- -

You should derive from this class to use it.

- -
-
- -
-
- - - - - -
- - - - - - - - -
Atk::EditableText::EditableText (EditableText&& src)
-
-noexcept
-
- -
-
- -
-
- - - - - -
- - - - - - - -
virtual Atk::EditableText::~EditableText ()
-
-virtualnoexcept
-
- -
-
-

Member Function Documentation

- -
-
- - - - - -
- - - - - - - - -
static void Atk::EditableText::add_interface (GType gtype_implementer)
-
-static
-
- -
-
- -
-
- - - - - - - - - - - - - - - - - - -
void Atk::EditableText::copy_text (int start_pos,
int end_pos 
)
-
- -

Copy text from start_pos up to, but not including end_pos to the clipboard.

-
Parameters
- - - -
start_posStart position.
end_posEnd position.
-
-
- -
-
- -
-
- - - - - -
- - - - - - - - - - - - - - - - - - -
virtual void Atk::EditableText::copy_text_vfunc (int start_pos,
int end_pos 
)
-
-protectedvirtual
-
- -
-
- -
-
- - - - - - - - - - - - - - - - - - -
void Atk::EditableText::cut_text (int start_pos,
int end_pos 
)
-
- -

Copy text from start_pos up to, but not including end_pos to the clipboard and then delete from the widget.

-
Parameters
- - - -
start_posStart position.
end_posEnd position.
-
-
- -
-
- -
-
- - - - - -
- - - - - - - - - - - - - - - - - - -
virtual void Atk::EditableText::cut_text_vfunc (int start_pos,
int end_pos 
)
-
-protectedvirtual
-
- -
-
- -
-
- - - - - - - - - - - - - - - - - - -
void Atk::EditableText::delete_text (int start_pos,
int end_pos 
)
-
- -

Delete text start_pos up to, but not including end_pos.

-
Parameters
- - - -
start_posStart position.
end_posEnd position.
-
-
- -
-
- -
-
- - - - - -
- - - - - - - - - - - - - - - - - - -
virtual void Atk::EditableText::delete_text_vfunc (int start_pos,
int end_pos 
)
-
-protectedvirtual
-
- -
-
- -
-
- - - - - -
- - - - - - - -
static GType Atk::EditableText::get_type ()
-
-static
-
- -

Get the GType for this class, for use with the underlying GObject type system.

- -
-
- -
-
- - - - - -
- - - - - - - -
AtkEditableText* Atk::EditableText::gobj ()
-
-inline
-
- -

Provides access to the underlying C GObject.

- -
-
- -
-
- - - - - -
- - - - - - - -
const AtkEditableText* Atk::EditableText::gobj () const
-
-inline
-
- -

Provides access to the underlying C GObject.

- -
-
- -
-
- - - - - - - - - - - - - - - - - - - - - - - - -
void Atk::EditableText::insert_text (const Glib::ustringstring,
int length,
int & position 
)
-
- -

Insert text at a given position.

-
Parameters
- - - - -
stringThe text to insert.
lengthThe length of text to insert, in bytes.
positionThe caller initializes this to the position at which to insert the text. After the call it points at the position after the newly inserted text.
-
-
- -
-
- -
-
- - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - -
virtual void Atk::EditableText::insert_text_vfunc (const Glib::ustringstring,
int length,
int & position 
)
-
-protectedvirtual
-
- -
-
- -
-
- - - - - -
- - - - - - - - -
EditableText& Atk::EditableText::operator= (EditableText&& src)
-
-noexcept
-
- -
-
- -
-
- - - - - - - - -
void Atk::EditableText::paste_text (int position)
-
- -

Paste text from clipboard to specified position.

-
Parameters
- - -
positionPosition to paste.
-
-
- -
-
- -
-
- - - - - -
- - - - - - - - -
virtual void Atk::EditableText::paste_text_vfunc (int position)
-
-protectedvirtual
-
- -
-
- -
-
- - - - - - - - - - - - - - - - - - - - - - - - -
bool Atk::EditableText::set_run_attributes (const AttributeSetattrib_set,
int start_offset,
int end_offset 
)
-
- -

Sets the attributes for a specified range.

-

See the ATK_ATTRIBUTE macros (such as Atk::ATTRIBUTE_LEFT_MARGIN) for examples of attributes that can be set. Note that other attributes that do not have corresponding ATK_ATTRIBUTE macros may also be set for certain text widgets.

-
Parameters
- - - - -
attrib_setAn Atk::AttributeSet.
start_offsetStart of range in which to set attributes.
end_offsetEnd of range in which to set attributes.
-
-
-
Returns
true if attributes successfully set for the specified range, otherwise false.
- -
-
- -
-
- - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - -
virtual bool Atk::EditableText::set_run_attributes_vfunc (AtkAttributeSet * attrib_set,
int start_offset,
int end_offset 
)
-
-protectedvirtual
-
- -
-
- -
-
- - - - - - - - -
void Atk::EditableText::set_text_contents (const Glib::ustringstring)
-
- -

Set text contents of text.

-
Parameters
- - -
stringString to set for text contents of text.
-
-
- -
-
- -
-
- - - - - -
- - - - - - - - -
virtual void Atk::EditableText::set_text_contents_vfunc (const Glib::ustringstring)
-
-protectedvirtual
-
- -
-
-

Friends And Related Function Documentation

- -
-
- - - - - -
- - - - - - - - - - - - - - - - - - -
Glib::RefPtr< Atk::EditableText > wrap (AtkEditableText * object,
bool take_copy = false 
)
-
-related
-
- -

A Glib::wrap() method for this object.

-
Parameters
- - - -
objectThe C instance.
take_copyFalse if the result should take ownership of the C instance. True if it should take a new copy or ref.
-
-
-
Returns
A C++ instance that wraps this C instance.
- -
-
-
- - - - Binary files /tmp/tmpOzhFOD/5A0TTRaIcC/atkmm1.6-2.24.2/doc/reference/html/classAtk_1_1EditableText__inherit__graph.png and /tmp/tmpOzhFOD/Bg2TspT7RQ/atkmm1.6-2.28.0/doc/reference/html/classAtk_1_1EditableText__inherit__graph.png differ diff -Nru atkmm1.6-2.24.2/doc/reference/html/classAtk_1_1EditableText-members.html atkmm1.6-2.28.0/doc/reference/html/classAtk_1_1EditableText-members.html --- atkmm1.6-2.24.2/doc/reference/html/classAtk_1_1EditableText-members.html 2015-11-29 20:05:33.327310488 +0000 +++ atkmm1.6-2.28.0/doc/reference/html/classAtk_1_1EditableText-members.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,130 +0,0 @@ - - - - - - -atkmm: Member List - - - - - - -
-
- - - - - - -
-
atkmm -  2.24.2 -
-
-
- - - - - -
-
-
-
Atk::EditableText Member List
-
-
- -

This is the complete list of members for Atk::EditableText, including all inherited members.

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
add_destroy_notify_callback(void *data, func_destroy_notify func) const sigc::trackable
add_interface(GType gtype_implementer)Atk::EditableTextstatic
connect_property_changed(const Glib::ustring &property_name, const sigc::slot< void > &slot)Glib::ObjectBase
connect_property_changed_with_return(const Glib::ustring &property_name, const sigc::slot< void > &slot)Glib::ObjectBase
copy_text(int start_pos, int end_pos)Atk::EditableText
copy_text_vfunc(int start_pos, int end_pos)Atk::EditableTextprotectedvirtual
cut_text(int start_pos, int end_pos)Atk::EditableText
cut_text_vfunc(int start_pos, int end_pos)Atk::EditableTextprotectedvirtual
delete_text(int start_pos, int end_pos)Atk::EditableText
delete_text_vfunc(int start_pos, int end_pos)Atk::EditableTextprotectedvirtual
EditableText()Atk::EditableTextprotected
EditableText(EditableText&& src) noexceptAtk::EditableText
freeze_notify()Glib::ObjectBase
func_destroy_notify typedefsigc::trackable
get_property(const Glib::ustring &property_name, PropertyType &value) const Glib::ObjectBase
get_property_value(const Glib::ustring &property_name, Glib::ValueBase &value) const Glib::ObjectBase
get_type()Atk::EditableTextstatic
gobj()Atk::EditableTextinline
gobj() const Atk::EditableTextinline
gobj_copy() const Glib::ObjectBase
initialize(GObject *castitem)Glib::ObjectBaseprotected
initialize_move(GObject *castitem, Glib::ObjectBase *previous_wrapper)Glib::ObjectBaseprotected
insert_text(const Glib::ustring& string, int length, int& position)Atk::EditableText
insert_text_vfunc(const Glib::ustring& string, int length, int& position)Atk::EditableTextprotectedvirtual
Interface()Glib::Interface
Interface(Interface &&src) noexceptGlib::Interface
Interface(const Glib::Interface_Class &interface_class)Glib::Interface
Interface(GObject *castitem)Glib::Interface
Interface(const Interface &)=deleteGlib::Interface
notify_callbacks()sigc::trackable
ObjectBase(const ObjectBase &)=deleteGlib::ObjectBase
ObjectBase()Glib::ObjectBaseprotected
ObjectBase(const char *custom_type_name)Glib::ObjectBaseprotected
ObjectBase(const std::type_info &custom_type_info)Glib::ObjectBaseprotected
ObjectBase(ObjectBase &&src) noexceptGlib::ObjectBaseprotected
operator=(EditableText&& src) noexceptAtk::EditableText
Glib::Interface::operator=(Interface &&src) noexceptGlib::Interface
Glib::Interface::operator=(const Interface &)=deleteGlib::Interface
Glib::ObjectBase::operator=(const ObjectBase &)=deleteGlib::ObjectBase
Glib::ObjectBase::operator=(ObjectBase &&src) noexceptGlib::ObjectBaseprotected
sigc::trackable::operator=(const trackable &src)sigc::trackable
sigc::trackable::operator=(trackable &&src)sigc::trackable
paste_text(int position)Atk::EditableText
paste_text_vfunc(int position)Atk::EditableTextprotectedvirtual
reference() const Glib::ObjectBasevirtual
remove_destroy_notify_callback(void *data) const sigc::trackable
set_property(const Glib::ustring &property_name, const PropertyType &value)Glib::ObjectBase
set_property_value(const Glib::ustring &property_name, const Glib::ValueBase &value)Glib::ObjectBase
set_run_attributes(const AttributeSet& attrib_set, int start_offset, int end_offset)Atk::EditableText
set_run_attributes_vfunc(AtkAttributeSet* attrib_set, int start_offset, int end_offset)Atk::EditableTextprotectedvirtual
set_text_contents(const Glib::ustring& string)Atk::EditableText
set_text_contents_vfunc(const Glib::ustring& string)Atk::EditableTextprotectedvirtual
thaw_notify()Glib::ObjectBase
trackable() noexceptsigc::trackable
trackable(const trackable &src) noexceptsigc::trackable
trackable(trackable &&src)sigc::trackable
unreference() const Glib::ObjectBasevirtual
wrap(AtkEditableText* object, bool take_copy=false)Atk::EditableTextrelated
~EditableText() noexceptAtk::EditableTextvirtual
~Interface() noexceptGlib::Interfacevirtual
~ObjectBase() noexcept=0Glib::ObjectBaseprotectedpure virtual
~trackable()sigc::trackable
- - - - diff -Nru atkmm1.6-2.24.2/doc/reference/html/classAtk_1_1Hyperlink.html atkmm1.6-2.28.0/doc/reference/html/classAtk_1_1Hyperlink.html --- atkmm1.6-2.24.2/doc/reference/html/classAtk_1_1Hyperlink.html 2015-11-29 20:05:33.351310032 +0000 +++ atkmm1.6-2.28.0/doc/reference/html/classAtk_1_1Hyperlink.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,1046 +0,0 @@ - - - - - - -atkmm: Atk::Hyperlink Class Reference - - - - - - -
-
- - - - - - -
-
atkmm -  2.24.2 -
-
-
- - - - - -
- -
- -

Encapsulates a link or set of links in a hypertext document. - More...

- -

#include <atkmm/hyperlink.h>

-
-Inheritance diagram for Atk::Hyperlink:
-
-
Inheritance graph
- - -
[legend]
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

-Public Member Functions

 Hyperlink (Hyperlink&& src) noexcept
 
Hyperlinkoperator= (Hyperlink&& src) noexcept
 
virtual ~Hyperlink () noexcept
 
AtkHyperlink* gobj ()
 Provides access to the underlying C GObject. More...
 
const AtkHyperlink* gobj () const
 Provides access to the underlying C GObject. More...
 
AtkHyperlink* gobj_copy ()
 Provides access to the underlying C instance. The caller is responsible for unrefing it. Use when directly setting fields in structs. More...
 
Glib::ustring get_uri (int i) const
 Get a the URI associated with the anchor specified by i of link. More...
 
Glib::RefPtr< Atk::Objectget_object (int i)
 Returns the item associated with this hyperlinks nth anchor. More...
 
Glib::RefPtr< const Atk::Objectget_object (int i) const
 Returns the item associated with this hyperlinks nth anchor. More...
 
int get_end_index () const
 Gets the index with the hypertext document at which this link ends. More...
 
int get_start_index () const
 Gets the index with the hypertext document at which this link begins. More...
 
bool is_valid () const
 Since the document that a link is associated with may have changed this method returns true if the link is still valid (with respect to the document it references) and false otherwise. More...
 
bool is_inline () const
 Indicates whether the link currently displays some or all of its content inline. More...
 
int get_n_anchors () const
 Gets the number of anchors associated with this hyperlink. More...
 
Glib::SignalProxy0< void > signal_link_activated ()
 
Glib::PropertyProxy_ReadOnly< bool > property_selected_link () const
 Specifies whether the AtkHyperlink object is selected. More...
 
Glib::PropertyProxy_ReadOnly< int > property_number_of_anchors () const
 The number of anchors associated with the AtkHyperlink object. More...
 
Glib::PropertyProxy_ReadOnly< int > property_end_index () const
 The end index of the AtkHyperlink object. More...
 
Glib::PropertyProxy_ReadOnly< int > property_start_index () const
 The start index of the AtkHyperlink object. More...
 
- Public Member Functions inherited from Glib::Object
 Object (const Object &)=delete
 
Objectoperator= (const Object &)=delete
 
 Object (Object &&src) noexcept
 
Objectoperator= (Object &&src) noexcept
 
void * get_data (const QueryQuark &key)
 
void set_data (const Quark &key, void *data)
 
void set_data (const Quark &key, void *data, DestroyNotify notify)
 
void remove_data (const QueryQuark &quark)
 
void * steal_data (const QueryQuark &quark)
 
Glib::RefPtr< Glib::Objectwrap (GObject *object, bool take_copy=false)
 
- Public Member Functions inherited from Glib::ObjectBase
 ObjectBase (const ObjectBase &)=delete
 
ObjectBaseoperator= (const ObjectBase &)=delete
 
void set_property_value (const Glib::ustring &property_name, const Glib::ValueBase &value)
 
void get_property_value (const Glib::ustring &property_name, Glib::ValueBase &value) const
 
void set_property (const Glib::ustring &property_name, const PropertyType &value)
 
void get_property (const Glib::ustring &property_name, PropertyType &value) const
 
void connect_property_changed (const Glib::ustring &property_name, const sigc::slot< void > &slot)
 
sigc::connection connect_property_changed_with_return (const Glib::ustring &property_name, const sigc::slot< void > &slot)
 
void freeze_notify ()
 
void thaw_notify ()
 
virtual void reference () const
 
virtual void unreference () const
 
GObject * gobj ()
 
const GObject * gobj () const
 
GObject * gobj_copy () const
 
- Public Member Functions inherited from sigc::trackable
 trackable () noexcept
 
 trackable (const trackable &src) noexcept
 
 trackable (trackable &&src)
 
 ~trackable ()
 
void add_destroy_notify_callback (void *data, func_destroy_notify func) const
 
void notify_callbacks ()
 
trackableoperator= (const trackable &src)
 
trackableoperator= (trackable &&src)
 
void remove_destroy_notify_callback (void *data) const
 
- Public Member Functions inherited from Atk::Action
 Action (Action&& src) noexcept
 
Actionoperator= (Action&& src) noexcept
 
virtual ~Action () noexcept
 
AtkAction* gobj ()
 Provides access to the underlying C GObject. More...
 
const AtkAction* gobj () const
 Provides access to the underlying C GObject. More...
 
bool do_action (int i)
 Perform the specified action on the object. More...
 
int get_n_actions () const
 Gets the number of accessible actions available on the object. More...
 
Glib::ustring get_description (int i) const
 Returns a description of the specified action of the object. More...
 
Glib::ustring get_name (int i) const
 Returns the name of the specified action of the object. More...
 
Glib::ustring get_keybinding (int i)
 Returns a keybinding associated with this action, if one exists. More...
 
bool set_description (int i, const Glib::ustring& desc)
 Sets a description of the specified action of the object. More...
 
Glib::ustring get_localized_name (int i)
 Returns the localized name of the specified action of the object. More...
 
- Public Member Functions inherited from Glib::Interface
 Interface ()
 
 Interface (Interface &&src) noexcept
 
Interfaceoperator= (Interface &&src) noexcept
 
 Interface (const Glib::Interface_Class &interface_class)
 
 Interface (GObject *castitem)
 
virtual ~Interface () noexcept
 
 Interface (const Interface &)=delete
 
Interfaceoperator= (const Interface &)=delete
 
GObject * gobj ()
 
const GObject * gobj () const
 
- - - - - - - - - - -

-Static Public Member Functions

static GType get_type ()
 Get the GType for this class, for use with the underlying GObject type system. More...
 
- Static Public Member Functions inherited from Atk::Action
static void add_interface (GType gtype_implementer)
 
static GType get_type ()
 Get the GType for this class, for use with the underlying GObject type system. More...
 
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

-Protected Member Functions

virtual gchar* get_uri_vfunc (int i) const
 
virtual Glib::RefPtr< Atk::Objectget_object_vfunc (int i)
 
virtual int get_end_index_vfunc () const
 
virtual int get_start_index_vfunc () const
 
virtual bool is_valid_vfunc () const
 
virtual int get_n_anchors_vfunc () const
 
virtual guint link_state_vfunc () const
 
virtual bool is_selected_link_vfunc () const
 
virtual void on_link_activated ()
 This is a default handler for the signal signal_link_activated(). More...
 
- Protected Member Functions inherited from Glib::Object
 Object ()
 
 Object (const Glib::ConstructParams &construct_params)
 
 Object (GObject *castitem)
 
virtual ~Object () noexcept
 
- Protected Member Functions inherited from Glib::ObjectBase
 ObjectBase ()
 
 ObjectBase (const char *custom_type_name)
 
 ObjectBase (const std::type_info &custom_type_info)
 
 ObjectBase (ObjectBase &&src) noexcept
 
ObjectBaseoperator= (ObjectBase &&src) noexcept
 
virtual ~ObjectBase () noexcept=0
 
void initialize (GObject *castitem)
 
void initialize_move (GObject *castitem, Glib::ObjectBase *previous_wrapper)
 
- Protected Member Functions inherited from Atk::Action
 Action ()
 You should derive from this class to use it. More...
 
virtual bool do_action_vfunc (int i)
 
virtual int get_n_actions_vfunc () const
 
virtual const char* get_description_vfunc (int i) const
 
virtual const char* get_name_vfunc (int i) const
 
virtual const char* get_keybinding_vfunc (int i) const
 
virtual bool set_description_vfunc (int i, const Glib::ustring& desc)
 
- - - - - - - - - -

-Related Functions

(Note that these are not member functions.)

-
Glib::RefPtr< Atk::Hyperlinkwrap (AtkHyperlink* object, bool take_copy=false)
 A Glib::wrap() method for this object. More...
 
- - - - - - - -

-Additional Inherited Members

- Public Types inherited from Glib::Object
typedef void(* DestroyNotify) (gpointer data)
 
- Public Types inherited from sigc::trackable
typedef internal::func_destroy_notify func_destroy_notify
 
-

Detailed Description

-

Encapsulates a link or set of links in a hypertext document.

-

Constructor & Destructor Documentation

- -
-
- - - - - -
- - - - - - - - -
Atk::Hyperlink::Hyperlink (Hyperlink&& src)
-
-noexcept
-
- -
-
- -
-
- - - - - -
- - - - - - - -
virtual Atk::Hyperlink::~Hyperlink ()
-
-virtualnoexcept
-
- -
-
-

Member Function Documentation

- -
-
- - - - - - - -
int Atk::Hyperlink::get_end_index () const
-
- -

Gets the index with the hypertext document at which this link ends.

-
Returns
The index with the hypertext document at which this link ends.
- -
-
- -
-
- - - - - -
- - - - - - - -
virtual int Atk::Hyperlink::get_end_index_vfunc () const
-
-protectedvirtual
-
- -
-
- -
-
- - - - - - - -
int Atk::Hyperlink::get_n_anchors () const
-
- -

Gets the number of anchors associated with this hyperlink.

-
Returns
The number of anchors associated with this hyperlink.
- -
-
- -
-
- - - - - -
- - - - - - - -
virtual int Atk::Hyperlink::get_n_anchors_vfunc () const
-
-protectedvirtual
-
- -
-
- -
-
- - - - - - - - -
Glib::RefPtr<Atk::Object> Atk::Hyperlink::get_object (int i)
-
- -

Returns the item associated with this hyperlinks nth anchor.

-

For instance, the returned Atk::Object will implement Atk::Text if link is a text hyperlink, Atk::Image if link is an image hyperlink etc.

-

Multiple anchors are primarily used by client-side image maps.

-
Parameters
- - -
iA (zero-index) integer specifying the desired anchor.
-
-
-
Returns
An Atk::Object associated with this hyperlinks i-th anchor.
- -
-
- -
-
- - - - - - - - -
Glib::RefPtr<const Atk::Object> Atk::Hyperlink::get_object (int i) const
-
- -

Returns the item associated with this hyperlinks nth anchor.

-

For instance, the returned Atk::Object will implement Atk::Text if link is a text hyperlink, Atk::Image if link is an image hyperlink etc.

-

Multiple anchors are primarily used by client-side image maps.

-
Parameters
- - -
iA (zero-index) integer specifying the desired anchor.
-
-
-
Returns
An Atk::Object associated with this hyperlinks i-th anchor.
- -
-
- -
-
- - - - - -
- - - - - - - - -
virtual Glib::RefPtr<Atk::Object> Atk::Hyperlink::get_object_vfunc (int i)
-
-protectedvirtual
-
- -
-
- -
-
- - - - - - - -
int Atk::Hyperlink::get_start_index () const
-
- -

Gets the index with the hypertext document at which this link begins.

-
Returns
The index with the hypertext document at which this link begins.
- -
-
- -
-
- - - - - -
- - - - - - - -
virtual int Atk::Hyperlink::get_start_index_vfunc () const
-
-protectedvirtual
-
- -
-
- -
-
- - - - - -
- - - - - - - -
static GType Atk::Hyperlink::get_type ()
-
-static
-
- -

Get the GType for this class, for use with the underlying GObject type system.

- -
-
- -
-
- - - - - - - - -
Glib::ustring Atk::Hyperlink::get_uri (int i) const
-
- -

Get a the URI associated with the anchor specified by i of link.

-

Multiple anchors are primarily used by client-side image maps.

-
Parameters
- - -
iA (zero-index) integer specifying the desired anchor.
-
-
-
Returns
A string specifying the URI.
- -
-
- -
-
- - - - - -
- - - - - - - - -
virtual gchar* Atk::Hyperlink::get_uri_vfunc (int i) const
-
-protectedvirtual
-
- -
-
- -
-
- - - - - -
- - - - - - - -
AtkHyperlink* Atk::Hyperlink::gobj ()
-
-inline
-
- -

Provides access to the underlying C GObject.

- -
-
- -
-
- - - - - -
- - - - - - - -
const AtkHyperlink* Atk::Hyperlink::gobj () const
-
-inline
-
- -

Provides access to the underlying C GObject.

- -
-
- -
-
- - - - - - - -
AtkHyperlink* Atk::Hyperlink::gobj_copy ()
-
- -

Provides access to the underlying C instance. The caller is responsible for unrefing it. Use when directly setting fields in structs.

- -
-
- -
-
- - - - - - - -
bool Atk::Hyperlink::is_inline () const
-
- -

Indicates whether the link currently displays some or all of its content inline.

-

Ordinary HTML links will usually return false, but an inline <src> HTML element will return true.

-
Returns
Whether or not this link displays its content inline.
- -
-
- -
-
- - - - - -
- - - - - - - -
virtual bool Atk::Hyperlink::is_selected_link_vfunc () const
-
-protectedvirtual
-
- -
-
- -
-
- - - - - - - -
bool Atk::Hyperlink::is_valid () const
-
- -

Since the document that a link is associated with may have changed this method returns true if the link is still valid (with respect to the document it references) and false otherwise.

-
Returns
Whether or not this link is still valid.
- -
-
- -
-
- - - - - -
- - - - - - - -
virtual bool Atk::Hyperlink::is_valid_vfunc () const
-
-protectedvirtual
-
- -
-
- -
-
- - - - - -
- - - - - - - -
virtual guint Atk::Hyperlink::link_state_vfunc () const
-
-protectedvirtual
-
- -
-
- -
-
- - - - - -
- - - - - - - -
virtual void Atk::Hyperlink::on_link_activated ()
-
-protectedvirtual
-
- -

This is a default handler for the signal signal_link_activated().

- -
-
- -
-
- - - - - -
- - - - - - - - -
Hyperlink& Atk::Hyperlink::operator= (Hyperlink&& src)
-
-noexcept
-
- -
-
- -
-
- - - - - - - -
Glib::PropertyProxy_ReadOnly< int > Atk::Hyperlink::property_end_index () const
-
- -

The end index of the AtkHyperlink object.

-
Returns
A PropertyProxy_ReadOnly that allows you to get the value of the property, or receive notification when the value of the property changes.
- -
-
- -
-
- - - - - - - -
Glib::PropertyProxy_ReadOnly< int > Atk::Hyperlink::property_number_of_anchors () const
-
- -

The number of anchors associated with the AtkHyperlink object.

-
Returns
A PropertyProxy_ReadOnly that allows you to get the value of the property, or receive notification when the value of the property changes.
- -
-
- -
-
- - - - - - - -
Glib::PropertyProxy_ReadOnly< bool > Atk::Hyperlink::property_selected_link () const
-
- -

Specifies whether the AtkHyperlink object is selected.

-
Returns
A PropertyProxy_ReadOnly that allows you to get the value of the property, or receive notification when the value of the property changes.
- -
-
- -
-
- - - - - - - -
Glib::PropertyProxy_ReadOnly< int > Atk::Hyperlink::property_start_index () const
-
- -

The start index of the AtkHyperlink object.

-
Returns
A PropertyProxy_ReadOnly that allows you to get the value of the property, or receive notification when the value of the property changes.
- -
-
- -
-
- - - - - - - -
Glib::SignalProxy0< void > Atk::Hyperlink::signal_link_activated ()
-
-
Slot Prototype:
void on_my_link_activated()
-

The signal link-activated is emitted when a link is activated.

- -
-
-

Friends And Related Function Documentation

- -
-
- - - - - -
- - - - - - - - - - - - - - - - - - -
Glib::RefPtr< Atk::Hyperlink > wrap (AtkHyperlink * object,
bool take_copy = false 
)
-
-related
-
- -

A Glib::wrap() method for this object.

-
Parameters
- - - -
objectThe C instance.
take_copyFalse if the result should take ownership of the C instance. True if it should take a new copy or ref.
-
-
-
Returns
A C++ instance that wraps this C instance.
- -
-
-
- - - - Binary files /tmp/tmpOzhFOD/5A0TTRaIcC/atkmm1.6-2.24.2/doc/reference/html/classAtk_1_1Hyperlink__inherit__graph.png and /tmp/tmpOzhFOD/Bg2TspT7RQ/atkmm1.6-2.28.0/doc/reference/html/classAtk_1_1Hyperlink__inherit__graph.png differ diff -Nru atkmm1.6-2.24.2/doc/reference/html/classAtk_1_1Hyperlink-members.html atkmm1.6-2.28.0/doc/reference/html/classAtk_1_1Hyperlink-members.html --- atkmm1.6-2.24.2/doc/reference/html/classAtk_1_1Hyperlink-members.html 2015-11-29 20:05:33.279311401 +0000 +++ atkmm1.6-2.28.0/doc/reference/html/classAtk_1_1Hyperlink-members.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,171 +0,0 @@ - - - - - - -atkmm: Member List - - - - - - -
-
- - - - - - -
-
atkmm -  2.24.2 -
-
-
- - - - - -
-
-
-
Atk::Hyperlink Member List
-
-
- -

This is the complete list of members for Atk::Hyperlink, including all inherited members.

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Action()Atk::Actionprotected
Action(Action&& src) noexceptAtk::Action
add_destroy_notify_callback(void *data, func_destroy_notify func) const sigc::trackable
add_interface(GType gtype_implementer)Atk::Actionstatic
connect_property_changed(const Glib::ustring &property_name, const sigc::slot< void > &slot)Glib::ObjectBase
connect_property_changed_with_return(const Glib::ustring &property_name, const sigc::slot< void > &slot)Glib::ObjectBase
DestroyNotify typedefGlib::Object
do_action(int i)Atk::Action
do_action_vfunc(int i)Atk::Actionprotectedvirtual
freeze_notify()Glib::ObjectBase
func_destroy_notify typedefsigc::trackable
get_data(const QueryQuark &key)Glib::Object
get_description(int i) const Atk::Action
get_description_vfunc(int i) const Atk::Actionprotectedvirtual
get_end_index() const Atk::Hyperlink
get_end_index_vfunc() const Atk::Hyperlinkprotectedvirtual
get_keybinding(int i)Atk::Action
get_keybinding_vfunc(int i) const Atk::Actionprotectedvirtual
get_localized_name(int i)Atk::Action
get_n_actions() const Atk::Action
get_n_actions_vfunc() const Atk::Actionprotectedvirtual
get_n_anchors() const Atk::Hyperlink
get_n_anchors_vfunc() const Atk::Hyperlinkprotectedvirtual
get_name(int i) const Atk::Action
get_name_vfunc(int i) const Atk::Actionprotectedvirtual
get_object(int i)Atk::Hyperlink
get_object(int i) const Atk::Hyperlink
get_object_vfunc(int i)Atk::Hyperlinkprotectedvirtual
get_property(const Glib::ustring &property_name, PropertyType &value) const Glib::ObjectBase
get_property_value(const Glib::ustring &property_name, Glib::ValueBase &value) const Glib::ObjectBase
get_start_index() const Atk::Hyperlink
get_start_index_vfunc() const Atk::Hyperlinkprotectedvirtual
get_type()Atk::Hyperlinkstatic
get_uri(int i) const Atk::Hyperlink
get_uri_vfunc(int i) const Atk::Hyperlinkprotectedvirtual
gobj()Atk::Hyperlinkinline
gobj() const Atk::Hyperlinkinline
gobj_copy()Atk::Hyperlink
Glib::Object::gobj_copy() const Glib::ObjectBase
Hyperlink(Hyperlink&& src) noexceptAtk::Hyperlink
initialize(GObject *castitem)Glib::ObjectBaseprotected
initialize_move(GObject *castitem, Glib::ObjectBase *previous_wrapper)Glib::ObjectBaseprotected
Interface()Glib::Interface
Interface(Interface &&src) noexceptGlib::Interface
Interface(const Glib::Interface_Class &interface_class)Glib::Interface
Interface(GObject *castitem)Glib::Interface
Interface(const Interface &)=deleteGlib::Interface
is_inline() const Atk::Hyperlink
is_selected_link_vfunc() const Atk::Hyperlinkprotectedvirtual
is_valid() const Atk::Hyperlink
is_valid_vfunc() const Atk::Hyperlinkprotectedvirtual
link_state_vfunc() const Atk::Hyperlinkprotectedvirtual
notify_callbacks()sigc::trackable
Object(const Object &)=deleteGlib::Object
Object(Object &&src) noexceptGlib::Object
Object()Glib::Objectprotected
Object(const Glib::ConstructParams &construct_params)Glib::Objectprotected
Object(GObject *castitem)Glib::Objectprotected
ObjectBase(const ObjectBase &)=deleteGlib::ObjectBase
ObjectBase()Glib::ObjectBaseprotected
ObjectBase(const char *custom_type_name)Glib::ObjectBaseprotected
ObjectBase(const std::type_info &custom_type_info)Glib::ObjectBaseprotected
ObjectBase(ObjectBase &&src) noexceptGlib::ObjectBaseprotected
on_link_activated()Atk::Hyperlinkprotectedvirtual
operator=(Hyperlink&& src) noexceptAtk::Hyperlink
Glib::Object::operator=(const Object &)=deleteGlib::Object
Glib::Object::operator=(Object &&src) noexceptGlib::Object
Glib::ObjectBase::operator=(const ObjectBase &)=deleteGlib::ObjectBase
Glib::ObjectBase::operator=(ObjectBase &&src) noexceptGlib::ObjectBaseprotected
Glib::sigc::trackable::operator=(const trackable &src)sigc::trackable
Glib::sigc::trackable::operator=(trackable &&src)sigc::trackable
Atk::Action::operator=(Action&& src) noexceptAtk::Action
Glib::Interface::operator=(Interface &&src) noexceptGlib::Interface
Glib::Interface::operator=(const Interface &)=deleteGlib::Interface
property_end_index() const Atk::Hyperlink
property_number_of_anchors() const Atk::Hyperlink
property_selected_link() const Atk::Hyperlink
property_start_index() const Atk::Hyperlink
reference() const Glib::ObjectBasevirtual
remove_data(const QueryQuark &quark)Glib::Object
remove_destroy_notify_callback(void *data) const sigc::trackable
set_data(const Quark &key, void *data)Glib::Object
set_data(const Quark &key, void *data, DestroyNotify notify)Glib::Object
set_description(int i, const Glib::ustring& desc)Atk::Action
set_description_vfunc(int i, const Glib::ustring& desc)Atk::Actionprotectedvirtual
set_property(const Glib::ustring &property_name, const PropertyType &value)Glib::ObjectBase
set_property_value(const Glib::ustring &property_name, const Glib::ValueBase &value)Glib::ObjectBase
signal_link_activated()Atk::Hyperlink
steal_data(const QueryQuark &quark)Glib::Object
thaw_notify()Glib::ObjectBase
trackable() noexceptsigc::trackable
trackable(const trackable &src) noexceptsigc::trackable
trackable(trackable &&src)sigc::trackable
unreference() const Glib::ObjectBasevirtual
wrap(AtkHyperlink* object, bool take_copy=false)Atk::Hyperlinkrelated
Glib::Object::wrap(GObject *object, bool take_copy=false)Glib::Object
Atk::Action::wrap(AtkAction* object, bool take_copy=false)Atk::Actionrelated
~Action() noexceptAtk::Actionvirtual
~Hyperlink() noexceptAtk::Hyperlinkvirtual
~Interface() noexceptGlib::Interfacevirtual
~Object() noexceptGlib::Objectprotectedvirtual
~ObjectBase() noexcept=0Glib::ObjectBaseprotectedpure virtual
~trackable()sigc::trackable
- - - - diff -Nru atkmm1.6-2.24.2/doc/reference/html/classAtk_1_1Hypertext.html atkmm1.6-2.28.0/doc/reference/html/classAtk_1_1Hypertext.html --- atkmm1.6-2.24.2/doc/reference/html/classAtk_1_1Hypertext.html 2015-11-29 20:05:33.295311097 +0000 +++ atkmm1.6-2.28.0/doc/reference/html/classAtk_1_1Hypertext.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,690 +0,0 @@ - - - - - - -atkmm: Atk::Hypertext Class Reference - - - - - - -
-
- - - - - - -
-
atkmm -  2.24.2 -
-
-
- - - - - -
- -
- -

#include <atkmm/hypertext.h>

-
-Inheritance diagram for Atk::Hypertext:
-
-
Inheritance graph
- - -
[legend]
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

-Public Member Functions

 Hypertext (Hypertext&& src) noexcept
 
Hypertextoperator= (Hypertext&& src) noexcept
 
virtual ~Hypertext () noexcept
 
AtkHypertext* gobj ()
 Provides access to the underlying C GObject. More...
 
const AtkHypertext* gobj () const
 Provides access to the underlying C GObject. More...
 
Glib::RefPtr< Hyperlinkget_link (int link_index)
 Gets the link in this hypertext document at index link_index. More...
 
Glib::RefPtr< const Hyperlinkget_link (int link_index) const
 Gets the link in this hypertext document at index link_index. More...
 
int get_n_links () const
 Gets the number of links within this hypertext document. More...
 
int get_link_index (int char_index) const
 Gets the index into the array of hyperlinks that is associated with the character specified by char_index. More...
 
Glib::SignalProxy1< void, int > signal_link_selected ()
 
virtual Glib::RefPtr< Hyperlinkget_link_vfunc (int link_index)
 
virtual int get_n_links_vfunc () const
 
virtual int get_link_index_vfunc (int char_index) const
 
- Public Member Functions inherited from Glib::Interface
 Interface ()
 
 Interface (Interface &&src) noexcept
 
Interfaceoperator= (Interface &&src) noexcept
 
 Interface (const Glib::Interface_Class &interface_class)
 
 Interface (GObject *castitem)
 
virtual ~Interface () noexcept
 
 Interface (const Interface &)=delete
 
Interfaceoperator= (const Interface &)=delete
 
GObject * gobj ()
 
const GObject * gobj () const
 
- Public Member Functions inherited from Glib::ObjectBase
 ObjectBase (const ObjectBase &)=delete
 
ObjectBaseoperator= (const ObjectBase &)=delete
 
void set_property_value (const Glib::ustring &property_name, const Glib::ValueBase &value)
 
void get_property_value (const Glib::ustring &property_name, Glib::ValueBase &value) const
 
void set_property (const Glib::ustring &property_name, const PropertyType &value)
 
void get_property (const Glib::ustring &property_name, PropertyType &value) const
 
void connect_property_changed (const Glib::ustring &property_name, const sigc::slot< void > &slot)
 
sigc::connection connect_property_changed_with_return (const Glib::ustring &property_name, const sigc::slot< void > &slot)
 
void freeze_notify ()
 
void thaw_notify ()
 
virtual void reference () const
 
virtual void unreference () const
 
GObject * gobj ()
 
const GObject * gobj () const
 
GObject * gobj_copy () const
 
- Public Member Functions inherited from sigc::trackable
 trackable () noexcept
 
 trackable (const trackable &src) noexcept
 
 trackable (trackable &&src)
 
 ~trackable ()
 
void add_destroy_notify_callback (void *data, func_destroy_notify func) const
 
void notify_callbacks ()
 
trackableoperator= (const trackable &src)
 
trackableoperator= (trackable &&src)
 
void remove_destroy_notify_callback (void *data) const
 
- - - - - - -

-Static Public Member Functions

static void add_interface (GType gtype_implementer)
 
static GType get_type ()
 Get the GType for this class, for use with the underlying GObject type system. More...
 
- - - - - - - - - - - - - - - - - - - - - - - - -

-Protected Member Functions

 Hypertext ()
 You should derive from this class to use it. More...
 
virtual void on_link_selected (int link_index)
 This is a default handler for the signal signal_link_selected(). More...
 
- Protected Member Functions inherited from Glib::ObjectBase
 ObjectBase ()
 
 ObjectBase (const char *custom_type_name)
 
 ObjectBase (const std::type_info &custom_type_info)
 
 ObjectBase (ObjectBase &&src) noexcept
 
ObjectBaseoperator= (ObjectBase &&src) noexcept
 
virtual ~ObjectBase () noexcept=0
 
void initialize (GObject *castitem)
 
void initialize_move (GObject *castitem, Glib::ObjectBase *previous_wrapper)
 
- - - - - -

-Related Functions

(Note that these are not member functions.)

-
Glib::RefPtr< Atk::Hypertextwrap (AtkHypertext* object, bool take_copy=false)
 A Glib::wrap() method for this object. More...
 
- - - - -

-Additional Inherited Members

- Public Types inherited from sigc::trackable
typedef internal::func_destroy_notify func_destroy_notify
 
-

Constructor & Destructor Documentation

- -
-
- - - - - -
- - - - - - - -
Atk::Hypertext::Hypertext ()
-
-protected
-
- -

You should derive from this class to use it.

- -
-
- -
-
- - - - - -
- - - - - - - - -
Atk::Hypertext::Hypertext (Hypertext&& src)
-
-noexcept
-
- -
-
- -
-
- - - - - -
- - - - - - - -
virtual Atk::Hypertext::~Hypertext ()
-
-virtualnoexcept
-
- -
-
-

Member Function Documentation

- -
-
- - - - - -
- - - - - - - - -
static void Atk::Hypertext::add_interface (GType gtype_implementer)
-
-static
-
- -
-
- -
-
- - - - - - - - -
Glib::RefPtr<Hyperlink> Atk::Hypertext::get_link (int link_index)
-
- -

Gets the link in this hypertext document at index link_index.

-
Parameters
- - -
link_indexAn integer specifying the desired link.
-
-
-
Returns
The link in this hypertext document at index link_index.
- -
-
- -
-
- - - - - - - - -
Glib::RefPtr<const Hyperlink> Atk::Hypertext::get_link (int link_index) const
-
- -

Gets the link in this hypertext document at index link_index.

-
Parameters
- - -
link_indexAn integer specifying the desired link.
-
-
-
Returns
The link in this hypertext document at index link_index.
- -
-
- -
-
- - - - - - - - -
int Atk::Hypertext::get_link_index (int char_index) const
-
- -

Gets the index into the array of hyperlinks that is associated with the character specified by char_index.

-
Parameters
- - -
char_indexA character index.
-
-
-
Returns
An index into the array of hyperlinks in hypertext, or -1 if there is no hyperlink associated with this character.
- -
-
- -
-
- - - - - -
- - - - - - - - -
virtual int Atk::Hypertext::get_link_index_vfunc (int char_index) const
-
-virtual
-
- -
-
- -
-
- - - - - -
- - - - - - - - -
virtual Glib::RefPtr<Hyperlink> Atk::Hypertext::get_link_vfunc (int link_index)
-
-virtual
-
- -
-
- -
-
- - - - - - - -
int Atk::Hypertext::get_n_links () const
-
- -

Gets the number of links within this hypertext document.

-
Returns
The number of links within this hypertext document.
- -
-
- -
-
- - - - - -
- - - - - - - -
virtual int Atk::Hypertext::get_n_links_vfunc () const
-
-virtual
-
- -
-
- -
-
- - - - - -
- - - - - - - -
static GType Atk::Hypertext::get_type ()
-
-static
-
- -

Get the GType for this class, for use with the underlying GObject type system.

- -
-
- -
-
- - - - - -
- - - - - - - -
AtkHypertext* Atk::Hypertext::gobj ()
-
-inline
-
- -

Provides access to the underlying C GObject.

- -
-
- -
-
- - - - - -
- - - - - - - -
const AtkHypertext* Atk::Hypertext::gobj () const
-
-inline
-
- -

Provides access to the underlying C GObject.

- -
-
- -
-
- - - - - -
- - - - - - - - -
virtual void Atk::Hypertext::on_link_selected (int link_index)
-
-protectedvirtual
-
- -

This is a default handler for the signal signal_link_selected().

- -
-
- -
-
- - - - - -
- - - - - - - - -
Hypertext& Atk::Hypertext::operator= (Hypertext&& src)
-
-noexcept
-
- -
-
- -
-
- - - - - - - -
Glib::SignalProxy1< void,int > Atk::Hypertext::signal_link_selected ()
-
-
Slot Prototype:
void on_my_link_selected(int link_index)
-

The "link-selected" signal is emitted by an AtkHyperText object when one of the hyperlinks associated with the object is selected.

-
Parameters
- - -
link_indexThe index of the hyperlink which is selected.
-
-
- -
-
-

Friends And Related Function Documentation

- -
-
- - - - - -
- - - - - - - - - - - - - - - - - - -
Glib::RefPtr< Atk::Hypertext > wrap (AtkHypertext * object,
bool take_copy = false 
)
-
-related
-
- -

A Glib::wrap() method for this object.

-
Parameters
- - - -
objectThe C instance.
take_copyFalse if the result should take ownership of the C instance. True if it should take a new copy or ref.
-
-
-
Returns
A C++ instance that wraps this C instance.
- -
-
-
- - - - Binary files /tmp/tmpOzhFOD/5A0TTRaIcC/atkmm1.6-2.24.2/doc/reference/html/classAtk_1_1Hypertext__inherit__graph.png and /tmp/tmpOzhFOD/Bg2TspT7RQ/atkmm1.6-2.28.0/doc/reference/html/classAtk_1_1Hypertext__inherit__graph.png differ diff -Nru atkmm1.6-2.24.2/doc/reference/html/classAtk_1_1Hypertext-members.html atkmm1.6-2.28.0/doc/reference/html/classAtk_1_1Hypertext-members.html --- atkmm1.6-2.24.2/doc/reference/html/classAtk_1_1Hypertext-members.html 2015-11-29 20:05:33.287311249 +0000 +++ atkmm1.6-2.28.0/doc/reference/html/classAtk_1_1Hypertext-members.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,125 +0,0 @@ - - - - - - -atkmm: Member List - - - - - - -
-
- - - - - - -
-
atkmm -  2.24.2 -
-
-
- - - - - -
-
-
-
Atk::Hypertext Member List
-
-
- -

This is the complete list of members for Atk::Hypertext, including all inherited members.

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
add_destroy_notify_callback(void *data, func_destroy_notify func) const sigc::trackable
add_interface(GType gtype_implementer)Atk::Hypertextstatic
connect_property_changed(const Glib::ustring &property_name, const sigc::slot< void > &slot)Glib::ObjectBase
connect_property_changed_with_return(const Glib::ustring &property_name, const sigc::slot< void > &slot)Glib::ObjectBase
freeze_notify()Glib::ObjectBase
func_destroy_notify typedefsigc::trackable
get_link(int link_index)Atk::Hypertext
get_link(int link_index) const Atk::Hypertext
get_link_index(int char_index) const Atk::Hypertext
get_link_index_vfunc(int char_index) const Atk::Hypertextvirtual
get_link_vfunc(int link_index)Atk::Hypertextvirtual
get_n_links() const Atk::Hypertext
get_n_links_vfunc() const Atk::Hypertextvirtual
get_property(const Glib::ustring &property_name, PropertyType &value) const Glib::ObjectBase
get_property_value(const Glib::ustring &property_name, Glib::ValueBase &value) const Glib::ObjectBase
get_type()Atk::Hypertextstatic
gobj()Atk::Hypertextinline
gobj() const Atk::Hypertextinline
gobj_copy() const Glib::ObjectBase
Hypertext()Atk::Hypertextprotected
Hypertext(Hypertext&& src) noexceptAtk::Hypertext
initialize(GObject *castitem)Glib::ObjectBaseprotected
initialize_move(GObject *castitem, Glib::ObjectBase *previous_wrapper)Glib::ObjectBaseprotected
Interface()Glib::Interface
Interface(Interface &&src) noexceptGlib::Interface
Interface(const Glib::Interface_Class &interface_class)Glib::Interface
Interface(GObject *castitem)Glib::Interface
Interface(const Interface &)=deleteGlib::Interface
notify_callbacks()sigc::trackable
ObjectBase(const ObjectBase &)=deleteGlib::ObjectBase
ObjectBase()Glib::ObjectBaseprotected
ObjectBase(const char *custom_type_name)Glib::ObjectBaseprotected
ObjectBase(const std::type_info &custom_type_info)Glib::ObjectBaseprotected
ObjectBase(ObjectBase &&src) noexceptGlib::ObjectBaseprotected
on_link_selected(int link_index)Atk::Hypertextprotectedvirtual
operator=(Hypertext&& src) noexceptAtk::Hypertext
Glib::Interface::operator=(Interface &&src) noexceptGlib::Interface
Glib::Interface::operator=(const Interface &)=deleteGlib::Interface
Glib::ObjectBase::operator=(const ObjectBase &)=deleteGlib::ObjectBase
Glib::ObjectBase::operator=(ObjectBase &&src) noexceptGlib::ObjectBaseprotected
sigc::trackable::operator=(const trackable &src)sigc::trackable
sigc::trackable::operator=(trackable &&src)sigc::trackable
reference() const Glib::ObjectBasevirtual
remove_destroy_notify_callback(void *data) const sigc::trackable
set_property(const Glib::ustring &property_name, const PropertyType &value)Glib::ObjectBase
set_property_value(const Glib::ustring &property_name, const Glib::ValueBase &value)Glib::ObjectBase
signal_link_selected()Atk::Hypertext
thaw_notify()Glib::ObjectBase
trackable() noexceptsigc::trackable
trackable(const trackable &src) noexceptsigc::trackable
trackable(trackable &&src)sigc::trackable
unreference() const Glib::ObjectBasevirtual
wrap(AtkHypertext* object, bool take_copy=false)Atk::Hypertextrelated
~Hypertext() noexceptAtk::Hypertextvirtual
~Interface() noexceptGlib::Interfacevirtual
~ObjectBase() noexcept=0Glib::ObjectBaseprotectedpure virtual
~trackable()sigc::trackable
- - - - diff -Nru atkmm1.6-2.24.2/doc/reference/html/classAtk_1_1Image.html atkmm1.6-2.28.0/doc/reference/html/classAtk_1_1Image.html --- atkmm1.6-2.24.2/doc/reference/html/classAtk_1_1Image.html 2015-11-29 20:05:33.303310945 +0000 +++ atkmm1.6-2.28.0/doc/reference/html/classAtk_1_1Image.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,723 +0,0 @@ - - - - - - -atkmm: Atk::Image Class Reference - - - - - - -
-
- - - - - - -
-
atkmm -  2.24.2 -
-
-
- - - - - -
- -
- -

The ATK Interface implemented by components which expose image or pixmap content on-screen. - More...

- -

#include <atkmm/image.h>

-
-Inheritance diagram for Atk::Image:
-
-
Inheritance graph
- - -
[legend]
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

-Public Member Functions

 Image (Image&& src) noexcept
 
Imageoperator= (Image&& src) noexcept
 
virtual ~Image () noexcept
 
AtkImage* gobj ()
 Provides access to the underlying C GObject. More...
 
const AtkImage* gobj () const
 Provides access to the underlying C GObject. More...
 
bool set_image_description (const Glib::ustring& description)
 Sets the textual description for this image. More...
 
Glib::ustring get_image_description () const
 Get a textual description of this image. More...
 
void get_image_size (int& width, int& height) const
 Get the width and height in pixels for the specified image. More...
 
void get_image_position (int& x, int& y, CoordType coord_type) const
 Gets the position of the image in the form of a point specifying the images top-left corner. More...
 
- Public Member Functions inherited from Glib::Interface
 Interface ()
 
 Interface (Interface &&src) noexcept
 
Interfaceoperator= (Interface &&src) noexcept
 
 Interface (const Glib::Interface_Class &interface_class)
 
 Interface (GObject *castitem)
 
virtual ~Interface () noexcept
 
 Interface (const Interface &)=delete
 
Interfaceoperator= (const Interface &)=delete
 
GObject * gobj ()
 
const GObject * gobj () const
 
- Public Member Functions inherited from Glib::ObjectBase
 ObjectBase (const ObjectBase &)=delete
 
ObjectBaseoperator= (const ObjectBase &)=delete
 
void set_property_value (const Glib::ustring &property_name, const Glib::ValueBase &value)
 
void get_property_value (const Glib::ustring &property_name, Glib::ValueBase &value) const
 
void set_property (const Glib::ustring &property_name, const PropertyType &value)
 
void get_property (const Glib::ustring &property_name, PropertyType &value) const
 
void connect_property_changed (const Glib::ustring &property_name, const sigc::slot< void > &slot)
 
sigc::connection connect_property_changed_with_return (const Glib::ustring &property_name, const sigc::slot< void > &slot)
 
void freeze_notify ()
 
void thaw_notify ()
 
virtual void reference () const
 
virtual void unreference () const
 
GObject * gobj ()
 
const GObject * gobj () const
 
GObject * gobj_copy () const
 
- Public Member Functions inherited from sigc::trackable
 trackable () noexcept
 
 trackable (const trackable &src) noexcept
 
 trackable (trackable &&src)
 
 ~trackable ()
 
void add_destroy_notify_callback (void *data, func_destroy_notify func) const
 
void notify_callbacks ()
 
trackableoperator= (const trackable &src)
 
trackableoperator= (trackable &&src)
 
void remove_destroy_notify_callback (void *data) const
 
- - - - - - -

-Static Public Member Functions

static void add_interface (GType gtype_implementer)
 
static GType get_type ()
 Get the GType for this class, for use with the underlying GObject type system. More...
 
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

-Protected Member Functions

 Image ()
 You should derive from this class to use it. More...
 
virtual bool set_image_description_vfunc (const Glib::ustring& description)
 
virtual const char* get_image_description_vfunc () const
 
virtual void get_image_position_vfunc (int& x, int& y, CoordType coord_type) const
 
virtual void get_image_size_vfunc (int& width, int& height) const
 
- Protected Member Functions inherited from Glib::ObjectBase
 ObjectBase ()
 
 ObjectBase (const char *custom_type_name)
 
 ObjectBase (const std::type_info &custom_type_info)
 
 ObjectBase (ObjectBase &&src) noexcept
 
ObjectBaseoperator= (ObjectBase &&src) noexcept
 
virtual ~ObjectBase () noexcept=0
 
void initialize (GObject *castitem)
 
void initialize_move (GObject *castitem, Glib::ObjectBase *previous_wrapper)
 
- - - - - -

-Related Functions

(Note that these are not member functions.)

-
Glib::RefPtr< Atk::Imagewrap (AtkImage* object, bool take_copy=false)
 A Glib::wrap() method for this object. More...
 
- - - - -

-Additional Inherited Members

- Public Types inherited from sigc::trackable
typedef internal::func_destroy_notify func_destroy_notify
 
-

Detailed Description

-

The ATK Interface implemented by components which expose image or pixmap content on-screen.

-

This should be implemented by Atk::Object subtypes on behalf of components which display image/pixmap information onscreen, and which provide information (other than just widget borders, etc.) via that image content. For instance, icons, buttons with icons, toolbar elements, and image viewing panes typically should implement AtkImage.

-

Atk::Image primarily provides two types of information: coordinate information (useful for screen review mode of screenreaders, and for use by onscreen magnifiers), and descriptive information. The descriptive information is provided for alternative, text-only presentation of the most significant information present in the image.

-

Constructor & Destructor Documentation

- -
-
- - - - - -
- - - - - - - -
Atk::Image::Image ()
-
-protected
-
- -

You should derive from this class to use it.

- -
-
- -
-
- - - - - -
- - - - - - - - -
Atk::Image::Image (Image&& src)
-
-noexcept
-
- -
-
- -
-
- - - - - -
- - - - - - - -
virtual Atk::Image::~Image ()
-
-virtualnoexcept
-
- -
-
-

Member Function Documentation

- -
-
- - - - - -
- - - - - - - - -
static void Atk::Image::add_interface (GType gtype_implementer)
-
-static
-
- -
-
- -
-
- - - - - - - -
Glib::ustring Atk::Image::get_image_description () const
-
- -

Get a textual description of this image.

-
Returns
A string representing the image description.
- -
-
- -
-
- - - - - -
- - - - - - - -
virtual const char* Atk::Image::get_image_description_vfunc () const
-
-protectedvirtual
-
- -
-
- -
-
- - - - - - - - - - - - - - - - - - - - - - - - -
void Atk::Image::get_image_position (int & x,
int & y,
CoordType coord_type 
) const
-
- -

Gets the position of the image in the form of a point specifying the images top-left corner.

-
Parameters
- - - - -
xAddress of int to put x coordinate position; otherwise, -1 if value cannot be obtained.
yAddress of int to put y coordinate position; otherwise, -1 if value cannot be obtained.
coord_typeSpecifies whether the coordinates are relative to the screen or to the components top level window.
-
-
- -
-
- -
-
- - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - -
virtual void Atk::Image::get_image_position_vfunc (int & x,
int & y,
CoordType coord_type 
) const
-
-protectedvirtual
-
- -
-
- -
-
- - - - - - - - - - - - - - - - - - -
void Atk::Image::get_image_size (int & width,
int & height 
) const
-
- -

Get the width and height in pixels for the specified image.

-

The values of width and height are returned as -1 if the values cannot be obtained (for instance, if the object is not onscreen).

-
Parameters
- - - -
widthFilled with the image width, or -1 if the value cannot be obtained.
heightFilled with the image height, or -1 if the value cannot be obtained.
-
-
- -
-
- -
-
- - - - - -
- - - - - - - - - - - - - - - - - - -
virtual void Atk::Image::get_image_size_vfunc (int & width,
int & height 
) const
-
-protectedvirtual
-
- -
-
- -
-
- - - - - -
- - - - - - - -
static GType Atk::Image::get_type ()
-
-static
-
- -

Get the GType for this class, for use with the underlying GObject type system.

- -
-
- -
-
- - - - - -
- - - - - - - -
AtkImage* Atk::Image::gobj ()
-
-inline
-
- -

Provides access to the underlying C GObject.

- -
-
- -
-
- - - - - -
- - - - - - - -
const AtkImage* Atk::Image::gobj () const
-
-inline
-
- -

Provides access to the underlying C GObject.

- -
-
- -
-
- - - - - -
- - - - - - - - -
Image& Atk::Image::operator= (Image&& src)
-
-noexcept
-
- -
-
- -
-
- - - - - - - - -
bool Atk::Image::set_image_description (const Glib::ustringdescription)
-
- -

Sets the textual description for this image.

-
Parameters
- - -
descriptionA string description to set for image.
-
-
-
Returns
Boolean true, or false if operation could not be completed.
- -
-
- -
-
- - - - - -
- - - - - - - - -
virtual bool Atk::Image::set_image_description_vfunc (const Glib::ustringdescription)
-
-protectedvirtual
-
- -
-
-

Friends And Related Function Documentation

- -
-
- - - - - -
- - - - - - - - - - - - - - - - - - -
Glib::RefPtr< Atk::Image > wrap (AtkImage * object,
bool take_copy = false 
)
-
-related
-
- -

A Glib::wrap() method for this object.

-
Parameters
- - - -
objectThe C instance.
take_copyFalse if the result should take ownership of the C instance. True if it should take a new copy or ref.
-
-
-
Returns
A C++ instance that wraps this C instance.
- -
-
-
- - - - Binary files /tmp/tmpOzhFOD/5A0TTRaIcC/atkmm1.6-2.24.2/doc/reference/html/classAtk_1_1Image__inherit__graph.png and /tmp/tmpOzhFOD/Bg2TspT7RQ/atkmm1.6-2.28.0/doc/reference/html/classAtk_1_1Image__inherit__graph.png differ diff -Nru atkmm1.6-2.24.2/doc/reference/html/classAtk_1_1Image-members.html atkmm1.6-2.28.0/doc/reference/html/classAtk_1_1Image-members.html --- atkmm1.6-2.24.2/doc/reference/html/classAtk_1_1Image-members.html 2015-11-29 20:05:33.287311249 +0000 +++ atkmm1.6-2.28.0/doc/reference/html/classAtk_1_1Image-members.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,124 +0,0 @@ - - - - - - -atkmm: Member List - - - - - - -
-
- - - - - - -
-
atkmm -  2.24.2 -
-
-
- - - - - -
-
-
-
Atk::Image Member List
-
-
- -

This is the complete list of members for Atk::Image, including all inherited members.

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
add_destroy_notify_callback(void *data, func_destroy_notify func) const sigc::trackable
add_interface(GType gtype_implementer)Atk::Imagestatic
connect_property_changed(const Glib::ustring &property_name, const sigc::slot< void > &slot)Glib::ObjectBase
connect_property_changed_with_return(const Glib::ustring &property_name, const sigc::slot< void > &slot)Glib::ObjectBase
freeze_notify()Glib::ObjectBase
func_destroy_notify typedefsigc::trackable
get_image_description() const Atk::Image
get_image_description_vfunc() const Atk::Imageprotectedvirtual
get_image_position(int& x, int& y, CoordType coord_type) const Atk::Image
get_image_position_vfunc(int& x, int& y, CoordType coord_type) const Atk::Imageprotectedvirtual
get_image_size(int& width, int& height) const Atk::Image
get_image_size_vfunc(int& width, int& height) const Atk::Imageprotectedvirtual
get_property(const Glib::ustring &property_name, PropertyType &value) const Glib::ObjectBase
get_property_value(const Glib::ustring &property_name, Glib::ValueBase &value) const Glib::ObjectBase
get_type()Atk::Imagestatic
gobj()Atk::Imageinline
gobj() const Atk::Imageinline
gobj_copy() const Glib::ObjectBase
Image()Atk::Imageprotected
Image(Image&& src) noexceptAtk::Image
initialize(GObject *castitem)Glib::ObjectBaseprotected
initialize_move(GObject *castitem, Glib::ObjectBase *previous_wrapper)Glib::ObjectBaseprotected
Interface()Glib::Interface
Interface(Interface &&src) noexceptGlib::Interface
Interface(const Glib::Interface_Class &interface_class)Glib::Interface
Interface(GObject *castitem)Glib::Interface
Interface(const Interface &)=deleteGlib::Interface
notify_callbacks()sigc::trackable
ObjectBase(const ObjectBase &)=deleteGlib::ObjectBase
ObjectBase()Glib::ObjectBaseprotected
ObjectBase(const char *custom_type_name)Glib::ObjectBaseprotected
ObjectBase(const std::type_info &custom_type_info)Glib::ObjectBaseprotected
ObjectBase(ObjectBase &&src) noexceptGlib::ObjectBaseprotected
operator=(Image&& src) noexceptAtk::Image
Glib::Interface::operator=(Interface &&src) noexceptGlib::Interface
Glib::Interface::operator=(const Interface &)=deleteGlib::Interface
Glib::ObjectBase::operator=(const ObjectBase &)=deleteGlib::ObjectBase
Glib::ObjectBase::operator=(ObjectBase &&src) noexceptGlib::ObjectBaseprotected
sigc::trackable::operator=(const trackable &src)sigc::trackable
sigc::trackable::operator=(trackable &&src)sigc::trackable
reference() const Glib::ObjectBasevirtual
remove_destroy_notify_callback(void *data) const sigc::trackable
set_image_description(const Glib::ustring& description)Atk::Image
set_image_description_vfunc(const Glib::ustring& description)Atk::Imageprotectedvirtual
set_property(const Glib::ustring &property_name, const PropertyType &value)Glib::ObjectBase
set_property_value(const Glib::ustring &property_name, const Glib::ValueBase &value)Glib::ObjectBase
thaw_notify()Glib::ObjectBase
trackable() noexceptsigc::trackable
trackable(const trackable &src) noexceptsigc::trackable
trackable(trackable &&src)sigc::trackable
unreference() const Glib::ObjectBasevirtual
wrap(AtkImage* object, bool take_copy=false)Atk::Imagerelated
~Image() noexceptAtk::Imagevirtual
~Interface() noexceptGlib::Interfacevirtual
~ObjectBase() noexcept=0Glib::ObjectBaseprotectedpure virtual
~trackable()sigc::trackable
- - - - diff -Nru atkmm1.6-2.24.2/doc/reference/html/classAtk_1_1Implementor.html atkmm1.6-2.28.0/doc/reference/html/classAtk_1_1Implementor.html --- atkmm1.6-2.24.2/doc/reference/html/classAtk_1_1Implementor.html 2015-11-29 20:05:33.291311172 +0000 +++ atkmm1.6-2.28.0/doc/reference/html/classAtk_1_1Implementor.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,479 +0,0 @@ - - - - - - -atkmm: Atk::Implementor Class Reference - - - - - - -
-
- - - - - - -
-
atkmm -  2.24.2 -
-
-
- - - - - -
- -
- -

#include <atkmm/implementor.h>

-
-Inheritance diagram for Atk::Implementor:
-
-
Inheritance graph
- - -
[legend]
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

-Public Member Functions

 Implementor (Implementor&& src) noexcept
 
Implementoroperator= (Implementor&& src) noexcept
 
virtual ~Implementor () noexcept
 
AtkImplementor* gobj ()
 Provides access to the underlying C GObject. More...
 
const AtkImplementor* gobj () const
 Provides access to the underlying C GObject. More...
 
- Public Member Functions inherited from Glib::Interface
 Interface ()
 
 Interface (Interface &&src) noexcept
 
Interfaceoperator= (Interface &&src) noexcept
 
 Interface (const Glib::Interface_Class &interface_class)
 
 Interface (GObject *castitem)
 
virtual ~Interface () noexcept
 
 Interface (const Interface &)=delete
 
Interfaceoperator= (const Interface &)=delete
 
GObject * gobj ()
 
const GObject * gobj () const
 
- Public Member Functions inherited from Glib::ObjectBase
 ObjectBase (const ObjectBase &)=delete
 
ObjectBaseoperator= (const ObjectBase &)=delete
 
void set_property_value (const Glib::ustring &property_name, const Glib::ValueBase &value)
 
void get_property_value (const Glib::ustring &property_name, Glib::ValueBase &value) const
 
void set_property (const Glib::ustring &property_name, const PropertyType &value)
 
void get_property (const Glib::ustring &property_name, PropertyType &value) const
 
void connect_property_changed (const Glib::ustring &property_name, const sigc::slot< void > &slot)
 
sigc::connection connect_property_changed_with_return (const Glib::ustring &property_name, const sigc::slot< void > &slot)
 
void freeze_notify ()
 
void thaw_notify ()
 
virtual void reference () const
 
virtual void unreference () const
 
GObject * gobj ()
 
const GObject * gobj () const
 
GObject * gobj_copy () const
 
- Public Member Functions inherited from sigc::trackable
 trackable () noexcept
 
 trackable (const trackable &src) noexcept
 
 trackable (trackable &&src)
 
 ~trackable ()
 
void add_destroy_notify_callback (void *data, func_destroy_notify func) const
 
void notify_callbacks ()
 
trackableoperator= (const trackable &src)
 
trackableoperator= (trackable &&src)
 
void remove_destroy_notify_callback (void *data) const
 
- - - - - - -

-Static Public Member Functions

static void add_interface (GType gtype_implementer)
 
static GType get_type ()
 Get the GType for this class, for use with the underlying GObject type system. More...
 
- - - - - - - - - - - - - - - - - - - - - - - -

-Protected Member Functions

 Implementor ()
 You should derive from this class to use it. More...
 
virtual Glib::RefPtr< Objectref_accessibile_vfunc ()
 
- Protected Member Functions inherited from Glib::ObjectBase
 ObjectBase ()
 
 ObjectBase (const char *custom_type_name)
 
 ObjectBase (const std::type_info &custom_type_info)
 
 ObjectBase (ObjectBase &&src) noexcept
 
ObjectBaseoperator= (ObjectBase &&src) noexcept
 
virtual ~ObjectBase () noexcept=0
 
void initialize (GObject *castitem)
 
void initialize_move (GObject *castitem, Glib::ObjectBase *previous_wrapper)
 
- - - - - -

-Related Functions

(Note that these are not member functions.)

-
Glib::RefPtr< Atk::Implementorwrap (AtkImplementor* object, bool take_copy=false)
 A Glib::wrap() method for this object. More...
 
- - - - -

-Additional Inherited Members

- Public Types inherited from sigc::trackable
typedef internal::func_destroy_notify func_destroy_notify
 
-

Constructor & Destructor Documentation

- -
-
- - - - - -
- - - - - - - -
Atk::Implementor::Implementor ()
-
-protected
-
- -

You should derive from this class to use it.

- -
-
- -
-
- - - - - -
- - - - - - - - -
Atk::Implementor::Implementor (Implementor&& src)
-
-noexcept
-
- -
-
- -
-
- - - - - -
- - - - - - - -
virtual Atk::Implementor::~Implementor ()
-
-virtualnoexcept
-
- -
-
-

Member Function Documentation

- -
-
- - - - - -
- - - - - - - - -
static void Atk::Implementor::add_interface (GType gtype_implementer)
-
-static
-
- -
-
- -
-
- - - - - -
- - - - - - - -
static GType Atk::Implementor::get_type ()
-
-static
-
- -

Get the GType for this class, for use with the underlying GObject type system.

- -
-
- -
-
- - - - - -
- - - - - - - -
AtkImplementor* Atk::Implementor::gobj ()
-
-inline
-
- -

Provides access to the underlying C GObject.

- -
-
- -
-
- - - - - -
- - - - - - - -
const AtkImplementor* Atk::Implementor::gobj () const
-
-inline
-
- -

Provides access to the underlying C GObject.

- -
-
- -
-
- - - - - -
- - - - - - - - -
Implementor& Atk::Implementor::operator= (Implementor&& src)
-
-noexcept
-
- -
-
- -
-
- - - - - -
- - - - - - - -
virtual Glib::RefPtr<Object> Atk::Implementor::ref_accessibile_vfunc ()
-
-protectedvirtual
-
- -
-
-

Friends And Related Function Documentation

- -
-
- - - - - -
- - - - - - - - - - - - - - - - - - -
Glib::RefPtr< Atk::Implementor > wrap (AtkImplementor * object,
bool take_copy = false 
)
-
-related
-
- -

A Glib::wrap() method for this object.

-
Parameters
- - - -
objectThe C instance.
take_copyFalse if the result should take ownership of the C instance. True if it should take a new copy or ref.
-
-
-
Returns
A C++ instance that wraps this C instance.
- -
-
-
- - - - Binary files /tmp/tmpOzhFOD/5A0TTRaIcC/atkmm1.6-2.24.2/doc/reference/html/classAtk_1_1Implementor__inherit__graph.png and /tmp/tmpOzhFOD/Bg2TspT7RQ/atkmm1.6-2.28.0/doc/reference/html/classAtk_1_1Implementor__inherit__graph.png differ diff -Nru atkmm1.6-2.24.2/doc/reference/html/classAtk_1_1Implementor-members.html atkmm1.6-2.28.0/doc/reference/html/classAtk_1_1Implementor-members.html --- atkmm1.6-2.24.2/doc/reference/html/classAtk_1_1Implementor-members.html 2015-11-29 20:05:33.311310793 +0000 +++ atkmm1.6-2.28.0/doc/reference/html/classAtk_1_1Implementor-members.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,117 +0,0 @@ - - - - - - -atkmm: Member List - - - - - - -
-
- - - - - - -
-
atkmm -  2.24.2 -
-
-
- - - - - -
-
-
-
Atk::Implementor Member List
-
-
- -

This is the complete list of members for Atk::Implementor, including all inherited members.

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
add_destroy_notify_callback(void *data, func_destroy_notify func) const sigc::trackable
add_interface(GType gtype_implementer)Atk::Implementorstatic
connect_property_changed(const Glib::ustring &property_name, const sigc::slot< void > &slot)Glib::ObjectBase
connect_property_changed_with_return(const Glib::ustring &property_name, const sigc::slot< void > &slot)Glib::ObjectBase
freeze_notify()Glib::ObjectBase
func_destroy_notify typedefsigc::trackable
get_property(const Glib::ustring &property_name, PropertyType &value) const Glib::ObjectBase
get_property_value(const Glib::ustring &property_name, Glib::ValueBase &value) const Glib::ObjectBase
get_type()Atk::Implementorstatic
gobj()Atk::Implementorinline
gobj() const Atk::Implementorinline
gobj_copy() const Glib::ObjectBase
Implementor()Atk::Implementorprotected
Implementor(Implementor&& src) noexceptAtk::Implementor
initialize(GObject *castitem)Glib::ObjectBaseprotected
initialize_move(GObject *castitem, Glib::ObjectBase *previous_wrapper)Glib::ObjectBaseprotected
Interface()Glib::Interface
Interface(Interface &&src) noexceptGlib::Interface
Interface(const Glib::Interface_Class &interface_class)Glib::Interface
Interface(GObject *castitem)Glib::Interface
Interface(const Interface &)=deleteGlib::Interface
notify_callbacks()sigc::trackable
ObjectBase(const ObjectBase &)=deleteGlib::ObjectBase
ObjectBase()Glib::ObjectBaseprotected
ObjectBase(const char *custom_type_name)Glib::ObjectBaseprotected
ObjectBase(const std::type_info &custom_type_info)Glib::ObjectBaseprotected
ObjectBase(ObjectBase &&src) noexceptGlib::ObjectBaseprotected
operator=(Implementor&& src) noexceptAtk::Implementor
Glib::Interface::operator=(Interface &&src) noexceptGlib::Interface
Glib::Interface::operator=(const Interface &)=deleteGlib::Interface
Glib::ObjectBase::operator=(const ObjectBase &)=deleteGlib::ObjectBase
Glib::ObjectBase::operator=(ObjectBase &&src) noexceptGlib::ObjectBaseprotected
sigc::trackable::operator=(const trackable &src)sigc::trackable
sigc::trackable::operator=(trackable &&src)sigc::trackable
ref_accessibile_vfunc()Atk::Implementorprotectedvirtual
reference() const Glib::ObjectBasevirtual
remove_destroy_notify_callback(void *data) const sigc::trackable
set_property(const Glib::ustring &property_name, const PropertyType &value)Glib::ObjectBase
set_property_value(const Glib::ustring &property_name, const Glib::ValueBase &value)Glib::ObjectBase
thaw_notify()Glib::ObjectBase
trackable() noexceptsigc::trackable
trackable(const trackable &src) noexceptsigc::trackable
trackable(trackable &&src)sigc::trackable
unreference() const Glib::ObjectBasevirtual
wrap(AtkImplementor* object, bool take_copy=false)Atk::Implementorrelated
~Implementor() noexceptAtk::Implementorvirtual
~Interface() noexceptGlib::Interfacevirtual
~ObjectBase() noexcept=0Glib::ObjectBaseprotectedpure virtual
~trackable()sigc::trackable
- - - - diff -Nru atkmm1.6-2.24.2/doc/reference/html/classAtk_1_1NoOpObject.html atkmm1.6-2.28.0/doc/reference/html/classAtk_1_1NoOpObject.html --- atkmm1.6-2.24.2/doc/reference/html/classAtk_1_1NoOpObject.html 2015-11-29 20:05:33.283311324 +0000 +++ atkmm1.6-2.28.0/doc/reference/html/classAtk_1_1NoOpObject.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,1429 +0,0 @@ - - - - - - -atkmm: Atk::NoOpObject Class Reference - - - - - - -
-
- - - - - - -
-
atkmm -  2.24.2 -
-
-
- - - - - -
- -
- -

An Atk::NoOpObject is an Atk::Object which purports to implement all ATK interfaces. - More...

- -

#include <atkmm/noopobject.h>

-
-Inheritance diagram for Atk::NoOpObject:
-
-
Inheritance graph
- - -
[legend]
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

-Public Member Functions

 NoOpObject (NoOpObject&& src) noexcept
 
NoOpObjectoperator= (NoOpObject&& src) noexcept
 
virtual ~NoOpObject () noexcept
 
AtkNoOpObject* gobj ()
 Provides access to the underlying C GObject. More...
 
const AtkNoOpObject* gobj () const
 Provides access to the underlying C GObject. More...
 
AtkNoOpObject* gobj_copy ()
 Provides access to the underlying C instance. The caller is responsible for unrefing it. Use when directly setting fields in structs. More...
 
- Public Member Functions inherited from Atk::Object
 Object (Object&& src) noexcept
 
Objectoperator= (Object&& src) noexcept
 
virtual ~Object () noexcept
 
AtkObject* gobj ()
 Provides access to the underlying C GObject. More...
 
const AtkObject* gobj () const
 Provides access to the underlying C GObject. More...
 
AtkObject* gobj_copy ()
 Provides access to the underlying C instance. The caller is responsible for unrefing it. Use when directly setting fields in structs. More...
 
Glib::ustring get_name () const
 Gets the accessible name of the accessible. More...
 
Glib::ustring get_description () const
 Gets the accessible description of the accessible. More...
 
Glib::RefPtr< Atk::Objectget_parent ()
 Gets the accessible parent of the accessible. More...
 
int get_n_accessible_children () const
 Gets the number of accessible children of the accessible. More...
 
Glib::RefPtr< Atk::Objectget_accessible_child (int i)
 Gets a reference to the specified accessible child of the object. More...
 
Glib::RefPtr< RelationSetget_relation_set ()
 Gets the Atk::RelationSet associated with the object. More...
 
Role get_role () const
 Gets the role of the accessible. More...
 
Glib::RefPtr< StateSetget_state_set ()
 Gets a reference to the state set of the accessible; the caller must unreference it when it is no longer needed. More...
 
int get_index_in_parent ()
 Gets the 0-based index of this accessible in its parent; returns -1 if the accessible does not have an accessible parent. More...
 
void set_name (const Glib::ustring& name)
 Sets the accessible name of the accessible. More...
 
void set_description (const Glib::ustring& description)
 Sets the accessible description of the accessible. More...
 
void set_parent (const Glib::RefPtr< Atk::Object >& parent)
 Sets the accessible parent of the accessible. More...
 
void set_role (Role role)
 Sets the role of the accessible. More...
 
void notify_state_change (State state, bool value)
 Emits a state-change signal for the specified state. More...
 
bool add_relationship (RelationType relationship, const Glib::RefPtr< Object >& target)
 Adds a relationship of the specified type with the specified target. More...
 
bool remove_relationship (RelationType relationship, const Glib::RefPtr< Object >& target)
 Removes a relationship of the specified type with the specified target. More...
 
Glib::SignalProxy2< void, guint, gpointer > signal_children_changed ()
 
Glib::SignalProxy1< void, bool > signal_focus_event ()
 
Glib::SignalProxy1< void, AtkPropertyValues* > signal_property_change ()
 
Glib::SignalProxy2< void, const Glib::ustring&, bool > signal_state_change ()
 
Glib::SignalProxy0< void > signal_visible_data_changed ()
 
Glib::SignalProxy1< void, void** > signal_active_descendant_changed ()
 
Glib::PropertyProxy< Glib::ustringproperty_accessible_name ()
 Object instance's name formatted for assistive technology access. More...
 
Glib::PropertyProxy_ReadOnly< Glib::ustringproperty_accessible_name () const
 Object instance's name formatted for assistive technology access. More...
 
Glib::PropertyProxy< Glib::ustringproperty_accessible_description ()
 Description of an object, formatted for assistive technology access. More...
 
Glib::PropertyProxy_ReadOnly< Glib::ustringproperty_accessible_description () const
 Description of an object, formatted for assistive technology access. More...
 
Glib::PropertyProxy< Glib::RefPtr< Atk::Object > > property_accessible_parent ()
 Parent of the current accessible as returned by atk_object_get_parent(). More...
 
Glib::PropertyProxy_ReadOnly< Glib::RefPtr< Atk::Object > > property_accessible_parent () const
 Parent of the current accessible as returned by atk_object_get_parent(). More...
 
Glib::PropertyProxy< double > property_accessible_value ()
 Is used to notify that the value has changed. More...
 
Glib::PropertyProxy_ReadOnly< double > property_accessible_value () const
 Is used to notify that the value has changed. More...
 
Glib::PropertyProxy< int > property_accessible_role ()
 The accessible role of this object. More...
 
Glib::PropertyProxy_ReadOnly< int > property_accessible_role () const
 The accessible role of this object. More...
 
Glib::PropertyProxy_ReadOnly< int > property_accessible_component_layer () const
 The accessible layer of this object. More...
 
Glib::PropertyProxy_ReadOnly< int > property_accessible_component_mdi_zorder () const
 The accessible MDI value of this object. More...
 
Glib::PropertyProxy< Glib::ustringproperty_accessible_table_caption ()
 Is used to notify that the table caption has changed; this property should not be used. More...
 
Glib::PropertyProxy_ReadOnly< Glib::ustringproperty_accessible_table_caption () const
 Is used to notify that the table caption has changed; this property should not be used. More...
 
Glib::PropertyProxy< Glib::ustringproperty_accessible_table_column_description ()
 Is used to notify that the table column description has changed. More...
 
Glib::PropertyProxy_ReadOnly< Glib::ustringproperty_accessible_table_column_description () const
 Is used to notify that the table column description has changed. More...
 
Glib::PropertyProxy< Glib::RefPtr< Atk::Object > > property_accessible_table_column_header ()
 Is used to notify that the table column header has changed. More...
 
Glib::PropertyProxy_ReadOnly< Glib::RefPtr< Atk::Object > > property_accessible_table_column_header () const
 Is used to notify that the table column header has changed. More...
 
Glib::PropertyProxy< Glib::ustringproperty_accessible_table_row_description ()
 Is used to notify that the table row description has changed. More...
 
Glib::PropertyProxy_ReadOnly< Glib::ustringproperty_accessible_table_row_description () const
 Is used to notify that the table row description has changed. More...
 
Glib::PropertyProxy< Glib::RefPtr< Atk::Object > > property_accessible_table_row_header ()
 Is used to notify that the table row header has changed. More...
 
Glib::PropertyProxy_ReadOnly< Glib::RefPtr< Atk::Object > > property_accessible_table_row_header () const
 Is used to notify that the table row header has changed. More...
 
Glib::PropertyProxy< Glib::RefPtr< Atk::Object > > property_accessible_table_summary ()
 Is used to notify that the table summary has changed. More...
 
Glib::PropertyProxy_ReadOnly< Glib::RefPtr< Atk::Object > > property_accessible_table_summary () const
 Is used to notify that the table summary has changed. More...
 
- Public Member Functions inherited from Glib::Object
 Object (const Object &)=delete
 
Objectoperator= (const Object &)=delete
 
 Object (Object &&src) noexcept
 
Objectoperator= (Object &&src) noexcept
 
void * get_data (const QueryQuark &key)
 
void set_data (const Quark &key, void *data)
 
void set_data (const Quark &key, void *data, DestroyNotify notify)
 
void remove_data (const QueryQuark &quark)
 
void * steal_data (const QueryQuark &quark)
 
Glib::RefPtr< Glib::Objectwrap (GObject *object, bool take_copy=false)
 
- Public Member Functions inherited from Glib::ObjectBase
 ObjectBase (const ObjectBase &)=delete
 
ObjectBaseoperator= (const ObjectBase &)=delete
 
void set_property_value (const Glib::ustring &property_name, const Glib::ValueBase &value)
 
void get_property_value (const Glib::ustring &property_name, Glib::ValueBase &value) const
 
void set_property (const Glib::ustring &property_name, const PropertyType &value)
 
void get_property (const Glib::ustring &property_name, PropertyType &value) const
 
void connect_property_changed (const Glib::ustring &property_name, const sigc::slot< void > &slot)
 
sigc::connection connect_property_changed_with_return (const Glib::ustring &property_name, const sigc::slot< void > &slot)
 
void freeze_notify ()
 
void thaw_notify ()
 
virtual void reference () const
 
virtual void unreference () const
 
GObject * gobj ()
 
const GObject * gobj () const
 
GObject * gobj_copy () const
 
- Public Member Functions inherited from sigc::trackable
 trackable () noexcept
 
 trackable (const trackable &src) noexcept
 
 trackable (trackable &&src)
 
 ~trackable ()
 
void add_destroy_notify_callback (void *data, func_destroy_notify func) const
 
void notify_callbacks ()
 
trackableoperator= (const trackable &src)
 
trackableoperator= (trackable &&src)
 
void remove_destroy_notify_callback (void *data) const
 
- Public Member Functions inherited from Atk::Component
 Component (Component&& src) noexcept
 
Componentoperator= (Component&& src) noexcept
 
virtual ~Component () noexcept
 
AtkComponent* gobj ()
 Provides access to the underlying C GObject. More...
 
const AtkComponent* gobj () const
 Provides access to the underlying C GObject. More...
 
guint add_focus_handler (AtkFocusHandler handler)
 Add the specified handler to the set of functions to be called when this object receives focus events (in or out). More...
 
bool contains (int x, int y, CoordType coord_type) const
 Checks whether the specified point is within the extent of the component. More...
 
Glib::RefPtr< Atk::Objectget_accessible_at_point (int x, int y, CoordType coord_type)
 Gets a reference to the accessible child, if one exists, at the coordinate point specified by x and y. More...
 
void get_extents (int& x, int& y, int& width, int& height, CoordType coord_type) const
 Gets the rectangle which gives the extent of the component. More...
 
void get_position (int& x, int& y, CoordType coord_type) const
 Gets the position of component in the form of a point specifying component's top-left corner. More...
 
void get_size (int& width, int& height) const
 Gets the size of the component in terms of width and height. More...
 
Layer get_layer () const
 Gets the layer of the component. More...
 
int get_mdi_zorder () const
 Gets the zorder of the component. More...
 
bool grab_focus ()
 Grabs focus for this component. More...
 
void remove_focus_handler (guint handler_id)
 Remove the handler specified by handler_id from the list of functions to be executed when this object receives focus events (in or out). More...
 
bool set_extents (int x, int y, int width, int height, CoordType coord_type)
 Sets the extents of component. More...
 
bool set_position (int x, int y, CoordType coord_type)
 Sets the postition of component. More...
 
bool set_size (int width, int height)
 Set the size of the component in terms of width and height. More...
 
- Public Member Functions inherited from Glib::Interface
 Interface ()
 
 Interface (Interface &&src) noexcept
 
Interfaceoperator= (Interface &&src) noexcept
 
 Interface (const Glib::Interface_Class &interface_class)
 
 Interface (GObject *castitem)
 
virtual ~Interface () noexcept
 
 Interface (const Interface &)=delete
 
Interfaceoperator= (const Interface &)=delete
 
GObject * gobj ()
 
const GObject * gobj () const
 
- Public Member Functions inherited from Atk::Action
 Action (Action&& src) noexcept
 
Actionoperator= (Action&& src) noexcept
 
virtual ~Action () noexcept
 
AtkAction* gobj ()
 Provides access to the underlying C GObject. More...
 
const AtkAction* gobj () const
 Provides access to the underlying C GObject. More...
 
bool do_action (int i)
 Perform the specified action on the object. More...
 
int get_n_actions () const
 Gets the number of accessible actions available on the object. More...
 
Glib::ustring get_description (int i) const
 Returns a description of the specified action of the object. More...
 
Glib::ustring get_name (int i) const
 Returns the name of the specified action of the object. More...
 
Glib::ustring get_keybinding (int i)
 Returns a keybinding associated with this action, if one exists. More...
 
bool set_description (int i, const Glib::ustring& desc)
 Sets a description of the specified action of the object. More...
 
Glib::ustring get_localized_name (int i)
 Returns the localized name of the specified action of the object. More...
 
- Public Member Functions inherited from Atk::EditableText
 EditableText (EditableText&& src) noexcept
 
EditableTextoperator= (EditableText&& src) noexcept
 
virtual ~EditableText () noexcept
 
AtkEditableText* gobj ()
 Provides access to the underlying C GObject. More...
 
const AtkEditableText* gobj () const
 Provides access to the underlying C GObject. More...
 
bool set_run_attributes (const AttributeSet& attrib_set, int start_offset, int end_offset)
 Sets the attributes for a specified range. More...
 
void set_text_contents (const Glib::ustring&string)
 Set text contents of text. More...
 
void insert_text (const Glib::ustring&string, int length, int& position)
 Insert text at a given position. More...
 
void copy_text (int start_pos, int end_pos)
 Copy text from start_pos up to, but not including end_pos to the clipboard. More...
 
void cut_text (int start_pos, int end_pos)
 Copy text from start_pos up to, but not including end_pos to the clipboard and then delete from the widget. More...
 
void delete_text (int start_pos, int end_pos)
 Delete text start_pos up to, but not including end_pos. More...
 
void paste_text (int position)
 Paste text from clipboard to specified position. More...
 
- Public Member Functions inherited from Atk::Image
 Image (Image&& src) noexcept
 
Imageoperator= (Image&& src) noexcept
 
virtual ~Image () noexcept
 
AtkImage* gobj ()
 Provides access to the underlying C GObject. More...
 
const AtkImage* gobj () const
 Provides access to the underlying C GObject. More...
 
bool set_image_description (const Glib::ustring& description)
 Sets the textual description for this image. More...
 
Glib::ustring get_image_description () const
 Get a textual description of this image. More...
 
void get_image_size (int& width, int& height) const
 Get the width and height in pixels for the specified image. More...
 
void get_image_position (int& x, int& y, CoordType coord_type) const
 Gets the position of the image in the form of a point specifying the images top-left corner. More...
 
- Public Member Functions inherited from Atk::Selection
 Selection (Selection&& src) noexcept
 
Selectionoperator= (Selection&& src) noexcept
 
virtual ~Selection () noexcept
 
AtkSelection* gobj ()
 Provides access to the underlying C GObject. More...
 
const AtkSelection* gobj () const
 Provides access to the underlying C GObject. More...
 
bool add_selection (int i)
 Adds the specified accessible child of the object to the object's selection. More...
 
bool clear_selection ()
 Clears the selection in the object so that no children in the object are selected. More...
 
Glib::RefPtr< Atk::Objectget_selection (int i)
 Gets a reference to the accessible object representing the specified selected child of the object. More...
 
int get_selection_count () const
 Gets the number of accessible children currently selected. More...
 
bool is_child_selected (int i) const
 Determines if the current child of this object is selected. More...
 
bool remove_selection (int i)
 Removes the specified child of the object from the object's selection. More...
 
bool select_all_selection ()
 Causes every child of the object to be selected if the object supports multiple selections. More...
 
Glib::SignalProxy0< void > signal_selection_changed ()
 
- Public Member Functions inherited from Atk::Table
 Table (Table&& src) noexcept
 
Tableoperator= (Table&& src) noexcept
 
virtual ~Table () noexcept
 
AtkTable* gobj ()
 Provides access to the underlying C GObject. More...
 
const AtkTable* gobj () const
 Provides access to the underlying C GObject. More...
 
Glib::RefPtr< Atk::Objectget_at (int row, int column)
 Get a reference to the table cell at row, column. More...
 
Glib::RefPtr< const Atk::Objectget_at (int row, int column) const
 Get a reference to the table cell at row, column. More...
 
int get_index_at (int row, int column) const
 Gets a int representing the index at the specified row and column. More...
 
int get_column_at_index (int index) const
 Gets a int representing the column at the specified index. More...
 
int get_row_at_index (int index) const
 Gets a int representing the row at the specified index. More...
 
int get_n_columns () const
 Gets the number of columns in the table. More...
 
int get_n_rows () const
 Gets the number of rows in the table. More...
 
int get_column_extent_at (int row, int column) const
 Gets the number of columns occupied by the accessible object at the specified row and column in the table. More...
 
int get_row_extent_at (int row, int column) const
 Gets the number of rows occupied by the accessible object at a specified row and column in the table. More...
 
Glib::RefPtr< Atk::Objectget_caption ()
 Gets the caption for the table. More...
 
Glib::RefPtr< const Atk::Objectget_caption () const
 Gets the caption for the table. More...
 
Glib::ustring get_column_description (int column) const
 Gets the description text of the specified column in the table. More...
 
Glib::RefPtr< Atk::Objectget_column_header (int column)
 Gets the column header of a specified column in an accessible table. More...
 
Glib::RefPtr< const Atk::Objectget_column_header (int column) const
 Gets the column header of a specified column in an accessible table. More...
 
Glib::ustring get_row_description (int row) const
 Gets the description text of the specified row in the table. More...
 
Glib::RefPtr< Atk::Objectget_row_header (int row)
 Gets the row header of a specified row in an accessible table. More...
 
Glib::RefPtr< const Atk::Objectget_row_header (int row) const
 Gets the row header of a specified row in an accessible table. More...
 
Glib::RefPtr< Atk::Objectget_summary ()
 Gets the summary description of the table. More...
 
Glib::RefPtr< const Atk::Objectget_summary () const
 Gets the summary description of the table. More...
 
void set_caption (const Glib::RefPtr< Atk::Object >& caption)
 Sets the caption for the table. More...
 
void set_column_description (int column, const Glib::ustring& description)
 Sets the description text for the specified column of the table. More...
 
void set_column_header (int column, const Glib::RefPtr< Atk::Object >& header)
 Sets the specified column header to header. More...
 
void set_row_description (int row, const Glib::ustring& description)
 Sets the description text for the specified row of table. More...
 
void set_row_header (int row, const Glib::RefPtr< Atk::Object >& header)
 Sets the specified row header to header. More...
 
void set_summary (const Glib::RefPtr< Atk::Object >& accessible)
 Sets the summary description of the table. More...
 
Glib::ArrayHandle< int > get_selected_columns () const
 
Glib::ArrayHandle< int > get_selected_rows () const
 
bool is_column_selected (int column) const
 Gets a boolean value indicating whether the specified column is selected. More...
 
bool is_row_selected (int row) const
 Gets a boolean value indicating whether the specified row is selected. More...
 
bool is_selected (int row, int column) const
 Gets a boolean value indicating whether the accessible object at the specified row and column is selected. More...
 
bool add_row_selection (int row)
 Adds the specified row to the selection. More...
 
bool remove_row_selection (int row)
 Removes the specified row from the selection. More...
 
bool add_column_selection (int column)
 Adds the specified column to the selection. More...
 
bool remove_column_selection (int column)
 Adds the specified column to the selection. More...
 
Glib::SignalProxy2< void, int, int > signal_row_inserted ()
 
Glib::SignalProxy2< void, int, int > signal_column_inserted ()
 
Glib::SignalProxy2< void, int, int > signal_row_deleted ()
 
Glib::SignalProxy2< void, int, int > signal_column_deleted ()
 
Glib::SignalProxy0< void > signal_row_reordered ()
 
Glib::SignalProxy0< void > signal_column_reordered ()
 
Glib::SignalProxy0< void > signal_model_changed ()
 
- Public Member Functions inherited from Atk::Text
 Text (Text&& src) noexcept
 
Textoperator= (Text&& src) noexcept
 
virtual ~Text () noexcept
 
AtkText* gobj ()
 Provides access to the underlying C GObject. More...
 
const AtkText* gobj () const
 Provides access to the underlying C GObject. More...
 
Glib::ustring get_text (int start_offset, int end_offset) const
 Gets the specified text. More...
 
gunichar get_character_at_offset (int offset) const
 Gets the specified text. More...
 
Glib::ustring get_text_after_offset (int offset, TextBoundary boundary_type, int& start_offset, int& end_offset) const
 Gets the specified text. More...
 
Glib::ustring get_text_at_offset (int offset, TextBoundary boundary_type, int& start_offset, int& end_offset) const
 Gets the specified text. More...
 
Glib::ustring get_text_before_offset (int offset, TextBoundary boundary_type, int& start_offset, int& end_offset) const
 Gets the specified text. More...
 
Glib::ustring get_string_at_offset (int offset, TextGranularity granularity, int& start_offset, int& end_offset)
 Gets a portion of the text exposed through an Atk::Text according to a given offset and a specific granularity, along with the start and end offsets defining the boundaries of such a portion of text. More...
 
int get_caret_offset () const
 Gets the offset position of the caret (cursor). More...
 
void get_character_extents (int offset, int& x, int& y, int& width, int& height, CoordType coords) const
 Get the bounding box containing the glyph representing the character at a particular text offset. More...
 
AttributeSet get_run_attributes (int offset, int& start_offset, int& end_offset) const
 Creates an Atk::AttributeSet which consists of the attributes explicitly set at the position offset in the text. More...
 
AttributeSet get_default_attributes () const
 Creates an Atk::AttributeSet which consists of the default values of attributes for the text. More...
 
int get_character_count () const
 Gets the character count. More...
 
int get_offset_at_point (int x, int y, CoordType coords) const
 Gets the offset of the character located at coordinates x and y. More...
 
int get_n_selections () const
 Gets the number of selected regions. More...
 
Glib::ustring get_selection (int selection_num, int& start_offset, int& end_offset) const
 Gets the text from the specified selection. More...
 
bool add_selection (int start_offset, int end_offset)
 Adds a selection bounded by the specified offsets. More...
 
bool remove_selection (int selection_num)
 Removes the specified selection. More...
 
bool set_selection (int selection_num, int start_offset, int end_offset)
 Changes the start and end offset of the specified selection. More...
 
bool set_caret_offset (int offset)
 Sets the caret (cursor) position to the specified offset. More...
 
void get_range_extents (int start_offset, int end_offset, CoordType coord_type, Rectangle& rect)
 Get the bounding box for text within the specified range. More...
 
AtkTextRange** get_bounded_ranges (const Rectangle& rect, CoordType coord_type, TextClipType x_clip_type, TextClipType y_clip_type)
 Get the ranges of text in the specified bounding box. More...
 
Glib::SignalProxy2< void, int, int > signal_text_changed ()
 
Glib::SignalProxy1< void, int > signal_text_caret_moved ()
 
Glib::SignalProxy0< void > signal_text_selection_changed ()
 
Glib::SignalProxy0< void > signal_text_attributes_changed ()
 
- Public Member Functions inherited from Atk::Hypertext
 Hypertext (Hypertext&& src) noexcept
 
Hypertextoperator= (Hypertext&& src) noexcept
 
virtual ~Hypertext () noexcept
 
AtkHypertext* gobj ()
 Provides access to the underlying C GObject. More...
 
const AtkHypertext* gobj () const
 Provides access to the underlying C GObject. More...
 
Glib::RefPtr< Hyperlinkget_link (int link_index)
 Gets the link in this hypertext document at index link_index. More...
 
Glib::RefPtr< const Hyperlinkget_link (int link_index) const
 Gets the link in this hypertext document at index link_index. More...
 
int get_n_links () const
 Gets the number of links within this hypertext document. More...
 
int get_link_index (int char_index) const
 Gets the index into the array of hyperlinks that is associated with the character specified by char_index. More...
 
Glib::SignalProxy1< void, int > signal_link_selected ()
 
virtual Glib::RefPtr< Hyperlinkget_link_vfunc (int link_index)
 
virtual int get_n_links_vfunc () const
 
virtual int get_link_index_vfunc (int char_index) const
 
- Public Member Functions inherited from Atk::Value
 Value (Value&& src) noexcept
 
Valueoperator= (Value&& src) noexcept
 
virtual ~Value () noexcept
 
AtkValue* gobj ()
 Provides access to the underlying C GObject. More...
 
const AtkValue* gobj () const
 Provides access to the underlying C GObject. More...
 
void get_current_value (Glib::ValueBase& value) const
 Gets the value of this object. More...
 
void get_maximum_value (Glib::ValueBase& value) const
 Gets the maximum value of this object. More...
 
void get_minimum_value (Glib::ValueBase& value) const
 Gets the minimum value of this object. More...
 
bool set_current_value (const Glib::ValueBase& value)
 Sets the value of this object. More...
 
void get_value_and_text (double& value, Glib::ustring& text)
 Gets the current value and the human readable text alternative. More...
 
Range get_range () const
 Gets the range of this object. More...
 
double get_increment ()
 Gets the minimum increment by which the value of this object may be changed. More...
 
void set_value (const gdouble new_value)
 Sets the value of this object. More...
 
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

-Static Public Member Functions

static GType get_type ()
 Get the GType for this class, for use with the underlying GObject type system. More...
 
- Static Public Member Functions inherited from Atk::Object
static GType get_type ()
 Get the GType for this class, for use with the underlying GObject type system. More...
 
- Static Public Member Functions inherited from Atk::Component
static void add_interface (GType gtype_implementer)
 
static GType get_type ()
 Get the GType for this class, for use with the underlying GObject type system. More...
 
- Static Public Member Functions inherited from Atk::Action
static void add_interface (GType gtype_implementer)
 
static GType get_type ()
 Get the GType for this class, for use with the underlying GObject type system. More...
 
- Static Public Member Functions inherited from Atk::EditableText
static void add_interface (GType gtype_implementer)
 
static GType get_type ()
 Get the GType for this class, for use with the underlying GObject type system. More...
 
- Static Public Member Functions inherited from Atk::Image
static void add_interface (GType gtype_implementer)
 
static GType get_type ()
 Get the GType for this class, for use with the underlying GObject type system. More...
 
- Static Public Member Functions inherited from Atk::Selection
static void add_interface (GType gtype_implementer)
 
static GType get_type ()
 Get the GType for this class, for use with the underlying GObject type system. More...
 
- Static Public Member Functions inherited from Atk::Table
static void add_interface (GType gtype_implementer)
 
static GType get_type ()
 Get the GType for this class, for use with the underlying GObject type system. More...
 
- Static Public Member Functions inherited from Atk::Text
static void add_interface (GType gtype_implementer)
 
static GType get_type ()
 Get the GType for this class, for use with the underlying GObject type system. More...
 
- Static Public Member Functions inherited from Atk::Hypertext
static void add_interface (GType gtype_implementer)
 
static GType get_type ()
 Get the GType for this class, for use with the underlying GObject type system. More...
 
- Static Public Member Functions inherited from Atk::Value
static void add_interface (GType gtype_implementer)
 
static GType get_type ()
 Get the GType for this class, for use with the underlying GObject type system. More...
 
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

-Related Functions

(Note that these are not member functions.)

-
Glib::RefPtr< Atk::NoOpObjectwrap (AtkNoOpObject* object, bool take_copy=false)
 A Glib::wrap() method for this object. More...
 
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

-Additional Inherited Members

- Public Types inherited from Glib::Object
typedef void(* DestroyNotify) (gpointer data)
 
- Public Types inherited from sigc::trackable
typedef internal::func_destroy_notify func_destroy_notify
 
- Public Types inherited from Atk::Text
typedef AtkTextRectangle Rectangle
 
- Protected Member Functions inherited from Atk::Object
virtual void on_children_changed (guint change_index, gpointer changed_child)
 This is a default handler for the signal signal_children_changed(). More...
 
virtual void on_focus_event (bool focus_in)
 This is a default handler for the signal signal_focus_event(). More...
 
virtual void on_property_change (AtkPropertyValues* values)
 This is a default handler for the signal signal_property_change(). More...
 
virtual void on_state_change (const Glib::ustring& name, bool state_set)
 This is a default handler for the signal signal_state_change(). More...
 
virtual void on_visible_data_changed ()
 This is a default handler for the signal signal_visible_data_changed(). More...
 
virtual void on_active_descendant_changed (void** child)
 This is a default handler for the signal signal_active_descendant_changed(). More...
 
- Protected Member Functions inherited from Glib::Object
 Object ()
 
 Object (const Glib::ConstructParams &construct_params)
 
 Object (GObject *castitem)
 
- Protected Member Functions inherited from Glib::ObjectBase
 ObjectBase ()
 
 ObjectBase (const char *custom_type_name)
 
 ObjectBase (const std::type_info &custom_type_info)
 
 ObjectBase (ObjectBase &&src) noexcept
 
ObjectBaseoperator= (ObjectBase &&src) noexcept
 
virtual ~ObjectBase () noexcept=0
 
void initialize (GObject *castitem)
 
void initialize_move (GObject *castitem, Glib::ObjectBase *previous_wrapper)
 
- Protected Member Functions inherited from Atk::Component
 Component ()
 You should derive from this class to use it. More...
 
virtual guint add_focus_handler_vfunc (AtkFocusHandler handler)
 
virtual bool contains_vfunc (int x, int y, CoordType coord_type) const
 
virtual Glib::RefPtr< Atk::Objectget_accessible_at_point_vfunc (int x, int y, CoordType coord_type)
 
virtual void get_extents_vfunc (int& x, int& y, int& width, int& height, CoordType coord_type) const
 
virtual void get_position_vfunc (int& x, int& y, CoordType coord_type) const
 
virtual void get_size_vfunc (int& width, int& height) const
 
virtual Layer get_layer_vfunc () const
 
virtual int get_mdi_zorder_vfunc () const
 
virtual bool grab_focus_vfunc ()
 
virtual void remove_focus_handler_vfunc (guint handler_id)
 
virtual bool set_extents_vfunc (int x, int y, int width, int height, CoordType coord_type)
 
virtual bool set_position_vfunc (int x, int y, CoordType coord_type)
 
virtual bool set_size_vfunc (int width, int height)
 
- Protected Member Functions inherited from Atk::Action
 Action ()
 You should derive from this class to use it. More...
 
virtual bool do_action_vfunc (int i)
 
virtual int get_n_actions_vfunc () const
 
virtual const char* get_description_vfunc (int i) const
 
virtual const char* get_name_vfunc (int i) const
 
virtual const char* get_keybinding_vfunc (int i) const
 
virtual bool set_description_vfunc (int i, const Glib::ustring& desc)
 
- Protected Member Functions inherited from Atk::EditableText
 EditableText ()
 You should derive from this class to use it. More...
 
virtual bool set_run_attributes_vfunc (AtkAttributeSet* attrib_set, int start_offset, int end_offset)
 
virtual void set_text_contents_vfunc (const Glib::ustring&string)
 
virtual void insert_text_vfunc (const Glib::ustring&string, int length, int& position)
 
virtual void copy_text_vfunc (int start_pos, int end_pos)
 
virtual void cut_text_vfunc (int start_pos, int end_pos)
 
virtual void delete_text_vfunc (int start_pos, int end_pos)
 
virtual void paste_text_vfunc (int position)
 
- Protected Member Functions inherited from Atk::Image
 Image ()
 You should derive from this class to use it. More...
 
virtual bool set_image_description_vfunc (const Glib::ustring& description)
 
virtual const char* get_image_description_vfunc () const
 
virtual void get_image_position_vfunc (int& x, int& y, CoordType coord_type) const
 
virtual void get_image_size_vfunc (int& width, int& height) const
 
- Protected Member Functions inherited from Atk::Selection
 Selection ()
 You should derive from this class to use it. More...
 
virtual bool add_selection_vfunc (int i)
 
virtual bool clear_selection_vfunc ()
 
virtual Glib::RefPtr< Atk::Objectget_selection_vfunc (int i)
 
virtual int get_selection_count_vfunc () const
 
virtual bool is_child_selected_vfunc (int i) const
 
virtual bool remove_selection_vfunc (int i)
 
virtual bool select_all_selection_vfunc ()
 
virtual void on_selection_changed ()
 This is a default handler for the signal signal_selection_changed(). More...
 
- Protected Member Functions inherited from Atk::Table
 Table ()
 You should derive from this class to use it. More...
 
virtual Glib::RefPtr< Atk::Objectget_at_vfunc (int row, int column)
 
virtual int get_index_at_vfunc (int row, int column) const
 
virtual int get_column_at_index_vfunc (int index) const
 
virtual int get_row_at_index_vfunc (int index) const
 
virtual int get_n_columns_vfunc () const
 
virtual int get_n_rows_vfunc () const
 
virtual int get_column_extent_at_vfunc (int row, int column) const
 
virtual int get_row_extent_at_vfunc (int row, int column) const
 
virtual Glib::RefPtr< Atk::Objectget_caption_vfunc ()
 
virtual const char* get_column_description_vfunc (int column) const
 
virtual Glib::RefPtr< Atk::Objectget_column_header_vfunc (int column)
 
virtual const char* get_row_description_vfunc (int row) const
 
virtual Glib::RefPtr< Atk::Objectget_row_header_vfunc (int row)
 
virtual Glib::RefPtr< Atk::Objectget_summary_vfunc ()
 
virtual void set_caption_vfunc (const Glib::RefPtr< Atk::Object >& caption)
 
virtual void set_column_description_vfunc (int column, const char* description)
 
virtual void set_column_header_vfunc (int column, const Glib::RefPtr< Atk::Object >& header)
 
virtual void set_row_description_vfunc (int row, const char* description)
 
virtual void set_row_header_vfunc (int row, const Glib::RefPtr< Atk::Object >& header)
 
virtual void set_summary_vfunc (const Glib::RefPtr< Atk::Object >& accessible)
 
virtual bool is_column_selected_vfunc (int column) const
 
virtual bool is_row_selected_vfunc (int row) const
 
virtual bool is_selected_vfunc (int row, int column) const
 
virtual bool add_row_selection_vfunc (int row)
 
virtual bool remove_row_selection_vfunc (int row)
 
virtual bool add_column_selection_vfunc (int column)
 
virtual bool remove_column_selection_vfunc (int column)
 
virtual int get_selected_columns_vfunc (int** selected) const
 
virtual int get_selected_rows_vfunc (int** selected) const
 
virtual void on_row_inserted (int row, int num_inserted)
 This is a default handler for the signal signal_row_inserted(). More...
 
virtual void on_column_inserted (int column, int num_inserted)
 This is a default handler for the signal signal_column_inserted(). More...
 
virtual void on_row_deleted (int row, int num_deleted)
 This is a default handler for the signal signal_row_deleted(). More...
 
virtual void on_column_deleted (int column, int num_deleted)
 This is a default handler for the signal signal_column_deleted(). More...
 
virtual void on_row_reordered ()
 This is a default handler for the signal signal_row_reordered(). More...
 
virtual void on_column_reordered ()
 This is a default handler for the signal signal_column_reordered(). More...
 
virtual void on_model_changed ()
 This is a default handler for the signal signal_model_changed(). More...
 
- Protected Member Functions inherited from Atk::Text
 Text ()
 You should derive from this class to use it. More...
 
virtual Glib::ustring get_text_vfunc (int start_offset, int end_offset) const
 
virtual gunichar get_character_at_offset_vfunc (int offset) const
 
virtual Glib::ustring get_text_after_offset_vfunc (int offset, TextBoundary boundary_type, int& start_offset, int& end_offset) const
 
virtual Glib::ustring get_text_at_offset_vfunc (int offset, TextBoundary boundary_type, int& start_offset, int& end_offset) const
 
virtual Glib::ustring get_text_before_offset_vfunc (int offset, TextBoundary boundary_type, int& start_offset, int& end_offset) const
 
virtual int get_caret_offset_vfunc () const
 
virtual void get_character_extents_vfunc (int offset, int& x, int& y, int& width, int& height, CoordType coords) const
 
virtual AtkAttributeSet* get_run_attributes_vfunc (int offset, int& start_offset, int& end_offset) const
 
virtual AtkAttributeSet* get_default_attributes_vfunc () const
 
virtual int get_character_count_vfunc () const
 
virtual int get_offset_at_point_vfunc (int x, int y, CoordType coords) const
 
virtual int get_n_selections_vfunc () const
 
virtual Glib::ustring get_selection_vfunc (int selection_num, int& start_offset, int& end_offset) const
 
virtual bool add_selection_vfunc (int start_offset, int end_offset)
 
virtual bool remove_selection_vfunc (int selection_num)
 
virtual bool set_selection_vfunc (int selection_num, int start_offset, int end_offset)
 
virtual bool set_caret_offset_vfunc (int offset)
 
virtual void on_text_changed (int position, int length)
 This is a default handler for the signal signal_text_changed(). More...
 
virtual void on_text_caret_moved (int location)
 This is a default handler for the signal signal_text_caret_moved(). More...
 
virtual void on_text_selection_changed ()
 This is a default handler for the signal signal_text_selection_changed(). More...
 
virtual void on_text_attributes_changed ()
 This is a default handler for the signal signal_text_attributes_changed(). More...
 
- Protected Member Functions inherited from Atk::Hypertext
 Hypertext ()
 You should derive from this class to use it. More...
 
virtual void on_link_selected (int link_index)
 This is a default handler for the signal signal_link_selected(). More...
 
- Protected Member Functions inherited from Atk::Value
 Value ()
 You should derive from this class to use it. More...
 
virtual void get_current_value_vfunc (Glib::ValueBase& value) const
 
virtual void get_maximum_value_vfunc (Glib::ValueBase& value) const
 
virtual void get_minimum_value_vfunc (Glib::ValueBase& value) const
 
virtual bool set_current_value_vfunc (const Glib::ValueBase& value)
 
-

Detailed Description

-

An Atk::NoOpObject is an Atk::Object which purports to implement all ATK interfaces.

-

It is the type of Atk::Object which is created if an accessible object is requested for an object type for which no factory type is specified.

-

Constructor & Destructor Documentation

- -
-
- - - - - -
- - - - - - - - -
Atk::NoOpObject::NoOpObject (NoOpObject&& src)
-
-noexcept
-
- -
-
- -
-
- - - - - -
- - - - - - - -
virtual Atk::NoOpObject::~NoOpObject ()
-
-virtualnoexcept
-
- -
-
-

Member Function Documentation

- -
-
- - - - - -
- - - - - - - -
static GType Atk::NoOpObject::get_type ()
-
-static
-
- -

Get the GType for this class, for use with the underlying GObject type system.

- -
-
- -
-
- - - - - -
- - - - - - - -
AtkNoOpObject* Atk::NoOpObject::gobj ()
-
-inline
-
- -

Provides access to the underlying C GObject.

- -
-
- -
-
- - - - - -
- - - - - - - -
const AtkNoOpObject* Atk::NoOpObject::gobj () const
-
-inline
-
- -

Provides access to the underlying C GObject.

- -
-
- -
-
- - - - - - - -
AtkNoOpObject* Atk::NoOpObject::gobj_copy ()
-
- -

Provides access to the underlying C instance. The caller is responsible for unrefing it. Use when directly setting fields in structs.

- -
-
- -
-
- - - - - -
- - - - - - - - -
NoOpObject& Atk::NoOpObject::operator= (NoOpObject&& src)
-
-noexcept
-
- -
-
-

Friends And Related Function Documentation

- -
-
- - - - - -
- - - - - - - - - - - - - - - - - - -
Glib::RefPtr< Atk::NoOpObject > wrap (AtkNoOpObject * object,
bool take_copy = false 
)
-
-related
-
- -

A Glib::wrap() method for this object.

-
Parameters
- - - -
objectThe C instance.
take_copyFalse if the result should take ownership of the C instance. True if it should take a new copy or ref.
-
-
-
Returns
A C++ instance that wraps this C instance.
- -
-
-
- - - - Binary files /tmp/tmpOzhFOD/5A0TTRaIcC/atkmm1.6-2.24.2/doc/reference/html/classAtk_1_1NoOpObject__inherit__graph.png and /tmp/tmpOzhFOD/Bg2TspT7RQ/atkmm1.6-2.28.0/doc/reference/html/classAtk_1_1NoOpObject__inherit__graph.png differ diff -Nru atkmm1.6-2.24.2/doc/reference/html/classAtk_1_1NoOpObject-members.html atkmm1.6-2.28.0/doc/reference/html/classAtk_1_1NoOpObject-members.html --- atkmm1.6-2.24.2/doc/reference/html/classAtk_1_1NoOpObject-members.html 2015-11-29 20:05:33.315310716 +0000 +++ atkmm1.6-2.28.0/doc/reference/html/classAtk_1_1NoOpObject-members.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,516 +0,0 @@ - - - - - - -atkmm: Member List - - - - - - -
-
- - - - - - -
-
atkmm -  2.24.2 -
-
-
- - - - - -
-
-
-
Atk::NoOpObject Member List
-
-
- -

This is the complete list of members for Atk::NoOpObject, including all inherited members.

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Action()Atk::Actionprotected
Action(Action&& src) noexceptAtk::Action
add_column_selection(int column)Atk::Table
add_column_selection_vfunc(int column)Atk::Tableprotectedvirtual
add_destroy_notify_callback(void *data, func_destroy_notify func) const sigc::trackable
add_focus_handler(AtkFocusHandler handler)Atk::Component
add_focus_handler_vfunc(AtkFocusHandler handler)Atk::Componentprotectedvirtual
Atk::add_interface(GType gtype_implementer)Atk::Componentstatic
Atk::Action::add_interface(GType gtype_implementer)Atk::Actionstatic
Atk::EditableText::add_interface(GType gtype_implementer)Atk::EditableTextstatic
Atk::Image::add_interface(GType gtype_implementer)Atk::Imagestatic
Atk::Selection::add_interface(GType gtype_implementer)Atk::Selectionstatic
Atk::Table::add_interface(GType gtype_implementer)Atk::Tablestatic
Atk::Text::add_interface(GType gtype_implementer)Atk::Textstatic
Atk::Hypertext::add_interface(GType gtype_implementer)Atk::Hypertextstatic
Atk::Value::add_interface(GType gtype_implementer)Atk::Valuestatic
add_relationship(RelationType relationship, const Glib::RefPtr< Object >& target)Atk::Object
add_row_selection(int row)Atk::Table
add_row_selection_vfunc(int row)Atk::Tableprotectedvirtual
Atk::add_selection(int i)Atk::Selection
Atk::Text::add_selection(int start_offset, int end_offset)Atk::Text
Atk::add_selection_vfunc(int i)Atk::Selectionprotectedvirtual
Atk::Text::add_selection_vfunc(int start_offset, int end_offset)Atk::Textprotectedvirtual
clear_selection()Atk::Selection
clear_selection_vfunc()Atk::Selectionprotectedvirtual
Component()Atk::Componentprotected
Component(Component&& src) noexceptAtk::Component
connect_property_changed(const Glib::ustring &property_name, const sigc::slot< void > &slot)Glib::ObjectBase
connect_property_changed_with_return(const Glib::ustring &property_name, const sigc::slot< void > &slot)Glib::ObjectBase
contains(int x, int y, CoordType coord_type) const Atk::Component
contains_vfunc(int x, int y, CoordType coord_type) const Atk::Componentprotectedvirtual
copy_text(int start_pos, int end_pos)Atk::EditableText
copy_text_vfunc(int start_pos, int end_pos)Atk::EditableTextprotectedvirtual
cut_text(int start_pos, int end_pos)Atk::EditableText
cut_text_vfunc(int start_pos, int end_pos)Atk::EditableTextprotectedvirtual
delete_text(int start_pos, int end_pos)Atk::EditableText
delete_text_vfunc(int start_pos, int end_pos)Atk::EditableTextprotectedvirtual
DestroyNotify typedefGlib::Object
do_action(int i)Atk::Action
do_action_vfunc(int i)Atk::Actionprotectedvirtual
EditableText()Atk::EditableTextprotected
EditableText(EditableText&& src) noexceptAtk::EditableText
freeze_notify()Glib::ObjectBase
func_destroy_notify typedefsigc::trackable
get_accessible_at_point(int x, int y, CoordType coord_type)Atk::Component
get_accessible_at_point_vfunc(int x, int y, CoordType coord_type)Atk::Componentprotectedvirtual
get_accessible_child(int i)Atk::Object
get_at(int row, int column)Atk::Table
get_at(int row, int column) const Atk::Table
get_at_vfunc(int row, int column)Atk::Tableprotectedvirtual
get_bounded_ranges(const Rectangle& rect, CoordType coord_type, TextClipType x_clip_type, TextClipType y_clip_type)Atk::Text
get_caption()Atk::Table
get_caption() const Atk::Table
get_caption_vfunc()Atk::Tableprotectedvirtual
get_caret_offset() const Atk::Text
get_caret_offset_vfunc() const Atk::Textprotectedvirtual
get_character_at_offset(int offset) const Atk::Text
get_character_at_offset_vfunc(int offset) const Atk::Textprotectedvirtual
get_character_count() const Atk::Text
get_character_count_vfunc() const Atk::Textprotectedvirtual
get_character_extents(int offset, int& x, int& y, int& width, int& height, CoordType coords) const Atk::Text
get_character_extents_vfunc(int offset, int& x, int& y, int& width, int& height, CoordType coords) const Atk::Textprotectedvirtual
get_column_at_index(int index) const Atk::Table
get_column_at_index_vfunc(int index) const Atk::Tableprotectedvirtual
get_column_description(int column) const Atk::Table
get_column_description_vfunc(int column) const Atk::Tableprotectedvirtual
get_column_extent_at(int row, int column) const Atk::Table
get_column_extent_at_vfunc(int row, int column) const Atk::Tableprotectedvirtual
get_column_header(int column)Atk::Table
get_column_header(int column) const Atk::Table
get_column_header_vfunc(int column)Atk::Tableprotectedvirtual
get_current_value(Glib::ValueBase& value) const Atk::Value
get_current_value_vfunc(Glib::ValueBase& value) const Atk::Valueprotectedvirtual
get_data(const QueryQuark &key)Glib::Object
get_default_attributes() const Atk::Text
get_default_attributes_vfunc() const Atk::Textprotectedvirtual
Atk::get_description() const Atk::Object
Atk::Action::get_description(int i) const Atk::Action
get_description_vfunc(int i) const Atk::Actionprotectedvirtual
get_extents(int& x, int& y, int& width, int& height, CoordType coord_type) const Atk::Component
get_extents_vfunc(int& x, int& y, int& width, int& height, CoordType coord_type) const Atk::Componentprotectedvirtual
get_image_description() const Atk::Image
get_image_description_vfunc() const Atk::Imageprotectedvirtual
get_image_position(int& x, int& y, CoordType coord_type) const Atk::Image
get_image_position_vfunc(int& x, int& y, CoordType coord_type) const Atk::Imageprotectedvirtual
get_image_size(int& width, int& height) const Atk::Image
get_image_size_vfunc(int& width, int& height) const Atk::Imageprotectedvirtual
get_increment()Atk::Value
get_index_at(int row, int column) const Atk::Table
get_index_at_vfunc(int row, int column) const Atk::Tableprotectedvirtual
get_index_in_parent()Atk::Object
get_keybinding(int i)Atk::Action
get_keybinding_vfunc(int i) const Atk::Actionprotectedvirtual
get_layer() const Atk::Component
get_layer_vfunc() const Atk::Componentprotectedvirtual
get_link(int link_index)Atk::Hypertext
get_link(int link_index) const Atk::Hypertext
get_link_index(int char_index) const Atk::Hypertext
get_link_index_vfunc(int char_index) const Atk::Hypertextvirtual
get_link_vfunc(int link_index)Atk::Hypertextvirtual
get_localized_name(int i)Atk::Action
get_maximum_value(Glib::ValueBase& value) const Atk::Value
get_maximum_value_vfunc(Glib::ValueBase& value) const Atk::Valueprotectedvirtual
get_mdi_zorder() const Atk::Component
get_mdi_zorder_vfunc() const Atk::Componentprotectedvirtual
get_minimum_value(Glib::ValueBase& value) const Atk::Value
get_minimum_value_vfunc(Glib::ValueBase& value) const Atk::Valueprotectedvirtual
get_n_accessible_children() const Atk::Object
get_n_actions() const Atk::Action
get_n_actions_vfunc() const Atk::Actionprotectedvirtual
get_n_columns() const Atk::Table
get_n_columns_vfunc() const Atk::Tableprotectedvirtual
get_n_links() const Atk::Hypertext
get_n_links_vfunc() const Atk::Hypertextvirtual
get_n_rows() const Atk::Table
get_n_rows_vfunc() const Atk::Tableprotectedvirtual
get_n_selections() const Atk::Text
get_n_selections_vfunc() const Atk::Textprotectedvirtual
Atk::get_name() const Atk::Object
Atk::Action::get_name(int i) const Atk::Action
get_name_vfunc(int i) const Atk::Actionprotectedvirtual
get_offset_at_point(int x, int y, CoordType coords) const Atk::Text
get_offset_at_point_vfunc(int x, int y, CoordType coords) const Atk::Textprotectedvirtual
get_parent()Atk::Object
get_position(int& x, int& y, CoordType coord_type) const Atk::Component
get_position_vfunc(int& x, int& y, CoordType coord_type) const Atk::Componentprotectedvirtual
get_property(const Glib::ustring &property_name, PropertyType &value) const Glib::ObjectBase
get_property_value(const Glib::ustring &property_name, Glib::ValueBase &value) const Glib::ObjectBase
get_range() const Atk::Value
get_range_extents(int start_offset, int end_offset, CoordType coord_type, Rectangle& rect)Atk::Text
get_relation_set()Atk::Object
get_role() const Atk::Object
get_row_at_index(int index) const Atk::Table
get_row_at_index_vfunc(int index) const Atk::Tableprotectedvirtual
get_row_description(int row) const Atk::Table
get_row_description_vfunc(int row) const Atk::Tableprotectedvirtual
get_row_extent_at(int row, int column) const Atk::Table
get_row_extent_at_vfunc(int row, int column) const Atk::Tableprotectedvirtual
get_row_header(int row)Atk::Table
get_row_header(int row) const Atk::Table
get_row_header_vfunc(int row)Atk::Tableprotectedvirtual
get_run_attributes(int offset, int& start_offset, int& end_offset) const Atk::Text
get_run_attributes_vfunc(int offset, int& start_offset, int& end_offset) const Atk::Textprotectedvirtual
get_selected_columns() const Atk::Table
get_selected_columns_vfunc(int** selected) const Atk::Tableprotectedvirtual
get_selected_rows() const Atk::Table
get_selected_rows_vfunc(int** selected) const Atk::Tableprotectedvirtual
Atk::get_selection(int i)Atk::Selection
Atk::Text::get_selection(int selection_num, int& start_offset, int& end_offset) const Atk::Text
get_selection_count() const Atk::Selection
get_selection_count_vfunc() const Atk::Selectionprotectedvirtual
Atk::get_selection_vfunc(int i)Atk::Selectionprotectedvirtual
Atk::Text::get_selection_vfunc(int selection_num, int& start_offset, int& end_offset) const Atk::Textprotectedvirtual
get_size(int& width, int& height) const Atk::Component
get_size_vfunc(int& width, int& height) const Atk::Componentprotectedvirtual
get_state_set()Atk::Object
get_string_at_offset(int offset, TextGranularity granularity, int& start_offset, int& end_offset)Atk::Text
get_summary()Atk::Table
get_summary() const Atk::Table
get_summary_vfunc()Atk::Tableprotectedvirtual
get_text(int start_offset, int end_offset) const Atk::Text
get_text_after_offset(int offset, TextBoundary boundary_type, int& start_offset, int& end_offset) const Atk::Text
get_text_after_offset_vfunc(int offset, TextBoundary boundary_type, int& start_offset, int& end_offset) const Atk::Textprotectedvirtual
get_text_at_offset(int offset, TextBoundary boundary_type, int& start_offset, int& end_offset) const Atk::Text
get_text_at_offset_vfunc(int offset, TextBoundary boundary_type, int& start_offset, int& end_offset) const Atk::Textprotectedvirtual
get_text_before_offset(int offset, TextBoundary boundary_type, int& start_offset, int& end_offset) const Atk::Text
get_text_before_offset_vfunc(int offset, TextBoundary boundary_type, int& start_offset, int& end_offset) const Atk::Textprotectedvirtual
get_text_vfunc(int start_offset, int end_offset) const Atk::Textprotectedvirtual
get_type()Atk::NoOpObjectstatic
get_value_and_text(double& value, Glib::ustring& text)Atk::Value
gobj()Atk::NoOpObjectinline
gobj() const Atk::NoOpObjectinline
gobj_copy()Atk::NoOpObject
Glib::Object::gobj_copy() const Glib::ObjectBase
grab_focus()Atk::Component
grab_focus_vfunc()Atk::Componentprotectedvirtual
Hypertext()Atk::Hypertextprotected
Hypertext(Hypertext&& src) noexceptAtk::Hypertext
Image()Atk::Imageprotected
Image(Image&& src) noexceptAtk::Image
initialize(GObject *castitem)Glib::ObjectBaseprotected
initialize_move(GObject *castitem, Glib::ObjectBase *previous_wrapper)Glib::ObjectBaseprotected
insert_text(const Glib::ustring& string, int length, int& position)Atk::EditableText
insert_text_vfunc(const Glib::ustring& string, int length, int& position)Atk::EditableTextprotectedvirtual
Atk::Interface()Glib::Interface
Atk::Interface(Interface &&src) noexceptGlib::Interface
Atk::Interface(const Glib::Interface_Class &interface_class)Glib::Interface
Atk::Interface(GObject *castitem)Glib::Interface
Atk::Interface(const Interface &)=deleteGlib::Interface
Atk::Action::Interface()Glib::Interface
Atk::Action::Interface(Interface &&src) noexceptGlib::Interface
Atk::Action::Interface(const Glib::Interface_Class &interface_class)Glib::Interface
Atk::Action::Interface(GObject *castitem)Glib::Interface
Atk::Action::Interface(const Interface &)=deleteGlib::Interface
Atk::EditableText::Interface()Glib::Interface
Atk::EditableText::Interface(Interface &&src) noexceptGlib::Interface
Atk::EditableText::Interface(const Glib::Interface_Class &interface_class)Glib::Interface
Atk::EditableText::Interface(GObject *castitem)Glib::Interface
Atk::EditableText::Interface(const Interface &)=deleteGlib::Interface
Atk::Image::Interface()Glib::Interface
Atk::Image::Interface(Interface &&src) noexceptGlib::Interface
Atk::Image::Interface(const Glib::Interface_Class &interface_class)Glib::Interface
Atk::Image::Interface(GObject *castitem)Glib::Interface
Atk::Image::Interface(const Interface &)=deleteGlib::Interface
Atk::Selection::Interface()Glib::Interface
Atk::Selection::Interface(Interface &&src) noexceptGlib::Interface
Atk::Selection::Interface(const Glib::Interface_Class &interface_class)Glib::Interface
Atk::Selection::Interface(GObject *castitem)Glib::Interface
Atk::Selection::Interface(const Interface &)=deleteGlib::Interface
Atk::Table::Interface()Glib::Interface
Atk::Table::Interface(Interface &&src) noexceptGlib::Interface
Atk::Table::Interface(const Glib::Interface_Class &interface_class)Glib::Interface
Atk::Table::Interface(GObject *castitem)Glib::Interface
Atk::Table::Interface(const Interface &)=deleteGlib::Interface
Atk::Text::Interface()Glib::Interface
Atk::Text::Interface(Interface &&src) noexceptGlib::Interface
Atk::Text::Interface(const Glib::Interface_Class &interface_class)Glib::Interface
Atk::Text::Interface(GObject *castitem)Glib::Interface
Atk::Text::Interface(const Interface &)=deleteGlib::Interface
Atk::Hypertext::Interface()Glib::Interface
Atk::Hypertext::Interface(Interface &&src) noexceptGlib::Interface
Atk::Hypertext::Interface(const Glib::Interface_Class &interface_class)Glib::Interface
Atk::Hypertext::Interface(GObject *castitem)Glib::Interface
Atk::Hypertext::Interface(const Interface &)=deleteGlib::Interface
Atk::Value::Interface()Glib::Interface
Atk::Value::Interface(Interface &&src) noexceptGlib::Interface
Atk::Value::Interface(const Glib::Interface_Class &interface_class)Glib::Interface
Atk::Value::Interface(GObject *castitem)Glib::Interface
Atk::Value::Interface(const Interface &)=deleteGlib::Interface
is_child_selected(int i) const Atk::Selection
is_child_selected_vfunc(int i) const Atk::Selectionprotectedvirtual
is_column_selected(int column) const Atk::Table
is_column_selected_vfunc(int column) const Atk::Tableprotectedvirtual
is_row_selected(int row) const Atk::Table
is_row_selected_vfunc(int row) const Atk::Tableprotectedvirtual
is_selected(int row, int column) const Atk::Table
is_selected_vfunc(int row, int column) const Atk::Tableprotectedvirtual
NoOpObject(NoOpObject&& src) noexceptAtk::NoOpObject
notify_callbacks()sigc::trackable
notify_state_change(State state, bool value)Atk::Object
Object(Object&& src) noexceptAtk::Object
Glib::Object::Object(const Object &)=deleteGlib::Object
Glib::Object::Object(Object &&src) noexceptGlib::Object
Glib::Object::Object()Glib::Objectprotected
Glib::Object::Object(const Glib::ConstructParams &construct_params)Glib::Objectprotected
Glib::Object::Object(GObject *castitem)Glib::Objectprotected
ObjectBase(const ObjectBase &)=deleteGlib::ObjectBase
ObjectBase()Glib::ObjectBaseprotected
ObjectBase(const char *custom_type_name)Glib::ObjectBaseprotected
ObjectBase(const std::type_info &custom_type_info)Glib::ObjectBaseprotected
ObjectBase(ObjectBase &&src) noexceptGlib::ObjectBaseprotected
on_active_descendant_changed(void** child)Atk::Objectprotectedvirtual
on_children_changed(guint change_index, gpointer changed_child)Atk::Objectprotectedvirtual
on_column_deleted(int column, int num_deleted)Atk::Tableprotectedvirtual
on_column_inserted(int column, int num_inserted)Atk::Tableprotectedvirtual
on_column_reordered()Atk::Tableprotectedvirtual
on_focus_event(bool focus_in)Atk::Objectprotectedvirtual
on_link_selected(int link_index)Atk::Hypertextprotectedvirtual
on_model_changed()Atk::Tableprotectedvirtual
on_property_change(AtkPropertyValues* values)Atk::Objectprotectedvirtual
on_row_deleted(int row, int num_deleted)Atk::Tableprotectedvirtual
on_row_inserted(int row, int num_inserted)Atk::Tableprotectedvirtual
on_row_reordered()Atk::Tableprotectedvirtual
on_selection_changed()Atk::Selectionprotectedvirtual
on_state_change(const Glib::ustring& name, bool state_set)Atk::Objectprotectedvirtual
on_text_attributes_changed()Atk::Textprotectedvirtual
on_text_caret_moved(int location)Atk::Textprotectedvirtual
on_text_changed(int position, int length)Atk::Textprotectedvirtual
on_text_selection_changed()Atk::Textprotectedvirtual
on_visible_data_changed()Atk::Objectprotectedvirtual
operator=(NoOpObject&& src) noexceptAtk::NoOpObject
Atk::Object::operator=(Object&& src) noexceptAtk::Object
Atk::Glib::Object::operator=(const Object &)=deleteGlib::Object
Atk::Glib::Object::operator=(Object &&src) noexceptGlib::Object
Atk::Glib::ObjectBase::operator=(const ObjectBase &)=deleteGlib::ObjectBase
Atk::Glib::ObjectBase::operator=(ObjectBase &&src) noexceptGlib::ObjectBaseprotected
Atk::sigc::trackable::operator=(const trackable &src)sigc::trackable
Atk::sigc::trackable::operator=(trackable &&src)sigc::trackable
Atk::Component::operator=(Component&& src) noexceptAtk::Component
Atk::Glib::Interface::operator=(Interface &&src) noexceptGlib::Interface
Atk::Glib::Interface::operator=(const Interface &)=deleteGlib::Interface
Atk::Action::operator=(Action&& src) noexceptAtk::Action
Atk::Glib::Interface::operator=(Interface &&src) noexceptGlib::Interface
Atk::Glib::Interface::operator=(const Interface &)=deleteGlib::Interface
Atk::EditableText::operator=(EditableText&& src) noexceptAtk::EditableText
Atk::Glib::Interface::operator=(Interface &&src) noexceptGlib::Interface
Atk::Glib::Interface::operator=(const Interface &)=deleteGlib::Interface
Atk::Image::operator=(Image&& src) noexceptAtk::Image
Atk::Glib::Interface::operator=(Interface &&src) noexceptGlib::Interface
Atk::Glib::Interface::operator=(const Interface &)=deleteGlib::Interface
Atk::Selection::operator=(Selection&& src) noexceptAtk::Selection
Atk::Glib::Interface::operator=(Interface &&src) noexceptGlib::Interface
Atk::Glib::Interface::operator=(const Interface &)=deleteGlib::Interface
Atk::Table::operator=(Table&& src) noexceptAtk::Table
Atk::Glib::Interface::operator=(Interface &&src) noexceptGlib::Interface
Atk::Glib::Interface::operator=(const Interface &)=deleteGlib::Interface
Atk::Text::operator=(Text&& src) noexceptAtk::Text
Atk::Glib::Interface::operator=(Interface &&src) noexceptGlib::Interface
Atk::Glib::Interface::operator=(const Interface &)=deleteGlib::Interface
Atk::Hypertext::operator=(Hypertext&& src) noexceptAtk::Hypertext
Atk::Glib::Interface::operator=(Interface &&src) noexceptGlib::Interface
Atk::Glib::Interface::operator=(const Interface &)=deleteGlib::Interface
Atk::Value::operator=(Value&& src) noexceptAtk::Value
Glib::Interface::operator=(Interface &&src) noexceptGlib::Interface
Glib::Interface::operator=(const Interface &)=deleteGlib::Interface
paste_text(int position)Atk::EditableText
paste_text_vfunc(int position)Atk::EditableTextprotectedvirtual
property_accessible_component_layer() const Atk::Object
property_accessible_component_mdi_zorder() const Atk::Object
property_accessible_description()Atk::Object
property_accessible_description() const Atk::Object
property_accessible_name()Atk::Object
property_accessible_name() const Atk::Object
property_accessible_parent()Atk::Object
property_accessible_parent() const Atk::Object
property_accessible_role()Atk::Object
property_accessible_role() const Atk::Object
property_accessible_table_caption()Atk::Object
property_accessible_table_caption() const Atk::Object
property_accessible_table_column_description()Atk::Object
property_accessible_table_column_description() const Atk::Object
property_accessible_table_column_header()Atk::Object
property_accessible_table_column_header() const Atk::Object
property_accessible_table_row_description()Atk::Object
property_accessible_table_row_description() const Atk::Object
property_accessible_table_row_header()Atk::Object
property_accessible_table_row_header() const Atk::Object
property_accessible_table_summary()Atk::Object
property_accessible_table_summary() const Atk::Object
property_accessible_value()Atk::Object
property_accessible_value() const Atk::Object
Rectangle typedefAtk::Text
reference() const Glib::ObjectBasevirtual
remove_column_selection(int column)Atk::Table
remove_column_selection_vfunc(int column)Atk::Tableprotectedvirtual
remove_data(const QueryQuark &quark)Glib::Object
remove_destroy_notify_callback(void *data) const sigc::trackable
remove_focus_handler(guint handler_id)Atk::Component
remove_focus_handler_vfunc(guint handler_id)Atk::Componentprotectedvirtual
remove_relationship(RelationType relationship, const Glib::RefPtr< Object >& target)Atk::Object
remove_row_selection(int row)Atk::Table
remove_row_selection_vfunc(int row)Atk::Tableprotectedvirtual
Atk::remove_selection(int i)Atk::Selection
Atk::Text::remove_selection(int selection_num)Atk::Text
Atk::remove_selection_vfunc(int i)Atk::Selectionprotectedvirtual
Atk::Text::remove_selection_vfunc(int selection_num)Atk::Textprotectedvirtual
select_all_selection()Atk::Selection
select_all_selection_vfunc()Atk::Selectionprotectedvirtual
Selection()Atk::Selectionprotected
Selection(Selection&& src) noexceptAtk::Selection
set_caption(const Glib::RefPtr< Atk::Object >& caption)Atk::Table
set_caption_vfunc(const Glib::RefPtr< Atk::Object >& caption)Atk::Tableprotectedvirtual
set_caret_offset(int offset)Atk::Text
set_caret_offset_vfunc(int offset)Atk::Textprotectedvirtual
set_column_description(int column, const Glib::ustring& description)Atk::Table
set_column_description_vfunc(int column, const char* description)Atk::Tableprotectedvirtual
set_column_header(int column, const Glib::RefPtr< Atk::Object >& header)Atk::Table
set_column_header_vfunc(int column, const Glib::RefPtr< Atk::Object >& header)Atk::Tableprotectedvirtual
set_current_value(const Glib::ValueBase& value)Atk::Value
set_current_value_vfunc(const Glib::ValueBase& value)Atk::Valueprotectedvirtual
set_data(const Quark &key, void *data)Glib::Object
set_data(const Quark &key, void *data, DestroyNotify notify)Glib::Object
Atk::set_description(const Glib::ustring& description)Atk::Object
Atk::Action::set_description(int i, const Glib::ustring& desc)Atk::Action
set_description_vfunc(int i, const Glib::ustring& desc)Atk::Actionprotectedvirtual
set_extents(int x, int y, int width, int height, CoordType coord_type)Atk::Component
set_extents_vfunc(int x, int y, int width, int height, CoordType coord_type)Atk::Componentprotectedvirtual
set_image_description(const Glib::ustring& description)Atk::Image
set_image_description_vfunc(const Glib::ustring& description)Atk::Imageprotectedvirtual
set_name(const Glib::ustring& name)Atk::Object
set_parent(const Glib::RefPtr< Atk::Object >& parent)Atk::Object
set_position(int x, int y, CoordType coord_type)Atk::Component
set_position_vfunc(int x, int y, CoordType coord_type)Atk::Componentprotectedvirtual
set_property(const Glib::ustring &property_name, const PropertyType &value)Glib::ObjectBase
set_property_value(const Glib::ustring &property_name, const Glib::ValueBase &value)Glib::ObjectBase
set_role(Role role)Atk::Object
set_row_description(int row, const Glib::ustring& description)Atk::Table
set_row_description_vfunc(int row, const char* description)Atk::Tableprotectedvirtual
set_row_header(int row, const Glib::RefPtr< Atk::Object >& header)Atk::Table
set_row_header_vfunc(int row, const Glib::RefPtr< Atk::Object >& header)Atk::Tableprotectedvirtual
set_run_attributes(const AttributeSet& attrib_set, int start_offset, int end_offset)Atk::EditableText
set_run_attributes_vfunc(AtkAttributeSet* attrib_set, int start_offset, int end_offset)Atk::EditableTextprotectedvirtual
set_selection(int selection_num, int start_offset, int end_offset)Atk::Text
set_selection_vfunc(int selection_num, int start_offset, int end_offset)Atk::Textprotectedvirtual
set_size(int width, int height)Atk::Component
set_size_vfunc(int width, int height)Atk::Componentprotectedvirtual
set_summary(const Glib::RefPtr< Atk::Object >& accessible)Atk::Table
set_summary_vfunc(const Glib::RefPtr< Atk::Object >& accessible)Atk::Tableprotectedvirtual
set_text_contents(const Glib::ustring& string)Atk::EditableText
set_text_contents_vfunc(const Glib::ustring& string)Atk::EditableTextprotectedvirtual
set_value(const gdouble new_value)Atk::Value
signal_active_descendant_changed()Atk::Object
signal_children_changed()Atk::Object
signal_column_deleted()Atk::Table
signal_column_inserted()Atk::Table
signal_column_reordered()Atk::Table
signal_focus_event()Atk::Object
signal_link_selected()Atk::Hypertext
signal_model_changed()Atk::Table
signal_property_change()Atk::Object
signal_row_deleted()Atk::Table
signal_row_inserted()Atk::Table
signal_row_reordered()Atk::Table
signal_selection_changed()Atk::Selection
signal_state_change()Atk::Object
signal_text_attributes_changed()Atk::Text
signal_text_caret_moved()Atk::Text
signal_text_changed()Atk::Text
signal_text_selection_changed()Atk::Text
signal_visible_data_changed()Atk::Object
steal_data(const QueryQuark &quark)Glib::Object
Table()Atk::Tableprotected
Table(Table&& src) noexceptAtk::Table
Text()Atk::Textprotected
Text(Text&& src) noexceptAtk::Text
thaw_notify()Glib::ObjectBase
trackable() noexceptsigc::trackable
trackable(const trackable &src) noexceptsigc::trackable
trackable(trackable &&src)sigc::trackable
unreference() const Glib::ObjectBasevirtual
Value()Atk::Valueprotected
Value(Value&& src) noexceptAtk::Value
wrap(AtkNoOpObject* object, bool take_copy=false)Atk::NoOpObjectrelated
Atk::Object::wrap(AtkObject* object, bool take_copy=false)Atk::Objectrelated
Atk::Glib::Object::wrap(GObject *object, bool take_copy=false)Glib::Object
Atk::Component::wrap(AtkComponent* object, bool take_copy=false)Atk::Componentrelated
Atk::Action::wrap(AtkAction* object, bool take_copy=false)Atk::Actionrelated
Atk::EditableText::wrap(AtkEditableText* object, bool take_copy=false)Atk::EditableTextrelated
Atk::Image::wrap(AtkImage* object, bool take_copy=false)Atk::Imagerelated
Atk::Selection::wrap(AtkSelection* object, bool take_copy=false)Atk::Selectionrelated
Atk::Table::wrap(AtkTable* object, bool take_copy=false)Atk::Tablerelated
Atk::Text::wrap(AtkText* object, bool take_copy=false)Atk::Textrelated
Atk::Hypertext::wrap(AtkHypertext* object, bool take_copy=false)Atk::Hypertextrelated
Atk::Value::wrap(AtkValue* object, bool take_copy=false)Atk::Valuerelated
~Action() noexceptAtk::Actionvirtual
~Component() noexceptAtk::Componentvirtual
~EditableText() noexceptAtk::EditableTextvirtual
~Hypertext() noexceptAtk::Hypertextvirtual
~Image() noexceptAtk::Imagevirtual
~Interface() noexceptGlib::Interfacevirtual
~NoOpObject() noexceptAtk::NoOpObjectvirtual
~Object() noexceptAtk::Objectvirtual
~ObjectBase() noexcept=0Glib::ObjectBaseprotectedpure virtual
~Selection() noexceptAtk::Selectionvirtual
~Table() noexceptAtk::Tablevirtual
~Text() noexceptAtk::Textvirtual
~trackable()sigc::trackable
~Value() noexceptAtk::Valuevirtual
- - - - diff -Nru atkmm1.6-2.24.2/doc/reference/html/classAtk_1_1ObjectAccessible.html atkmm1.6-2.28.0/doc/reference/html/classAtk_1_1ObjectAccessible.html --- atkmm1.6-2.24.2/doc/reference/html/classAtk_1_1ObjectAccessible.html 2015-11-29 20:05:33.335310336 +0000 +++ atkmm1.6-2.28.0/doc/reference/html/classAtk_1_1ObjectAccessible.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,745 +0,0 @@ - - - - - - -atkmm: Atk::ObjectAccessible Class Reference - - - - - - -
-
- - - - - - -
-
atkmm -  2.24.2 -
-
-
- - - - - -
- -
- -

This object class is derived from AtkObject and can be used as a basis implementing accessible objects. - More...

- -

#include <atkmm/objectaccessible.h>

-
-Inheritance diagram for Atk::ObjectAccessible:
-
-
Inheritance graph
- - -
[legend]
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

-Public Member Functions

 ObjectAccessible (ObjectAccessible&& src) noexcept
 
ObjectAccessibleoperator= (ObjectAccessible&& src) noexcept
 
virtual ~ObjectAccessible () noexcept
 
AtkGObjectAccessible* gobj ()
 Provides access to the underlying C GObject. More...
 
const AtkGObjectAccessible* gobj () const
 Provides access to the underlying C GObject. More...
 
AtkGObjectAccessible* gobj_copy ()
 Provides access to the underlying C instance. The caller is responsible for unrefing it. Use when directly setting fields in structs. More...
 
- Public Member Functions inherited from Atk::Object
 Object (Object&& src) noexcept
 
Objectoperator= (Object&& src) noexcept
 
virtual ~Object () noexcept
 
AtkObject* gobj ()
 Provides access to the underlying C GObject. More...
 
const AtkObject* gobj () const
 Provides access to the underlying C GObject. More...
 
AtkObject* gobj_copy ()
 Provides access to the underlying C instance. The caller is responsible for unrefing it. Use when directly setting fields in structs. More...
 
Glib::ustring get_name () const
 Gets the accessible name of the accessible. More...
 
Glib::ustring get_description () const
 Gets the accessible description of the accessible. More...
 
Glib::RefPtr< Atk::Objectget_parent ()
 Gets the accessible parent of the accessible. More...
 
int get_n_accessible_children () const
 Gets the number of accessible children of the accessible. More...
 
Glib::RefPtr< Atk::Objectget_accessible_child (int i)
 Gets a reference to the specified accessible child of the object. More...
 
Glib::RefPtr< RelationSetget_relation_set ()
 Gets the Atk::RelationSet associated with the object. More...
 
Role get_role () const
 Gets the role of the accessible. More...
 
Glib::RefPtr< StateSetget_state_set ()
 Gets a reference to the state set of the accessible; the caller must unreference it when it is no longer needed. More...
 
int get_index_in_parent ()
 Gets the 0-based index of this accessible in its parent; returns -1 if the accessible does not have an accessible parent. More...
 
void set_name (const Glib::ustring& name)
 Sets the accessible name of the accessible. More...
 
void set_description (const Glib::ustring& description)
 Sets the accessible description of the accessible. More...
 
void set_parent (const Glib::RefPtr< Atk::Object >& parent)
 Sets the accessible parent of the accessible. More...
 
void set_role (Role role)
 Sets the role of the accessible. More...
 
void notify_state_change (State state, bool value)
 Emits a state-change signal for the specified state. More...
 
bool add_relationship (RelationType relationship, const Glib::RefPtr< Object >& target)
 Adds a relationship of the specified type with the specified target. More...
 
bool remove_relationship (RelationType relationship, const Glib::RefPtr< Object >& target)
 Removes a relationship of the specified type with the specified target. More...
 
Glib::SignalProxy2< void, guint, gpointer > signal_children_changed ()
 
Glib::SignalProxy1< void, bool > signal_focus_event ()
 
Glib::SignalProxy1< void, AtkPropertyValues* > signal_property_change ()
 
Glib::SignalProxy2< void, const Glib::ustring&, bool > signal_state_change ()
 
Glib::SignalProxy0< void > signal_visible_data_changed ()
 
Glib::SignalProxy1< void, void** > signal_active_descendant_changed ()
 
Glib::PropertyProxy< Glib::ustringproperty_accessible_name ()
 Object instance's name formatted for assistive technology access. More...
 
Glib::PropertyProxy_ReadOnly< Glib::ustringproperty_accessible_name () const
 Object instance's name formatted for assistive technology access. More...
 
Glib::PropertyProxy< Glib::ustringproperty_accessible_description ()
 Description of an object, formatted for assistive technology access. More...
 
Glib::PropertyProxy_ReadOnly< Glib::ustringproperty_accessible_description () const
 Description of an object, formatted for assistive technology access. More...
 
Glib::PropertyProxy< Glib::RefPtr< Atk::Object > > property_accessible_parent ()
 Parent of the current accessible as returned by atk_object_get_parent(). More...
 
Glib::PropertyProxy_ReadOnly< Glib::RefPtr< Atk::Object > > property_accessible_parent () const
 Parent of the current accessible as returned by atk_object_get_parent(). More...
 
Glib::PropertyProxy< double > property_accessible_value ()
 Is used to notify that the value has changed. More...
 
Glib::PropertyProxy_ReadOnly< double > property_accessible_value () const
 Is used to notify that the value has changed. More...
 
Glib::PropertyProxy< int > property_accessible_role ()
 The accessible role of this object. More...
 
Glib::PropertyProxy_ReadOnly< int > property_accessible_role () const
 The accessible role of this object. More...
 
Glib::PropertyProxy_ReadOnly< int > property_accessible_component_layer () const
 The accessible layer of this object. More...
 
Glib::PropertyProxy_ReadOnly< int > property_accessible_component_mdi_zorder () const
 The accessible MDI value of this object. More...
 
Glib::PropertyProxy< Glib::ustringproperty_accessible_table_caption ()
 Is used to notify that the table caption has changed; this property should not be used. More...
 
Glib::PropertyProxy_ReadOnly< Glib::ustringproperty_accessible_table_caption () const
 Is used to notify that the table caption has changed; this property should not be used. More...
 
Glib::PropertyProxy< Glib::ustringproperty_accessible_table_column_description ()
 Is used to notify that the table column description has changed. More...
 
Glib::PropertyProxy_ReadOnly< Glib::ustringproperty_accessible_table_column_description () const
 Is used to notify that the table column description has changed. More...
 
Glib::PropertyProxy< Glib::RefPtr< Atk::Object > > property_accessible_table_column_header ()
 Is used to notify that the table column header has changed. More...
 
Glib::PropertyProxy_ReadOnly< Glib::RefPtr< Atk::Object > > property_accessible_table_column_header () const
 Is used to notify that the table column header has changed. More...
 
Glib::PropertyProxy< Glib::ustringproperty_accessible_table_row_description ()
 Is used to notify that the table row description has changed. More...
 
Glib::PropertyProxy_ReadOnly< Glib::ustringproperty_accessible_table_row_description () const
 Is used to notify that the table row description has changed. More...
 
Glib::PropertyProxy< Glib::RefPtr< Atk::Object > > property_accessible_table_row_header ()
 Is used to notify that the table row header has changed. More...
 
Glib::PropertyProxy_ReadOnly< Glib::RefPtr< Atk::Object > > property_accessible_table_row_header () const
 Is used to notify that the table row header has changed. More...
 
Glib::PropertyProxy< Glib::RefPtr< Atk::Object > > property_accessible_table_summary ()
 Is used to notify that the table summary has changed. More...
 
Glib::PropertyProxy_ReadOnly< Glib::RefPtr< Atk::Object > > property_accessible_table_summary () const
 Is used to notify that the table summary has changed. More...
 
- Public Member Functions inherited from Glib::Object
 Object (const Object &)=delete
 
Objectoperator= (const Object &)=delete
 
 Object (Object &&src) noexcept
 
Objectoperator= (Object &&src) noexcept
 
void * get_data (const QueryQuark &key)
 
void set_data (const Quark &key, void *data)
 
void set_data (const Quark &key, void *data, DestroyNotify notify)
 
void remove_data (const QueryQuark &quark)
 
void * steal_data (const QueryQuark &quark)
 
Glib::RefPtr< Glib::Objectwrap (GObject *object, bool take_copy=false)
 
- Public Member Functions inherited from Glib::ObjectBase
 ObjectBase (const ObjectBase &)=delete
 
ObjectBaseoperator= (const ObjectBase &)=delete
 
void set_property_value (const Glib::ustring &property_name, const Glib::ValueBase &value)
 
void get_property_value (const Glib::ustring &property_name, Glib::ValueBase &value) const
 
void set_property (const Glib::ustring &property_name, const PropertyType &value)
 
void get_property (const Glib::ustring &property_name, PropertyType &value) const
 
void connect_property_changed (const Glib::ustring &property_name, const sigc::slot< void > &slot)
 
sigc::connection connect_property_changed_with_return (const Glib::ustring &property_name, const sigc::slot< void > &slot)
 
void freeze_notify ()
 
void thaw_notify ()
 
virtual void reference () const
 
virtual void unreference () const
 
GObject * gobj ()
 
const GObject * gobj () const
 
GObject * gobj_copy () const
 
- Public Member Functions inherited from sigc::trackable
 trackable () noexcept
 
 trackable (const trackable &src) noexcept
 
 trackable (trackable &&src)
 
 ~trackable ()
 
void add_destroy_notify_callback (void *data, func_destroy_notify func) const
 
void notify_callbacks ()
 
trackableoperator= (const trackable &src)
 
trackableoperator= (trackable &&src)
 
void remove_destroy_notify_callback (void *data) const
 
- - - - - - - - -

-Static Public Member Functions

static GType get_type ()
 Get the GType for this class, for use with the underlying GObject type system. More...
 
- Static Public Member Functions inherited from Atk::Object
static GType get_type ()
 Get the GType for this class, for use with the underlying GObject type system. More...
 
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

-Protected Member Functions

Glib::RefPtr< Glib::Objectget_object ()
 Gets the GObject for which obj is the accessible object. More...
 
Glib::RefPtr< const Glib::Objectget_object () const
 Gets the GObject for which obj is the accessible object. More...
 
- Protected Member Functions inherited from Atk::Object
virtual void on_children_changed (guint change_index, gpointer changed_child)
 This is a default handler for the signal signal_children_changed(). More...
 
virtual void on_focus_event (bool focus_in)
 This is a default handler for the signal signal_focus_event(). More...
 
virtual void on_property_change (AtkPropertyValues* values)
 This is a default handler for the signal signal_property_change(). More...
 
virtual void on_state_change (const Glib::ustring& name, bool state_set)
 This is a default handler for the signal signal_state_change(). More...
 
virtual void on_visible_data_changed ()
 This is a default handler for the signal signal_visible_data_changed(). More...
 
virtual void on_active_descendant_changed (void** child)
 This is a default handler for the signal signal_active_descendant_changed(). More...
 
- Protected Member Functions inherited from Glib::Object
 Object ()
 
 Object (const Glib::ConstructParams &construct_params)
 
 Object (GObject *castitem)
 
- Protected Member Functions inherited from Glib::ObjectBase
 ObjectBase ()
 
 ObjectBase (const char *custom_type_name)
 
 ObjectBase (const std::type_info &custom_type_info)
 
 ObjectBase (ObjectBase &&src) noexcept
 
ObjectBaseoperator= (ObjectBase &&src) noexcept
 
virtual ~ObjectBase () noexcept=0
 
void initialize (GObject *castitem)
 
void initialize_move (GObject *castitem, Glib::ObjectBase *previous_wrapper)
 
- - - - - - - -

-Static Protected Member Functions

static Glib::RefPtr< Atk::Objectfor_object (const Glib::RefPtr< Glib::Object >& obj)
 Gets the accessible object for the specified obj. More...
 
static Glib::RefPtr< const Atk::Objectfor_object (const Glib::RefPtr< const Glib::Object >& obj)
 Gets the accessible object for the specified obj. More...
 
- - - - - - - - - -

-Related Functions

(Note that these are not member functions.)

-
Glib::RefPtr< Atk::ObjectAccessiblewrap (AtkGObjectAccessible* object, bool take_copy=false)
 A Glib::wrap() method for this object. More...
 
- - - - - - - -

-Additional Inherited Members

- Public Types inherited from Glib::Object
typedef void(* DestroyNotify) (gpointer data)
 
- Public Types inherited from sigc::trackable
typedef internal::func_destroy_notify func_destroy_notify
 
-

Detailed Description

-

This object class is derived from AtkObject and can be used as a basis implementing accessible objects.

-

This can be used as a basis for implementing accessible objects for Glib::Objects which are not derived from Gtk::Widget. One example of its use is in providing an accessible object for GnomeCanvasItem in the GAIL library.

-

Constructor & Destructor Documentation

- -
-
- - - - - -
- - - - - - - - -
Atk::ObjectAccessible::ObjectAccessible (ObjectAccessible&& src)
-
-noexcept
-
- -
-
- -
-
- - - - - -
- - - - - - - -
virtual Atk::ObjectAccessible::~ObjectAccessible ()
-
-virtualnoexcept
-
- -
-
-

Member Function Documentation

- -
-
- - - - - -
- - - - - - - - -
static Glib::RefPtr<Atk::Object> Atk::ObjectAccessible::for_object (const Glib::RefPtr< Glib::Object > & obj)
-
-staticprotected
-
- -

Gets the accessible object for the specified obj.

-
Parameters
- - -
objA Object.
-
-
-
Returns
A Atk::Object which is the accessible object for the obj.
- -
-
- -
-
- - - - - -
- - - - - - - - -
static Glib::RefPtr<const Atk::Object> Atk::ObjectAccessible::for_object (const Glib::RefPtr< const Glib::Object > & obj)
-
-staticprotected
-
- -

Gets the accessible object for the specified obj.

-
Parameters
- - -
objA Object.
-
-
-
Returns
A Atk::Object which is the accessible object for the obj.
- -
-
- -
-
- - - - - -
- - - - - - - -
Glib::RefPtr<Glib::Object> Atk::ObjectAccessible::get_object ()
-
-protected
-
- -

Gets the GObject for which obj is the accessible object.

-
Returns
A Object which is the object for which obj is the accessible object.
- -
-
- -
-
- - - - - -
- - - - - - - -
Glib::RefPtr<const Glib::Object> Atk::ObjectAccessible::get_object () const
-
-protected
-
- -

Gets the GObject for which obj is the accessible object.

-
Returns
A Object which is the object for which obj is the accessible object.
- -
-
- -
-
- - - - - -
- - - - - - - -
static GType Atk::ObjectAccessible::get_type ()
-
-static
-
- -

Get the GType for this class, for use with the underlying GObject type system.

- -
-
- -
-
- - - - - -
- - - - - - - -
AtkGObjectAccessible* Atk::ObjectAccessible::gobj ()
-
-inline
-
- -

Provides access to the underlying C GObject.

- -
-
- -
-
- - - - - -
- - - - - - - -
const AtkGObjectAccessible* Atk::ObjectAccessible::gobj () const
-
-inline
-
- -

Provides access to the underlying C GObject.

- -
-
- -
-
- - - - - - - -
AtkGObjectAccessible* Atk::ObjectAccessible::gobj_copy ()
-
- -

Provides access to the underlying C instance. The caller is responsible for unrefing it. Use when directly setting fields in structs.

- -
-
- -
-
- - - - - -
- - - - - - - - -
ObjectAccessible& Atk::ObjectAccessible::operator= (ObjectAccessible&& src)
-
-noexcept
-
- -
-
-

Friends And Related Function Documentation

- -
-
- - - - - -
- - - - - - - - - - - - - - - - - - -
Glib::RefPtr< Atk::ObjectAccessible > wrap (AtkGObjectAccessible * object,
bool take_copy = false 
)
-
-related
-
- -

A Glib::wrap() method for this object.

-
Parameters
- - - -
objectThe C instance.
take_copyFalse if the result should take ownership of the C instance. True if it should take a new copy or ref.
-
-
-
Returns
A C++ instance that wraps this C instance.
- -
-
-
- - - - Binary files /tmp/tmpOzhFOD/5A0TTRaIcC/atkmm1.6-2.24.2/doc/reference/html/classAtk_1_1ObjectAccessible__inherit__graph.png and /tmp/tmpOzhFOD/Bg2TspT7RQ/atkmm1.6-2.28.0/doc/reference/html/classAtk_1_1ObjectAccessible__inherit__graph.png differ diff -Nru atkmm1.6-2.24.2/doc/reference/html/classAtk_1_1ObjectAccessible-members.html atkmm1.6-2.28.0/doc/reference/html/classAtk_1_1ObjectAccessible-members.html --- atkmm1.6-2.24.2/doc/reference/html/classAtk_1_1ObjectAccessible-members.html 2015-11-29 20:05:33.355309957 +0000 +++ atkmm1.6-2.28.0/doc/reference/html/classAtk_1_1ObjectAccessible-members.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,181 +0,0 @@ - - - - - - -atkmm: Member List - - - - - - -
-
- - - - - - -
-
atkmm -  2.24.2 -
-
-
- - - - - -
-
-
-
Atk::ObjectAccessible Member List
-
-
- -

This is the complete list of members for Atk::ObjectAccessible, including all inherited members.

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
add_destroy_notify_callback(void *data, func_destroy_notify func) const sigc::trackable
add_relationship(RelationType relationship, const Glib::RefPtr< Object >& target)Atk::Object
connect_property_changed(const Glib::ustring &property_name, const sigc::slot< void > &slot)Glib::ObjectBase
connect_property_changed_with_return(const Glib::ustring &property_name, const sigc::slot< void > &slot)Glib::ObjectBase
DestroyNotify typedefGlib::Object
for_object(const Glib::RefPtr< Glib::Object >& obj)Atk::ObjectAccessibleprotectedstatic
for_object(const Glib::RefPtr< const Glib::Object >& obj)Atk::ObjectAccessibleprotectedstatic
freeze_notify()Glib::ObjectBase
func_destroy_notify typedefsigc::trackable
get_accessible_child(int i)Atk::Object
get_data(const QueryQuark &key)Glib::Object
get_description() const Atk::Object
get_index_in_parent()Atk::Object
get_n_accessible_children() const Atk::Object
get_name() const Atk::Object
get_object()Atk::ObjectAccessibleprotected
get_object() const Atk::ObjectAccessibleprotected
get_parent()Atk::Object
get_property(const Glib::ustring &property_name, PropertyType &value) const Glib::ObjectBase
get_property_value(const Glib::ustring &property_name, Glib::ValueBase &value) const Glib::ObjectBase
get_relation_set()Atk::Object
get_role() const Atk::Object
get_state_set()Atk::Object
get_type()Atk::ObjectAccessiblestatic
gobj()Atk::ObjectAccessibleinline
gobj() const Atk::ObjectAccessibleinline
gobj_copy()Atk::ObjectAccessible
Glib::Object::gobj_copy() const Glib::ObjectBase
initialize(GObject *castitem)Glib::ObjectBaseprotected
initialize_move(GObject *castitem, Glib::ObjectBase *previous_wrapper)Glib::ObjectBaseprotected
notify_callbacks()sigc::trackable
notify_state_change(State state, bool value)Atk::Object
Object(Object&& src) noexceptAtk::Object
Glib::Object::Object(const Object &)=deleteGlib::Object
Glib::Object::Object(Object &&src) noexceptGlib::Object
Glib::Object::Object()Glib::Objectprotected
Glib::Object::Object(const Glib::ConstructParams &construct_params)Glib::Objectprotected
Glib::Object::Object(GObject *castitem)Glib::Objectprotected
ObjectAccessible(ObjectAccessible&& src) noexceptAtk::ObjectAccessible
ObjectBase(const ObjectBase &)=deleteGlib::ObjectBase
ObjectBase()Glib::ObjectBaseprotected
ObjectBase(const char *custom_type_name)Glib::ObjectBaseprotected
ObjectBase(const std::type_info &custom_type_info)Glib::ObjectBaseprotected
ObjectBase(ObjectBase &&src) noexceptGlib::ObjectBaseprotected
on_active_descendant_changed(void** child)Atk::Objectprotectedvirtual
on_children_changed(guint change_index, gpointer changed_child)Atk::Objectprotectedvirtual
on_focus_event(bool focus_in)Atk::Objectprotectedvirtual
on_property_change(AtkPropertyValues* values)Atk::Objectprotectedvirtual
on_state_change(const Glib::ustring& name, bool state_set)Atk::Objectprotectedvirtual
on_visible_data_changed()Atk::Objectprotectedvirtual
operator=(ObjectAccessible&& src) noexceptAtk::ObjectAccessible
Atk::Object::operator=(Object&& src) noexceptAtk::Object
Glib::Object::operator=(const Object &)=deleteGlib::Object
Glib::Object::operator=(Object &&src) noexceptGlib::Object
Glib::ObjectBase::operator=(const ObjectBase &)=deleteGlib::ObjectBase
Glib::ObjectBase::operator=(ObjectBase &&src) noexceptGlib::ObjectBaseprotected
sigc::trackable::operator=(const trackable &src)sigc::trackable
sigc::trackable::operator=(trackable &&src)sigc::trackable
property_accessible_component_layer() const Atk::Object
property_accessible_component_mdi_zorder() const Atk::Object
property_accessible_description()Atk::Object
property_accessible_description() const Atk::Object
property_accessible_name()Atk::Object
property_accessible_name() const Atk::Object
property_accessible_parent()Atk::Object
property_accessible_parent() const Atk::Object
property_accessible_role()Atk::Object
property_accessible_role() const Atk::Object
property_accessible_table_caption()Atk::Object
property_accessible_table_caption() const Atk::Object
property_accessible_table_column_description()Atk::Object
property_accessible_table_column_description() const Atk::Object
property_accessible_table_column_header()Atk::Object
property_accessible_table_column_header() const Atk::Object
property_accessible_table_row_description()Atk::Object
property_accessible_table_row_description() const Atk::Object
property_accessible_table_row_header()Atk::Object
property_accessible_table_row_header() const Atk::Object
property_accessible_table_summary()Atk::Object
property_accessible_table_summary() const Atk::Object
property_accessible_value()Atk::Object
property_accessible_value() const Atk::Object
reference() const Glib::ObjectBasevirtual
remove_data(const QueryQuark &quark)Glib::Object
remove_destroy_notify_callback(void *data) const sigc::trackable
remove_relationship(RelationType relationship, const Glib::RefPtr< Object >& target)Atk::Object
set_data(const Quark &key, void *data)Glib::Object
set_data(const Quark &key, void *data, DestroyNotify notify)Glib::Object
set_description(const Glib::ustring& description)Atk::Object
set_name(const Glib::ustring& name)Atk::Object
set_parent(const Glib::RefPtr< Atk::Object >& parent)Atk::Object
set_property(const Glib::ustring &property_name, const PropertyType &value)Glib::ObjectBase
set_property_value(const Glib::ustring &property_name, const Glib::ValueBase &value)Glib::ObjectBase
set_role(Role role)Atk::Object
signal_active_descendant_changed()Atk::Object
signal_children_changed()Atk::Object
signal_focus_event()Atk::Object
signal_property_change()Atk::Object
signal_state_change()Atk::Object
signal_visible_data_changed()Atk::Object
steal_data(const QueryQuark &quark)Glib::Object
thaw_notify()Glib::ObjectBase
trackable() noexceptsigc::trackable
trackable(const trackable &src) noexceptsigc::trackable
trackable(trackable &&src)sigc::trackable
unreference() const Glib::ObjectBasevirtual
wrap(AtkGObjectAccessible* object, bool take_copy=false)Atk::ObjectAccessiblerelated
Atk::Object::wrap(AtkObject* object, bool take_copy=false)Atk::Objectrelated
Glib::Object::wrap(GObject *object, bool take_copy=false)Glib::Object
~Object() noexceptAtk::Objectvirtual
~ObjectAccessible() noexceptAtk::ObjectAccessiblevirtual
~ObjectBase() noexcept=0Glib::ObjectBaseprotectedpure virtual
~trackable()sigc::trackable
- - - - diff -Nru atkmm1.6-2.24.2/doc/reference/html/classAtk_1_1Object.html atkmm1.6-2.28.0/doc/reference/html/classAtk_1_1Object.html --- atkmm1.6-2.24.2/doc/reference/html/classAtk_1_1Object.html 2015-11-29 20:05:33.331310413 +0000 +++ atkmm1.6-2.28.0/doc/reference/html/classAtk_1_1Object.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,1713 +0,0 @@ - - - - - - -atkmm: Atk::Object Class Reference - - - - - - -
-
- - - - - - -
-
atkmm -  2.24.2 -
-
-
- - - - - -
- -
- -

The base object class for the Accessibility Toolkit API. - More...

- -

#include <atkmm/object.h>

-
-Inheritance diagram for Atk::Object:
-
-
Inheritance graph
- - -
[legend]
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

-Public Member Functions

 Object (Object&& src) noexcept
 
Objectoperator= (Object&& src) noexcept
 
virtual ~Object () noexcept
 
AtkObject* gobj ()
 Provides access to the underlying C GObject. More...
 
const AtkObject* gobj () const
 Provides access to the underlying C GObject. More...
 
AtkObject* gobj_copy ()
 Provides access to the underlying C instance. The caller is responsible for unrefing it. Use when directly setting fields in structs. More...
 
Glib::ustring get_name () const
 Gets the accessible name of the accessible. More...
 
Glib::ustring get_description () const
 Gets the accessible description of the accessible. More...
 
Glib::RefPtr< Atk::Objectget_parent ()
 Gets the accessible parent of the accessible. More...
 
int get_n_accessible_children () const
 Gets the number of accessible children of the accessible. More...
 
Glib::RefPtr< Atk::Objectget_accessible_child (int i)
 Gets a reference to the specified accessible child of the object. More...
 
Glib::RefPtr< RelationSetget_relation_set ()
 Gets the Atk::RelationSet associated with the object. More...
 
Role get_role () const
 Gets the role of the accessible. More...
 
Glib::RefPtr< StateSetget_state_set ()
 Gets a reference to the state set of the accessible; the caller must unreference it when it is no longer needed. More...
 
int get_index_in_parent ()
 Gets the 0-based index of this accessible in its parent; returns -1 if the accessible does not have an accessible parent. More...
 
void set_name (const Glib::ustring& name)
 Sets the accessible name of the accessible. More...
 
void set_description (const Glib::ustring& description)
 Sets the accessible description of the accessible. More...
 
void set_parent (const Glib::RefPtr< Atk::Object >& parent)
 Sets the accessible parent of the accessible. More...
 
void set_role (Role role)
 Sets the role of the accessible. More...
 
void notify_state_change (State state, bool value)
 Emits a state-change signal for the specified state. More...
 
bool add_relationship (RelationType relationship, const Glib::RefPtr< Object >& target)
 Adds a relationship of the specified type with the specified target. More...
 
bool remove_relationship (RelationType relationship, const Glib::RefPtr< Object >& target)
 Removes a relationship of the specified type with the specified target. More...
 
Glib::SignalProxy2< void, guint, gpointer > signal_children_changed ()
 
Glib::SignalProxy1< void, bool > signal_focus_event ()
 
Glib::SignalProxy1< void, AtkPropertyValues* > signal_property_change ()
 
Glib::SignalProxy2< void, const Glib::ustring&, bool > signal_state_change ()
 
Glib::SignalProxy0< void > signal_visible_data_changed ()
 
Glib::SignalProxy1< void, void** > signal_active_descendant_changed ()
 
Glib::PropertyProxy< Glib::ustringproperty_accessible_name ()
 Object instance's name formatted for assistive technology access. More...
 
Glib::PropertyProxy_ReadOnly< Glib::ustringproperty_accessible_name () const
 Object instance's name formatted for assistive technology access. More...
 
Glib::PropertyProxy< Glib::ustringproperty_accessible_description ()
 Description of an object, formatted for assistive technology access. More...
 
Glib::PropertyProxy_ReadOnly< Glib::ustringproperty_accessible_description () const
 Description of an object, formatted for assistive technology access. More...
 
Glib::PropertyProxy< Glib::RefPtr< Atk::Object > > property_accessible_parent ()
 Parent of the current accessible as returned by atk_object_get_parent(). More...
 
Glib::PropertyProxy_ReadOnly< Glib::RefPtr< Atk::Object > > property_accessible_parent () const
 Parent of the current accessible as returned by atk_object_get_parent(). More...
 
Glib::PropertyProxy< double > property_accessible_value ()
 Is used to notify that the value has changed. More...
 
Glib::PropertyProxy_ReadOnly< double > property_accessible_value () const
 Is used to notify that the value has changed. More...
 
Glib::PropertyProxy< int > property_accessible_role ()
 The accessible role of this object. More...
 
Glib::PropertyProxy_ReadOnly< int > property_accessible_role () const
 The accessible role of this object. More...
 
Glib::PropertyProxy_ReadOnly< int > property_accessible_component_layer () const
 The accessible layer of this object. More...
 
Glib::PropertyProxy_ReadOnly< int > property_accessible_component_mdi_zorder () const
 The accessible MDI value of this object. More...
 
Glib::PropertyProxy< Glib::ustringproperty_accessible_table_caption ()
 Is used to notify that the table caption has changed; this property should not be used. More...
 
Glib::PropertyProxy_ReadOnly< Glib::ustringproperty_accessible_table_caption () const
 Is used to notify that the table caption has changed; this property should not be used. More...
 
Glib::PropertyProxy< Glib::ustringproperty_accessible_table_column_description ()
 Is used to notify that the table column description has changed. More...
 
Glib::PropertyProxy_ReadOnly< Glib::ustringproperty_accessible_table_column_description () const
 Is used to notify that the table column description has changed. More...
 
Glib::PropertyProxy< Glib::RefPtr< Atk::Object > > property_accessible_table_column_header ()
 Is used to notify that the table column header has changed. More...
 
Glib::PropertyProxy_ReadOnly< Glib::RefPtr< Atk::Object > > property_accessible_table_column_header () const
 Is used to notify that the table column header has changed. More...
 
Glib::PropertyProxy< Glib::ustringproperty_accessible_table_row_description ()
 Is used to notify that the table row description has changed. More...
 
Glib::PropertyProxy_ReadOnly< Glib::ustringproperty_accessible_table_row_description () const
 Is used to notify that the table row description has changed. More...
 
Glib::PropertyProxy< Glib::RefPtr< Atk::Object > > property_accessible_table_row_header ()
 Is used to notify that the table row header has changed. More...
 
Glib::PropertyProxy_ReadOnly< Glib::RefPtr< Atk::Object > > property_accessible_table_row_header () const
 Is used to notify that the table row header has changed. More...
 
Glib::PropertyProxy< Glib::RefPtr< Atk::Object > > property_accessible_table_summary ()
 Is used to notify that the table summary has changed. More...
 
Glib::PropertyProxy_ReadOnly< Glib::RefPtr< Atk::Object > > property_accessible_table_summary () const
 Is used to notify that the table summary has changed. More...
 
- Public Member Functions inherited from Glib::Object
 Object (const Object &)=delete
 
Objectoperator= (const Object &)=delete
 
 Object (Object &&src) noexcept
 
Objectoperator= (Object &&src) noexcept
 
void * get_data (const QueryQuark &key)
 
void set_data (const Quark &key, void *data)
 
void set_data (const Quark &key, void *data, DestroyNotify notify)
 
void remove_data (const QueryQuark &quark)
 
void * steal_data (const QueryQuark &quark)
 
Glib::RefPtr< Glib::Objectwrap (GObject *object, bool take_copy=false)
 
- Public Member Functions inherited from Glib::ObjectBase
 ObjectBase (const ObjectBase &)=delete
 
ObjectBaseoperator= (const ObjectBase &)=delete
 
void set_property_value (const Glib::ustring &property_name, const Glib::ValueBase &value)
 
void get_property_value (const Glib::ustring &property_name, Glib::ValueBase &value) const
 
void set_property (const Glib::ustring &property_name, const PropertyType &value)
 
void get_property (const Glib::ustring &property_name, PropertyType &value) const
 
void connect_property_changed (const Glib::ustring &property_name, const sigc::slot< void > &slot)
 
sigc::connection connect_property_changed_with_return (const Glib::ustring &property_name, const sigc::slot< void > &slot)
 
void freeze_notify ()
 
void thaw_notify ()
 
virtual void reference () const
 
virtual void unreference () const
 
GObject * gobj ()
 
const GObject * gobj () const
 
GObject * gobj_copy () const
 
- Public Member Functions inherited from sigc::trackable
 trackable () noexcept
 
 trackable (const trackable &src) noexcept
 
 trackable (trackable &&src)
 
 ~trackable ()
 
void add_destroy_notify_callback (void *data, func_destroy_notify func) const
 
void notify_callbacks ()
 
trackableoperator= (const trackable &src)
 
trackableoperator= (trackable &&src)
 
void remove_destroy_notify_callback (void *data) const
 
- - - - -

-Static Public Member Functions

static GType get_type ()
 Get the GType for this class, for use with the underlying GObject type system. More...
 
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

-Protected Member Functions

virtual void on_children_changed (guint change_index, gpointer changed_child)
 This is a default handler for the signal signal_children_changed(). More...
 
virtual void on_focus_event (bool focus_in)
 This is a default handler for the signal signal_focus_event(). More...
 
virtual void on_property_change (AtkPropertyValues* values)
 This is a default handler for the signal signal_property_change(). More...
 
virtual void on_state_change (const Glib::ustring& name, bool state_set)
 This is a default handler for the signal signal_state_change(). More...
 
virtual void on_visible_data_changed ()
 This is a default handler for the signal signal_visible_data_changed(). More...
 
virtual void on_active_descendant_changed (void** child)
 This is a default handler for the signal signal_active_descendant_changed(). More...
 
- Protected Member Functions inherited from Glib::Object
 Object ()
 
 Object (const Glib::ConstructParams &construct_params)
 
 Object (GObject *castitem)
 
- Protected Member Functions inherited from Glib::ObjectBase
 ObjectBase ()
 
 ObjectBase (const char *custom_type_name)
 
 ObjectBase (const std::type_info &custom_type_info)
 
 ObjectBase (ObjectBase &&src) noexcept
 
ObjectBaseoperator= (ObjectBase &&src) noexcept
 
virtual ~ObjectBase () noexcept=0
 
void initialize (GObject *castitem)
 
void initialize_move (GObject *castitem, Glib::ObjectBase *previous_wrapper)
 
- - - - - -

-Related Functions

(Note that these are not member functions.)

-
Glib::RefPtr< Atk::Objectwrap (AtkObject* object, bool take_copy=false)
 A Glib::wrap() method for this object. More...
 
- - - - - - - -

-Additional Inherited Members

- Public Types inherited from Glib::Object
typedef void(* DestroyNotify) (gpointer data)
 
- Public Types inherited from sigc::trackable
typedef internal::func_destroy_notify func_destroy_notify
 
-

Detailed Description

-

The base object class for the Accessibility Toolkit API.

-

This class is the primary class for accessibility support via the Accessibility ToolKit (ATK). Objects which are instances of Atk::Object (or instances of Atk::Object-derived types) are queried for properties which relate basic (and generic) properties of a UI component such as name and description. Instances of Atk::Object may also be queried as to whether they implement other ATK interfaces (e.g. Atk::Action, Atk::Component, etc.), as appropriate to the role which a given UI component plays in a user interface.

-

All UI components in an application which provide useful information or services to the user must provide corresponding Atk::Object instances on request (in GTK+, for instance, usually on a call to Gtk::Widget::get_accessible()), either via ATK support built into the toolkit for the widget class or ancestor class, or in the case of custom widgets, if the inherited Atk::Object implementation is insufficient, via instances of a new Atk::Object subclass.

-

Constructor & Destructor Documentation

- -
-
- - - - - -
- - - - - - - - -
Atk::Object::Object (Object&& src)
-
-noexcept
-
- -
-
- -
-
- - - - - -
- - - - - - - -
virtual Atk::Object::~Object ()
-
-virtualnoexcept
-
- -

Reimplemented from Glib::Object.

- -
-
-

Member Function Documentation

- -
-
- - - - - - - - - - - - - - - - - - -
bool Atk::Object::add_relationship (RelationType relationship,
const Glib::RefPtr< Object >& target 
)
-
- -

Adds a relationship of the specified type with the specified target.

-
Parameters
- - - -
relationshipThe Atk::RelationType of the relation.
targetThe Atk::Object which is to be the target of the relation.
-
-
-
Returns
true if the relationship is added.
- -
-
- -
-
- - - - - - - - -
Glib::RefPtr<Atk::Object> Atk::Object::get_accessible_child (int i)
-
- -

Gets a reference to the specified accessible child of the object.

-

The accessible children are 0-based so the first accessible child is at index 0, the second at index 1 and so on.

-
Parameters
- - -
iA int representing the position of the child, starting from 0.
-
-
-
Returns
An Atk::Object representing the specified accessible child of the accessible.
- -
-
- -
-
- - - - - - - -
Glib::ustring Atk::Object::get_description () const
-
- -

Gets the accessible description of the accessible.

-
Returns
A character string representing the accessible description of the accessible.
- -
-
- -
-
- - - - - - - -
int Atk::Object::get_index_in_parent ()
-
- -

Gets the 0-based index of this accessible in its parent; returns -1 if the accessible does not have an accessible parent.

-
Returns
An integer which is the index of the accessible in its parent.
- -
-
- -
-
- - - - - - - -
int Atk::Object::get_n_accessible_children () const
-
- -

Gets the number of accessible children of the accessible.

-
Returns
An integer representing the number of accessible children of the accessible.
- -
-
- -
-
- - - - - - - -
Glib::ustring Atk::Object::get_name () const
-
- -

Gets the accessible name of the accessible.

-
Returns
A character string representing the accessible name of the object.
- -
-
- -
-
- - - - - - - -
Glib::RefPtr<Atk::Object> Atk::Object::get_parent ()
-
- -

Gets the accessible parent of the accessible.

-

By default this is the one assigned with set_parent(), but it is assumed that ATK implementors have ways to get the parent of the object without the need of assigning it manually with set_parent(), and will return it with this method.

-

If you are only interested on the parent assigned with set_parent(), use peek_parent().

-
Returns
An Atk::Object representing the accessible parent of the accessible.
- -
-
- -
-
- - - - - - - -
Glib::RefPtr<RelationSet> Atk::Object::get_relation_set ()
-
- -

Gets the Atk::RelationSet associated with the object.

-
Returns
An Atk::RelationSet representing the relation set of the object.
- -
-
- -
-
- - - - - - - -
Role Atk::Object::get_role () const
-
- -

Gets the role of the accessible.

-
Returns
An Atk::Role which is the role of the accessible.
- -
-
- -
-
- - - - - - - -
Glib::RefPtr<StateSet> Atk::Object::get_state_set ()
-
- -

Gets a reference to the state set of the accessible; the caller must unreference it when it is no longer needed.

-
Returns
A reference to an Atk::StateSet which is the state set of the accessible.
- -
-
- -
-
- - - - - -
- - - - - - - -
static GType Atk::Object::get_type ()
-
-static
-
- -

Get the GType for this class, for use with the underlying GObject type system.

- -
-
- -
-
- - - - - -
- - - - - - - -
AtkObject* Atk::Object::gobj ()
-
-inline
-
- -

Provides access to the underlying C GObject.

- -
-
- -
-
- - - - - -
- - - - - - - -
const AtkObject* Atk::Object::gobj () const
-
-inline
-
- -

Provides access to the underlying C GObject.

- -
-
- -
-
- - - - - - - -
AtkObject* Atk::Object::gobj_copy ()
-
- -

Provides access to the underlying C instance. The caller is responsible for unrefing it. Use when directly setting fields in structs.

- -
-
- -
-
- - - - - - - - - - - - - - - - - - -
void Atk::Object::notify_state_change (State state,
bool value 
)
-
- -

Emits a state-change signal for the specified state.

-

Note that as a general rule when the state of an existing object changes, emitting a notification is expected.

-
Parameters
- - - -
stateAn Atk::State whose state is changed.
valueA bool which indicates whether the state is being set on or off.
-
-
- -
-
- -
-
- - - - - -
- - - - - - - - -
virtual void Atk::Object::on_active_descendant_changed (void ** child)
-
-protectedvirtual
-
- -

This is a default handler for the signal signal_active_descendant_changed().

- -
-
- -
-
- - - - - -
- - - - - - - - - - - - - - - - - - -
virtual void Atk::Object::on_children_changed (guint change_index,
gpointer changed_child 
)
-
-protectedvirtual
-
- -

This is a default handler for the signal signal_children_changed().

- -
-
- -
-
- - - - - -
- - - - - - - - -
virtual void Atk::Object::on_focus_event (bool focus_in)
-
-protectedvirtual
-
- -

This is a default handler for the signal signal_focus_event().

- -
-
- -
-
- - - - - -
- - - - - - - - -
virtual void Atk::Object::on_property_change (AtkPropertyValues * values)
-
-protectedvirtual
-
- -

This is a default handler for the signal signal_property_change().

- -
-
- -
-
- - - - - -
- - - - - - - - - - - - - - - - - - -
virtual void Atk::Object::on_state_change (const Glib::ustringname,
bool state_set 
)
-
-protectedvirtual
-
- -

This is a default handler for the signal signal_state_change().

- -
-
- -
-
- - - - - -
- - - - - - - -
virtual void Atk::Object::on_visible_data_changed ()
-
-protectedvirtual
-
- -

This is a default handler for the signal signal_visible_data_changed().

- -
-
- -
-
- - - - - -
- - - - - - - - -
Object& Atk::Object::operator= (Object&& src)
-
-noexcept
-
- -
-
- -
-
- - - - - - - -
Glib::PropertyProxy_ReadOnly< int > Atk::Object::property_accessible_component_layer () const
-
- -

The accessible layer of this object.

-
Returns
A PropertyProxy_ReadOnly that allows you to get the value of the property, or receive notification when the value of the property changes.
- -
-
- -
-
- - - - - - - -
Glib::PropertyProxy_ReadOnly< int > Atk::Object::property_accessible_component_mdi_zorder () const
-
- -

The accessible MDI value of this object.

-
Returns
A PropertyProxy_ReadOnly that allows you to get the value of the property, or receive notification when the value of the property changes.
- -
-
- -
-
- - - - - - - -
Glib::PropertyProxy< Glib::ustring > Atk::Object::property_accessible_description ()
-
- -

Description of an object, formatted for assistive technology access.

-
Returns
A PropertyProxy that allows you to get or set the value of the property, or receive notification when the value of the property changes.
- -
-
- -
-
- - - - - - - -
Glib::PropertyProxy_ReadOnly< Glib::ustring > Atk::Object::property_accessible_description () const
-
- -

Description of an object, formatted for assistive technology access.

-
Returns
A PropertyProxy_ReadOnly that allows you to get the value of the property, or receive notification when the value of the property changes.
- -
-
- -
-
- - - - - - - -
Glib::PropertyProxy< Glib::ustring > Atk::Object::property_accessible_name ()
-
- -

Object instance's name formatted for assistive technology access.

-
Returns
A PropertyProxy that allows you to get or set the value of the property, or receive notification when the value of the property changes.
- -
-
- -
-
- - - - - - - -
Glib::PropertyProxy_ReadOnly< Glib::ustring > Atk::Object::property_accessible_name () const
-
- -

Object instance's name formatted for assistive technology access.

-
Returns
A PropertyProxy_ReadOnly that allows you to get the value of the property, or receive notification when the value of the property changes.
- -
-
- -
-
- - - - - - - -
Glib::PropertyProxy< Glib::RefPtr<Atk::Object> > Atk::Object::property_accessible_parent ()
-
- -

Parent of the current accessible as returned by atk_object_get_parent().

-
Returns
A PropertyProxy that allows you to get or set the value of the property, or receive notification when the value of the property changes.
- -
-
- -
-
- - - - - - - -
Glib::PropertyProxy_ReadOnly< Glib::RefPtr<Atk::Object> > Atk::Object::property_accessible_parent () const
-
- -

Parent of the current accessible as returned by atk_object_get_parent().

-
Returns
A PropertyProxy_ReadOnly that allows you to get the value of the property, or receive notification when the value of the property changes.
- -
-
- -
-
- - - - - - - -
Glib::PropertyProxy< int > Atk::Object::property_accessible_role ()
-
- -

The accessible role of this object.

-
Returns
A PropertyProxy that allows you to get or set the value of the property, or receive notification when the value of the property changes.
- -
-
- -
-
- - - - - - - -
Glib::PropertyProxy_ReadOnly< int > Atk::Object::property_accessible_role () const
-
- -

The accessible role of this object.

-
Returns
A PropertyProxy_ReadOnly that allows you to get the value of the property, or receive notification when the value of the property changes.
- -
-
- -
-
- - - - - - - -
Glib::PropertyProxy< Glib::ustring > Atk::Object::property_accessible_table_caption ()
-
- -

Is used to notify that the table caption has changed; this property should not be used.

-

accessible-table-caption-object should be used instead.

-
Returns
A PropertyProxy that allows you to get or set the value of the property, or receive notification when the value of the property changes.
- -
-
- -
-
- - - - - - - -
Glib::PropertyProxy_ReadOnly< Glib::ustring > Atk::Object::property_accessible_table_caption () const
-
- -

Is used to notify that the table caption has changed; this property should not be used.

-

accessible-table-caption-object should be used instead.

-
Returns
A PropertyProxy_ReadOnly that allows you to get the value of the property, or receive notification when the value of the property changes.
- -
-
- -
-
- - - - - - - -
Glib::PropertyProxy< Glib::ustring > Atk::Object::property_accessible_table_column_description ()
-
- -

Is used to notify that the table column description has changed.

-
Returns
A PropertyProxy that allows you to get or set the value of the property, or receive notification when the value of the property changes.
- -
-
- -
-
- - - - - - - -
Glib::PropertyProxy_ReadOnly< Glib::ustring > Atk::Object::property_accessible_table_column_description () const
-
- -

Is used to notify that the table column description has changed.

-
Returns
A PropertyProxy_ReadOnly that allows you to get the value of the property, or receive notification when the value of the property changes.
- -
-
- -
-
- - - - - - - -
Glib::PropertyProxy< Glib::RefPtr<Atk::Object> > Atk::Object::property_accessible_table_column_header ()
-
- -

Is used to notify that the table column header has changed.

-
Returns
A PropertyProxy that allows you to get or set the value of the property, or receive notification when the value of the property changes.
- -
-
- -
-
- - - - - - - -
Glib::PropertyProxy_ReadOnly< Glib::RefPtr<Atk::Object> > Atk::Object::property_accessible_table_column_header () const
-
- -

Is used to notify that the table column header has changed.

-
Returns
A PropertyProxy_ReadOnly that allows you to get the value of the property, or receive notification when the value of the property changes.
- -
-
- -
-
- - - - - - - -
Glib::PropertyProxy< Glib::ustring > Atk::Object::property_accessible_table_row_description ()
-
- -

Is used to notify that the table row description has changed.

-
Returns
A PropertyProxy that allows you to get or set the value of the property, or receive notification when the value of the property changes.
- -
-
- -
-
- - - - - - - -
Glib::PropertyProxy_ReadOnly< Glib::ustring > Atk::Object::property_accessible_table_row_description () const
-
- -

Is used to notify that the table row description has changed.

-
Returns
A PropertyProxy_ReadOnly that allows you to get the value of the property, or receive notification when the value of the property changes.
- -
-
- -
-
- - - - - - - -
Glib::PropertyProxy< Glib::RefPtr<Atk::Object> > Atk::Object::property_accessible_table_row_header ()
-
- -

Is used to notify that the table row header has changed.

-
Returns
A PropertyProxy that allows you to get or set the value of the property, or receive notification when the value of the property changes.
- -
-
- -
-
- - - - - - - -
Glib::PropertyProxy_ReadOnly< Glib::RefPtr<Atk::Object> > Atk::Object::property_accessible_table_row_header () const
-
- -

Is used to notify that the table row header has changed.

-
Returns
A PropertyProxy_ReadOnly that allows you to get the value of the property, or receive notification when the value of the property changes.
- -
-
- -
-
- - - - - - - -
Glib::PropertyProxy< Glib::RefPtr<Atk::Object> > Atk::Object::property_accessible_table_summary ()
-
- -

Is used to notify that the table summary has changed.

-
Returns
A PropertyProxy that allows you to get or set the value of the property, or receive notification when the value of the property changes.
- -
-
- -
-
- - - - - - - -
Glib::PropertyProxy_ReadOnly< Glib::RefPtr<Atk::Object> > Atk::Object::property_accessible_table_summary () const
-
- -

Is used to notify that the table summary has changed.

-
Returns
A PropertyProxy_ReadOnly that allows you to get the value of the property, or receive notification when the value of the property changes.
- -
-
- -
-
- - - - - - - -
Glib::PropertyProxy< double > Atk::Object::property_accessible_value ()
-
- -

Is used to notify that the value has changed.

-
Returns
A PropertyProxy that allows you to get or set the value of the property, or receive notification when the value of the property changes.
- -
-
- -
-
- - - - - - - -
Glib::PropertyProxy_ReadOnly< double > Atk::Object::property_accessible_value () const
-
- -

Is used to notify that the value has changed.

-
Returns
A PropertyProxy_ReadOnly that allows you to get the value of the property, or receive notification when the value of the property changes.
- -
-
- -
-
- - - - - - - - - - - - - - - - - - -
bool Atk::Object::remove_relationship (RelationType relationship,
const Glib::RefPtr< Object >& target 
)
-
- -

Removes a relationship of the specified type with the specified target.

-
Parameters
- - - -
relationshipThe Atk::RelationType of the relation.
targetThe Atk::Object which is the target of the relation to be removed.
-
-
-
Returns
true if the relationship is removed.
- -
-
- -
-
- - - - - - - - -
void Atk::Object::set_description (const Glib::ustringdescription)
-
- -

Sets the accessible description of the accessible.

-

You can't set the description to nullptr. This is reserved for the initial value. In this aspect nullptr is similar to ATK_ROLE_UNKNOWN. If you want to set the name to a empty value you can use "".

-
Parameters
- - -
descriptionA character string to be set as the accessible description.
-
-
- -
-
- -
-
- - - - - - - - -
void Atk::Object::set_name (const Glib::ustringname)
-
- -

Sets the accessible name of the accessible.

-

You can't set the name to nullptr. This is reserved for the initial value. In this aspect nullptr is similar to ATK_ROLE_UNKNOWN. If you want to set the name to a empty value you can use "".

-
Parameters
- - -
nameA character string to be set as the accessible name.
-
-
- -
-
- -
-
- - - - - - - - -
void Atk::Object::set_parent (const Glib::RefPtr< Atk::Object >& parent)
-
- -

Sets the accessible parent of the accessible.

-

parent can be nullptr.

-
Parameters
- - -
parentAn Atk::Object to be set as the accessible parent.
-
-
- -
-
- -
-
- - - - - - - - -
void Atk::Object::set_role (Role role)
-
- -

Sets the role of the accessible.

-
Parameters
- - -
roleAn Atk::Role to be set as the role.
-
-
- -
-
- -
-
- - - - - - - -
Glib::SignalProxy1< void,void** > Atk::Object::signal_active_descendant_changed ()
-
-
Slot Prototype:
void on_my_active_descendant_changed(void** child)
-

The "active-descendant-changed" signal is emitted by an object which has the state ATK_STATE_MANAGES_DESCENDANTS when the focus object in the object changes. For instance, a table will emit the signal when the cell in the table which has focus changes.

-
Parameters
- - -
childThe newly focused object.
-
-
- -
-
- -
-
- - - - - - - -
Glib::SignalProxy2< void,guint,gpointer > Atk::Object::signal_children_changed ()
-
-
Slot Prototype:
void on_my_children_changed(guint change_index, gpointer changed_child)
-

The signal "children-changed" is emitted when a child is added or removed form an object. It supports two details: "add" and "remove"

-
Parameters
- - - -
change_indexThe index of the added or removed child. The value can be -1. This is used if the value is not known by the implementor when the child is added/removed or irrelevant.
changed_childA gpointer to the child AtkObject which was added or removed. If the child was removed, it is possible that it is not available for the implementor. In that case this pointer can be nullptr.
-
-
- -
-
- -
-
- - - - - - - -
Glib::SignalProxy1< void,bool > Atk::Object::signal_focus_event ()
-
-
Slot Prototype:
void on_my_focus_event(bool focus_in)
-

The signal "focus-event" is emitted when an object gained or lost focus.

-

Deprecated: 2.9.4: Use the Atk::Object::signal_state_change() signal instead.

-
Parameters
- - -
focus_inA boolean value which indicates whether the object gained or lost focus.
-
-
- -
-
- -
-
- - - - - - - -
Glib::SignalProxy1< void,AtkPropertyValues* > Atk::Object::signal_property_change ()
-
-
Slot Prototype:
void on_my_property_change(AtkPropertyValues* values)
-

The signal "property-change" is emitted when an object's property value changes. values contains an Atk::PropertyValues with the name and the new value of the property whose value has changed. Note that, as with GObject notify, getting this signal does not guarantee that the value of the property has actually changed; it may also be emitted when the setter of the property is called to reinstate the previous value.

-

Toolkit implementor note: ATK implementors should use Glib::object_notify() to emit property-changed notifications. Atk::Object::signal_property_changed() is needed by the implementation of atk_add_global_event_listener() because GObject notify doesn't support emission hooks.

-
Parameters
- - -
valuesAn Atk::PropertyValues containing the new value of the property which changed.
-
-
- -
-
- -
-
- - - - - - - -
Glib::SignalProxy2< void,const Glib::ustring&,bool > Atk::Object::signal_state_change ()
-
-
Slot Prototype:
void on_my_state_change(const Glib::ustring& name, bool state_set)
-

The "state-change" signal is emitted when an object's state changes. The detail value identifies the state type which has changed.

-
Parameters
- - - -
nameThe name of the state which has changed.
state_setA boolean which indicates whether the state has been set or unset.
-
-
- -
-
- -
-
- - - - - - - -
Glib::SignalProxy0< void > Atk::Object::signal_visible_data_changed ()
-
-
Slot Prototype:
void on_my_visible_data_changed()
-

The "visible-data-changed" signal is emitted when the visual appearance of the object changed.

- -
-
-

Friends And Related Function Documentation

- -
-
- - - - - -
- - - - - - - - - - - - - - - - - - -
Glib::RefPtr< Atk::Object > wrap (AtkObject * object,
bool take_copy = false 
)
-
-related
-
- -

A Glib::wrap() method for this object.

-
Parameters
- - - -
objectThe C instance.
take_copyFalse if the result should take ownership of the C instance. True if it should take a new copy or ref.
-
-
-
Returns
A C++ instance that wraps this C instance.
- -
-
-
- - - - Binary files /tmp/tmpOzhFOD/5A0TTRaIcC/atkmm1.6-2.24.2/doc/reference/html/classAtk_1_1Object__inherit__graph.png and /tmp/tmpOzhFOD/Bg2TspT7RQ/atkmm1.6-2.28.0/doc/reference/html/classAtk_1_1Object__inherit__graph.png differ diff -Nru atkmm1.6-2.24.2/doc/reference/html/classAtk_1_1Object-members.html atkmm1.6-2.28.0/doc/reference/html/classAtk_1_1Object-members.html --- atkmm1.6-2.24.2/doc/reference/html/classAtk_1_1Object-members.html 2015-11-29 20:05:33.339310261 +0000 +++ atkmm1.6-2.28.0/doc/reference/html/classAtk_1_1Object-members.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,173 +0,0 @@ - - - - - - -atkmm: Member List - - - - - - -
-
- - - - - - -
-
atkmm -  2.24.2 -
-
-
- - - - - -
-
-
-
Atk::Object Member List
-
-
- -

This is the complete list of members for Atk::Object, including all inherited members.

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
add_destroy_notify_callback(void *data, func_destroy_notify func) const sigc::trackable
add_relationship(RelationType relationship, const Glib::RefPtr< Object >& target)Atk::Object
connect_property_changed(const Glib::ustring &property_name, const sigc::slot< void > &slot)Glib::ObjectBase
connect_property_changed_with_return(const Glib::ustring &property_name, const sigc::slot< void > &slot)Glib::ObjectBase
DestroyNotify typedefGlib::Object
freeze_notify()Glib::ObjectBase
func_destroy_notify typedefsigc::trackable
get_accessible_child(int i)Atk::Object
get_data(const QueryQuark &key)Glib::Object
get_description() const Atk::Object
get_index_in_parent()Atk::Object
get_n_accessible_children() const Atk::Object
get_name() const Atk::Object
get_parent()Atk::Object
get_property(const Glib::ustring &property_name, PropertyType &value) const Glib::ObjectBase
get_property_value(const Glib::ustring &property_name, Glib::ValueBase &value) const Glib::ObjectBase
get_relation_set()Atk::Object
get_role() const Atk::Object
get_state_set()Atk::Object
get_type()Atk::Objectstatic
gobj()Atk::Objectinline
gobj() const Atk::Objectinline
gobj_copy()Atk::Object
Glib::Object::gobj_copy() const Glib::ObjectBase
initialize(GObject *castitem)Glib::ObjectBaseprotected
initialize_move(GObject *castitem, Glib::ObjectBase *previous_wrapper)Glib::ObjectBaseprotected
notify_callbacks()sigc::trackable
notify_state_change(State state, bool value)Atk::Object
Object(Object&& src) noexceptAtk::Object
Glib::Object::Object(const Object &)=deleteGlib::Object
Glib::Object::Object(Object &&src) noexceptGlib::Object
Glib::Object::Object()Glib::Objectprotected
Glib::Object::Object(const Glib::ConstructParams &construct_params)Glib::Objectprotected
Glib::Object::Object(GObject *castitem)Glib::Objectprotected
ObjectBase(const ObjectBase &)=deleteGlib::ObjectBase
ObjectBase()Glib::ObjectBaseprotected
ObjectBase(const char *custom_type_name)Glib::ObjectBaseprotected
ObjectBase(const std::type_info &custom_type_info)Glib::ObjectBaseprotected
ObjectBase(ObjectBase &&src) noexceptGlib::ObjectBaseprotected
on_active_descendant_changed(void** child)Atk::Objectprotectedvirtual
on_children_changed(guint change_index, gpointer changed_child)Atk::Objectprotectedvirtual
on_focus_event(bool focus_in)Atk::Objectprotectedvirtual
on_property_change(AtkPropertyValues* values)Atk::Objectprotectedvirtual
on_state_change(const Glib::ustring& name, bool state_set)Atk::Objectprotectedvirtual
on_visible_data_changed()Atk::Objectprotectedvirtual
operator=(Object&& src) noexceptAtk::Object
Glib::Object::operator=(const Object &)=deleteGlib::Object
Glib::Object::operator=(Object &&src) noexceptGlib::Object
Glib::ObjectBase::operator=(const ObjectBase &)=deleteGlib::ObjectBase
Glib::ObjectBase::operator=(ObjectBase &&src) noexceptGlib::ObjectBaseprotected
sigc::trackable::operator=(const trackable &src)sigc::trackable
sigc::trackable::operator=(trackable &&src)sigc::trackable
property_accessible_component_layer() const Atk::Object
property_accessible_component_mdi_zorder() const Atk::Object
property_accessible_description()Atk::Object
property_accessible_description() const Atk::Object
property_accessible_name()Atk::Object
property_accessible_name() const Atk::Object
property_accessible_parent()Atk::Object
property_accessible_parent() const Atk::Object
property_accessible_role()Atk::Object
property_accessible_role() const Atk::Object
property_accessible_table_caption()Atk::Object
property_accessible_table_caption() const Atk::Object
property_accessible_table_column_description()Atk::Object
property_accessible_table_column_description() const Atk::Object
property_accessible_table_column_header()Atk::Object
property_accessible_table_column_header() const Atk::Object
property_accessible_table_row_description()Atk::Object
property_accessible_table_row_description() const Atk::Object
property_accessible_table_row_header()Atk::Object
property_accessible_table_row_header() const Atk::Object
property_accessible_table_summary()Atk::Object
property_accessible_table_summary() const Atk::Object
property_accessible_value()Atk::Object
property_accessible_value() const Atk::Object
reference() const Glib::ObjectBasevirtual
remove_data(const QueryQuark &quark)Glib::Object
remove_destroy_notify_callback(void *data) const sigc::trackable
remove_relationship(RelationType relationship, const Glib::RefPtr< Object >& target)Atk::Object
set_data(const Quark &key, void *data)Glib::Object
set_data(const Quark &key, void *data, DestroyNotify notify)Glib::Object
set_description(const Glib::ustring& description)Atk::Object
set_name(const Glib::ustring& name)Atk::Object
set_parent(const Glib::RefPtr< Atk::Object >& parent)Atk::Object
set_property(const Glib::ustring &property_name, const PropertyType &value)Glib::ObjectBase
set_property_value(const Glib::ustring &property_name, const Glib::ValueBase &value)Glib::ObjectBase
set_role(Role role)Atk::Object
signal_active_descendant_changed()Atk::Object
signal_children_changed()Atk::Object
signal_focus_event()Atk::Object
signal_property_change()Atk::Object
signal_state_change()Atk::Object
signal_visible_data_changed()Atk::Object
steal_data(const QueryQuark &quark)Glib::Object
thaw_notify()Glib::ObjectBase
trackable() noexceptsigc::trackable
trackable(const trackable &src) noexceptsigc::trackable
trackable(trackable &&src)sigc::trackable
unreference() const Glib::ObjectBasevirtual
wrap(AtkObject* object, bool take_copy=false)Atk::Objectrelated
Glib::Object::wrap(GObject *object, bool take_copy=false)Glib::Object
~Object() noexceptAtk::Objectvirtual
~ObjectBase() noexcept=0Glib::ObjectBaseprotectedpure virtual
~trackable()sigc::trackable
- - - - diff -Nru atkmm1.6-2.24.2/doc/reference/html/classAtk_1_1Range.html atkmm1.6-2.28.0/doc/reference/html/classAtk_1_1Range.html --- atkmm1.6-2.24.2/doc/reference/html/classAtk_1_1Range.html 2015-11-29 20:05:33.331310413 +0000 +++ atkmm1.6-2.28.0/doc/reference/html/classAtk_1_1Range.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,585 +0,0 @@ - - - - - - -atkmm: Atk::Range Class Reference - - - - - - -
-
- - - - - - -
-
atkmm -  2.24.2 -
-
-
- - - - - -
- -
- -

A given range or subrange, to be used with Atk::Value. - More...

- -

#include <atkmm/range.h>

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

-Public Member Functions

 Range ()
 
 Range (AtkRange* gobject, bool make_a_copy=true)
 
 Range (const Range& other)
 
Rangeoperator= (const Range& other)
 
 Range (Range&& other) noexcept
 
Rangeoperator= (Range&& other) noexcept
 
 ~Range () noexcept
 
void swap (Range& other) noexcept
 
AtkRange* gobj ()
 Provides access to the underlying C instance. More...
 
const AtkRange* gobj () const
 Provides access to the underlying C instance. More...
 
AtkRange* gobj_copy () const
 Provides access to the underlying C instance. The caller is responsible for freeing it. Use when directly setting fields in structs. More...
 
 Range (double lower_limit, double upper_limit, const Glib::ustring& description)
 
double get_lower_limit () const
 Returns the lower limit of range. More...
 
double get_upper_limit () const
 Returns the upper limit of range. More...
 
- - - - -

-Static Public Member Functions

static GType get_type ()
 Get the GType for this class, for use with the underlying GObject type system. More...
 
- - - -

-Protected Attributes

AtkRange* gobject_
 
- - - - - - - -

-Related Functions

(Note that these are not member functions.)

-
void swap (Range& lhs, Range& rhs) noexcept
 
Atk::Range wrap (AtkRange* object, bool take_copy=false)
 A Glib::wrap() method for this object. More...
 
-

Detailed Description

-

A given range or subrange, to be used with Atk::Value.

-

This represents the full range of a given component (for example a slider or a range control), or, to define each individual subrange, this full range is split if available.

-
Since atkmm 2.24:
-

Constructor & Destructor Documentation

- -
-
- - - - - - - -
Atk::Range::Range ()
-
- -
-
- -
-
- - - - - -
- - - - - - - - - - - - - - - - - - -
Atk::Range::Range (AtkRange * gobject,
bool make_a_copy = true 
)
-
-explicit
-
- -
-
- -
-
- - - - - - - - -
Atk::Range::Range (const Rangeother)
-
- -
-
- -
-
- - - - - -
- - - - - - - - -
Atk::Range::Range (Range&& other)
-
-noexcept
-
- -
-
- -
-
- - - - - -
- - - - - - - -
Atk::Range::~Range ()
-
-noexcept
-
- -
-
- -
-
- - - - - - - - - - - - - - - - - - - - - - - - -
Atk::Range::Range (double lower_limit,
double upper_limit,
const Glib::ustringdescription 
)
-
- -
-
-

Member Function Documentation

- -
-
- - - - - - - -
double Atk::Range::get_lower_limit () const
-
- -

Returns the lower limit of range.

-
Since atkmm 2.12:
-
Returns
The lower limit of range.
- -
-
- -
-
- - - - - -
- - - - - - - -
static GType Atk::Range::get_type ()
-
-static
-
- -

Get the GType for this class, for use with the underlying GObject type system.

- -
-
- -
-
- - - - - - - -
double Atk::Range::get_upper_limit () const
-
- -

Returns the upper limit of range.

-
Since atkmm 2.12:
-
Returns
The upper limit of range.
- -
-
- -
-
- - - - - -
- - - - - - - -
AtkRange* Atk::Range::gobj ()
-
-inline
-
- -

Provides access to the underlying C instance.

- -
-
- -
-
- - - - - -
- - - - - - - -
const AtkRange* Atk::Range::gobj () const
-
-inline
-
- -

Provides access to the underlying C instance.

- -
-
- -
-
- - - - - - - -
AtkRange* Atk::Range::gobj_copy () const
-
- -

Provides access to the underlying C instance. The caller is responsible for freeing it. Use when directly setting fields in structs.

- -
-
- -
-
- - - - - - - - -
Range& Atk::Range::operator= (const Rangeother)
-
- -
-
- -
-
- - - - - -
- - - - - - - - -
Range& Atk::Range::operator= (Range&& other)
-
-noexcept
-
- -
-
- -
-
- - - - - -
- - - - - - - - -
void Atk::Range::swap (Rangeother)
-
-noexcept
-
- -
-
-

Friends And Related Function Documentation

- -
-
- - - - - -
- - - - - - - - - - - - - - - - - - -
void swap (Rangelhs,
Rangerhs 
)
-
-related
-
-
Parameters
- - - -
lhsThe left-hand side
rhsThe right-hand side
-
-
- -
-
- -
-
- - - - - -
- - - - - - - - - - - - - - - - - - -
Atk::Range wrap (AtkRange * object,
bool take_copy = false 
)
-
-related
-
- -

A Glib::wrap() method for this object.

-
Parameters
- - - -
objectThe C instance.
take_copyFalse if the result should take ownership of the C instance. True if it should take a new copy or ref.
-
-
-
Returns
A C++ instance that wraps this C instance.
- -
-
-

Member Data Documentation

- -
-
- - - - - -
- - - - -
AtkRange* Atk::Range::gobject_
-
-protected
-
- -
-
-
- - - - diff -Nru atkmm1.6-2.24.2/doc/reference/html/classAtk_1_1Range-members.html atkmm1.6-2.28.0/doc/reference/html/classAtk_1_1Range-members.html --- atkmm1.6-2.24.2/doc/reference/html/classAtk_1_1Range-members.html 2015-11-29 20:05:33.323310564 +0000 +++ atkmm1.6-2.28.0/doc/reference/html/classAtk_1_1Range-members.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,86 +0,0 @@ - - - - - - -atkmm: Member List - - - - - - -
-
- - - - - - -
-
atkmm -  2.24.2 -
-
-
- - - - - -
-
-
-
Atk::Range Member List
-
-
- -

This is the complete list of members for Atk::Range, including all inherited members.

- - - - - - - - - - - - - - - - - - - -
get_lower_limit() const Atk::Range
get_type()Atk::Rangestatic
get_upper_limit() const Atk::Range
gobj()Atk::Rangeinline
gobj() const Atk::Rangeinline
gobj_copy() const Atk::Range
gobject_Atk::Rangeprotected
operator=(const Range& other)Atk::Range
operator=(Range&& other) noexceptAtk::Range
Range()Atk::Range
Range(AtkRange* gobject, bool make_a_copy=true)Atk::Rangeexplicit
Range(const Range& other)Atk::Range
Range(Range&& other) noexceptAtk::Range
Range(double lower_limit, double upper_limit, const Glib::ustring& description)Atk::Range
swap(Range& other) noexceptAtk::Range
swap(Range& lhs, Range& rhs) noexceptAtk::Rangerelated
wrap(AtkRange* object, bool take_copy=false)Atk::Rangerelated
~Range() noexceptAtk::Range
- - - - diff -Nru atkmm1.6-2.24.2/doc/reference/html/classAtk_1_1Relation.html atkmm1.6-2.28.0/doc/reference/html/classAtk_1_1Relation.html --- atkmm1.6-2.24.2/doc/reference/html/classAtk_1_1Relation.html 2015-11-29 20:05:33.299311020 +0000 +++ atkmm1.6-2.28.0/doc/reference/html/classAtk_1_1Relation.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,594 +0,0 @@ - - - - - - -atkmm: Atk::Relation Class Reference - - - - - - -
-
- - - - - - -
-
atkmm -  2.24.2 -
-
-
- - - - - -
- -
- -

An Atk::Relation describes a relation between an object and one or more other objects. - More...

- -

#include <atkmm/relation.h>

-
-Inheritance diagram for Atk::Relation:
-
-
Inheritance graph
- - -
[legend]
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

-Public Member Functions

 Relation (Relation&& src) noexcept
 
Relationoperator= (Relation&& src) noexcept
 
virtual ~Relation () noexcept
 
AtkRelation* gobj ()
 Provides access to the underlying C GObject. More...
 
const AtkRelation* gobj () const
 Provides access to the underlying C GObject. More...
 
AtkRelation* gobj_copy ()
 Provides access to the underlying C instance. The caller is responsible for unrefing it. Use when directly setting fields in structs. More...
 
RelationType get_relation_type () const
 Gets the type of relation. More...
 
Glib::ArrayHandle< Glib::RefPtr< Atk::Object > > get_target ()
 
Glib::ArrayHandle< Glib::RefPtr< const Atk::Object > > get_target () const
 
void add_target (const Glib::RefPtr< Atk::Object >& target)
 Adds the specified AtkObject to the target for the relation, if it is not already present. More...
 
- Public Member Functions inherited from Glib::Object
 Object (const Object &)=delete
 
Objectoperator= (const Object &)=delete
 
 Object (Object &&src) noexcept
 
Objectoperator= (Object &&src) noexcept
 
void * get_data (const QueryQuark &key)
 
void set_data (const Quark &key, void *data)
 
void set_data (const Quark &key, void *data, DestroyNotify notify)
 
void remove_data (const QueryQuark &quark)
 
void * steal_data (const QueryQuark &quark)
 
Glib::RefPtr< Glib::Objectwrap (GObject *object, bool take_copy=false)
 
- Public Member Functions inherited from Glib::ObjectBase
 ObjectBase (const ObjectBase &)=delete
 
ObjectBaseoperator= (const ObjectBase &)=delete
 
void set_property_value (const Glib::ustring &property_name, const Glib::ValueBase &value)
 
void get_property_value (const Glib::ustring &property_name, Glib::ValueBase &value) const
 
void set_property (const Glib::ustring &property_name, const PropertyType &value)
 
void get_property (const Glib::ustring &property_name, PropertyType &value) const
 
void connect_property_changed (const Glib::ustring &property_name, const sigc::slot< void > &slot)
 
sigc::connection connect_property_changed_with_return (const Glib::ustring &property_name, const sigc::slot< void > &slot)
 
void freeze_notify ()
 
void thaw_notify ()
 
virtual void reference () const
 
virtual void unreference () const
 
GObject * gobj ()
 
const GObject * gobj () const
 
GObject * gobj_copy () const
 
- Public Member Functions inherited from sigc::trackable
 trackable () noexcept
 
 trackable (const trackable &src) noexcept
 
 trackable (trackable &&src)
 
 ~trackable ()
 
void add_destroy_notify_callback (void *data, func_destroy_notify func) const
 
void notify_callbacks ()
 
trackableoperator= (const trackable &src)
 
trackableoperator= (trackable &&src)
 
void remove_destroy_notify_callback (void *data) const
 
- - - - - - -

-Static Public Member Functions

static GType get_type ()
 Get the GType for this class, for use with the underlying GObject type system. More...
 
static Glib::RefPtr< Relationcreate (const Glib::ArrayHandle< Glib::RefPtr< Atk::Object > >& targets, RelationType relationship=RELATION_NULL)
 
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

-Protected Member Functions

 Relation (const Glib::ArrayHandle< Glib::RefPtr< Atk::Object > >& targets, RelationType relationship)
 
- Protected Member Functions inherited from Glib::Object
 Object ()
 
 Object (const Glib::ConstructParams &construct_params)
 
 Object (GObject *castitem)
 
virtual ~Object () noexcept
 
- Protected Member Functions inherited from Glib::ObjectBase
 ObjectBase ()
 
 ObjectBase (const char *custom_type_name)
 
 ObjectBase (const std::type_info &custom_type_info)
 
 ObjectBase (ObjectBase &&src) noexcept
 
ObjectBaseoperator= (ObjectBase &&src) noexcept
 
virtual ~ObjectBase () noexcept=0
 
void initialize (GObject *castitem)
 
void initialize_move (GObject *castitem, Glib::ObjectBase *previous_wrapper)
 
- - - - - -

-Related Functions

(Note that these are not member functions.)

-
Glib::RefPtr< Atk::Relationwrap (AtkRelation* object, bool take_copy=false)
 A Glib::wrap() method for this object. More...
 
- - - - - - - -

-Additional Inherited Members

- Public Types inherited from Glib::Object
typedef void(* DestroyNotify) (gpointer data)
 
- Public Types inherited from sigc::trackable
typedef internal::func_destroy_notify func_destroy_notify
 
-

Detailed Description

-

An Atk::Relation describes a relation between an object and one or more other objects.

-

The actual relations that an object has with other objects are defined as an Atk::RelationSet, which is a set of Atk::Relations.

-

Constructor & Destructor Documentation

- -
-
- - - - - -
- - - - - - - - -
Atk::Relation::Relation (Relation&& src)
-
-noexcept
-
- -
-
- -
-
- - - - - -
- - - - - - - -
virtual Atk::Relation::~Relation ()
-
-virtualnoexcept
-
- -
-
- -
-
- - - - - -
- - - - - - - - - - - - - - - - - - -
Atk::Relation::Relation (const Glib::ArrayHandle< Glib::RefPtr< Atk::Object > >& targets,
RelationType relationship 
)
-
-explicitprotected
-
- -
-
-

Member Function Documentation

- -
-
- - - - - - - - -
void Atk::Relation::add_target (const Glib::RefPtr< Atk::Object >& target)
-
- -

Adds the specified AtkObject to the target for the relation, if it is not already present.

-

See also Atk::Object::add_relationship().

-
Since atkmm 1.9:
-
Parameters
- - -
targetAn Atk::Object.
-
-
- -
-
- -
-
- - - - - -
- - - - - - - - - - - - - - - - - - -
static Glib::RefPtr<Relation> Atk::Relation::create (const Glib::ArrayHandle< Glib::RefPtr< Atk::Object > >& targets,
RelationType relationship = RELATION_NULL 
)
-
-static
-
- -
-
- -
-
- - - - - - - -
RelationType Atk::Relation::get_relation_type () const
-
- -

Gets the type of relation.

-
Returns
The type of relation.
- -
-
- -
-
- - - - - - - -
Glib::ArrayHandle< Glib::RefPtr<Atk::Object> > Atk::Relation::get_target ()
-
- -
-
- -
-
- - - - - - - -
Glib::ArrayHandle< Glib::RefPtr<const Atk::Object> > Atk::Relation::get_target () const
-
- -
-
- -
-
- - - - - -
- - - - - - - -
static GType Atk::Relation::get_type ()
-
-static
-
- -

Get the GType for this class, for use with the underlying GObject type system.

- -
-
- -
-
- - - - - -
- - - - - - - -
AtkRelation* Atk::Relation::gobj ()
-
-inline
-
- -

Provides access to the underlying C GObject.

- -
-
- -
-
- - - - - -
- - - - - - - -
const AtkRelation* Atk::Relation::gobj () const
-
-inline
-
- -

Provides access to the underlying C GObject.

- -
-
- -
-
- - - - - - - -
AtkRelation* Atk::Relation::gobj_copy ()
-
- -

Provides access to the underlying C instance. The caller is responsible for unrefing it. Use when directly setting fields in structs.

- -
-
- -
-
- - - - - -
- - - - - - - - -
Relation& Atk::Relation::operator= (Relation&& src)
-
-noexcept
-
- -
-
-

Friends And Related Function Documentation

- -
-
- - - - - -
- - - - - - - - - - - - - - - - - - -
Glib::RefPtr< Atk::Relation > wrap (AtkRelation * object,
bool take_copy = false 
)
-
-related
-
- -

A Glib::wrap() method for this object.

-
Parameters
- - - -
objectThe C instance.
take_copyFalse if the result should take ownership of the C instance. True if it should take a new copy or ref.
-
-
-
Returns
A C++ instance that wraps this C instance.
- -
-
-
- - - - Binary files /tmp/tmpOzhFOD/5A0TTRaIcC/atkmm1.6-2.24.2/doc/reference/html/classAtk_1_1Relation__inherit__graph.png and /tmp/tmpOzhFOD/Bg2TspT7RQ/atkmm1.6-2.28.0/doc/reference/html/classAtk_1_1Relation__inherit__graph.png differ diff -Nru atkmm1.6-2.24.2/doc/reference/html/classAtk_1_1Relation-members.html atkmm1.6-2.28.0/doc/reference/html/classAtk_1_1Relation-members.html --- atkmm1.6-2.24.2/doc/reference/html/classAtk_1_1Relation-members.html 2015-11-29 20:05:33.347310109 +0000 +++ atkmm1.6-2.28.0/doc/reference/html/classAtk_1_1Relation-members.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,128 +0,0 @@ - - - - - - -atkmm: Member List - - - - - - -
-
- - - - - - -
-
atkmm -  2.24.2 -
-
-
- - - - - -
-
-
-
Atk::Relation Member List
-
-
- -

This is the complete list of members for Atk::Relation, including all inherited members.

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
add_destroy_notify_callback(void *data, func_destroy_notify func) const sigc::trackable
add_target(const Glib::RefPtr< Atk::Object >& target)Atk::Relation
connect_property_changed(const Glib::ustring &property_name, const sigc::slot< void > &slot)Glib::ObjectBase
connect_property_changed_with_return(const Glib::ustring &property_name, const sigc::slot< void > &slot)Glib::ObjectBase
create(const Glib::ArrayHandle< Glib::RefPtr< Atk::Object > >& targets, RelationType relationship=RELATION_NULL)Atk::Relationstatic
DestroyNotify typedefGlib::Object
freeze_notify()Glib::ObjectBase
func_destroy_notify typedefsigc::trackable
get_data(const QueryQuark &key)Glib::Object
get_property(const Glib::ustring &property_name, PropertyType &value) const Glib::ObjectBase
get_property_value(const Glib::ustring &property_name, Glib::ValueBase &value) const Glib::ObjectBase
get_relation_type() const Atk::Relation
get_target()Atk::Relation
get_target() const Atk::Relation
get_type()Atk::Relationstatic
gobj()Atk::Relationinline
gobj() const Atk::Relationinline
gobj_copy()Atk::Relation
Glib::Object::gobj_copy() const Glib::ObjectBase
initialize(GObject *castitem)Glib::ObjectBaseprotected
initialize_move(GObject *castitem, Glib::ObjectBase *previous_wrapper)Glib::ObjectBaseprotected
notify_callbacks()sigc::trackable
Object(const Object &)=deleteGlib::Object
Object(Object &&src) noexceptGlib::Object
Object()Glib::Objectprotected
Object(const Glib::ConstructParams &construct_params)Glib::Objectprotected
Object(GObject *castitem)Glib::Objectprotected
ObjectBase(const ObjectBase &)=deleteGlib::ObjectBase
ObjectBase()Glib::ObjectBaseprotected
ObjectBase(const char *custom_type_name)Glib::ObjectBaseprotected
ObjectBase(const std::type_info &custom_type_info)Glib::ObjectBaseprotected
ObjectBase(ObjectBase &&src) noexceptGlib::ObjectBaseprotected
operator=(Relation&& src) noexceptAtk::Relation
Glib::Object::operator=(const Object &)=deleteGlib::Object
Glib::Object::operator=(Object &&src) noexceptGlib::Object
Glib::ObjectBase::operator=(const ObjectBase &)=deleteGlib::ObjectBase
Glib::ObjectBase::operator=(ObjectBase &&src) noexceptGlib::ObjectBaseprotected
sigc::trackable::operator=(const trackable &src)sigc::trackable
sigc::trackable::operator=(trackable &&src)sigc::trackable
reference() const Glib::ObjectBasevirtual
Relation(Relation&& src) noexceptAtk::Relation
Relation(const Glib::ArrayHandle< Glib::RefPtr< Atk::Object > >& targets, RelationType relationship)Atk::Relationexplicitprotected
remove_data(const QueryQuark &quark)Glib::Object
remove_destroy_notify_callback(void *data) const sigc::trackable
set_data(const Quark &key, void *data)Glib::Object
set_data(const Quark &key, void *data, DestroyNotify notify)Glib::Object
set_property(const Glib::ustring &property_name, const PropertyType &value)Glib::ObjectBase
set_property_value(const Glib::ustring &property_name, const Glib::ValueBase &value)Glib::ObjectBase
steal_data(const QueryQuark &quark)Glib::Object
thaw_notify()Glib::ObjectBase
trackable() noexceptsigc::trackable
trackable(const trackable &src) noexceptsigc::trackable
trackable(trackable &&src)sigc::trackable
unreference() const Glib::ObjectBasevirtual
wrap(AtkRelation* object, bool take_copy=false)Atk::Relationrelated
Glib::Object::wrap(GObject *object, bool take_copy=false)Glib::Object
~Object() noexceptGlib::Objectprotectedvirtual
~ObjectBase() noexcept=0Glib::ObjectBaseprotectedpure virtual
~Relation() noexceptAtk::Relationvirtual
~trackable()sigc::trackable
- - - - diff -Nru atkmm1.6-2.24.2/doc/reference/html/classAtk_1_1RelationSet.html atkmm1.6-2.28.0/doc/reference/html/classAtk_1_1RelationSet.html --- atkmm1.6-2.24.2/doc/reference/html/classAtk_1_1RelationSet.html 2015-11-29 20:05:33.299311020 +0000 +++ atkmm1.6-2.28.0/doc/reference/html/classAtk_1_1RelationSet.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,688 +0,0 @@ - - - - - - -atkmm: Atk::RelationSet Class Reference - - - - - - -
-
- - - - - - -
-
atkmm -  2.24.2 -
-
-
- - - - - -
- -
- -

A set of Atk::Relations, normally the set of AtkRelations which an Atk::Object has. - More...

- -

#include <atkmm/relationset.h>

-
-Inheritance diagram for Atk::RelationSet:
-
-
Inheritance graph
- - -
[legend]
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

-Public Member Functions

 RelationSet (RelationSet&& src) noexcept
 
RelationSetoperator= (RelationSet&& src) noexcept
 
virtual ~RelationSet () noexcept
 
AtkRelationSet* gobj ()
 Provides access to the underlying C GObject. More...
 
const AtkRelationSet* gobj () const
 Provides access to the underlying C GObject. More...
 
AtkRelationSet* gobj_copy ()
 Provides access to the underlying C instance. The caller is responsible for unrefing it. Use when directly setting fields in structs. More...
 
bool set_contains (RelationType relationship)
 Determines whether the relation set contains a relation that matches the specified type. More...
 
void set_remove (const Glib::RefPtr< Relation >& relation)
 Removes a relation from the relation set. More...
 
void set_add (const Glib::RefPtr< Relation >& relation)
 Add a new relation to the current relation set if it is not already present. More...
 
int get_n_relations () const
 Determines the number of relations in a relation set. More...
 
Glib::RefPtr< Relationget_relation (gint i)
 Determines the relation at the specified position in the relation set. More...
 
Glib::RefPtr< Relationget_relation (RelationType relationship)
 Finds a relation that matches the specified type. More...
 
void add_relation_by_type (RelationType relationship, const Glib::RefPtr< Atk::Object >& target)
 Add a new relation of the specified type with the specified target to the current relation set if the relation set does not contain a relation of that type. More...
 
- Public Member Functions inherited from Glib::Object
 Object (const Object &)=delete
 
Objectoperator= (const Object &)=delete
 
 Object (Object &&src) noexcept
 
Objectoperator= (Object &&src) noexcept
 
void * get_data (const QueryQuark &key)
 
void set_data (const Quark &key, void *data)
 
void set_data (const Quark &key, void *data, DestroyNotify notify)
 
void remove_data (const QueryQuark &quark)
 
void * steal_data (const QueryQuark &quark)
 
Glib::RefPtr< Glib::Objectwrap (GObject *object, bool take_copy=false)
 
- Public Member Functions inherited from Glib::ObjectBase
 ObjectBase (const ObjectBase &)=delete
 
ObjectBaseoperator= (const ObjectBase &)=delete
 
void set_property_value (const Glib::ustring &property_name, const Glib::ValueBase &value)
 
void get_property_value (const Glib::ustring &property_name, Glib::ValueBase &value) const
 
void set_property (const Glib::ustring &property_name, const PropertyType &value)
 
void get_property (const Glib::ustring &property_name, PropertyType &value) const
 
void connect_property_changed (const Glib::ustring &property_name, const sigc::slot< void > &slot)
 
sigc::connection connect_property_changed_with_return (const Glib::ustring &property_name, const sigc::slot< void > &slot)
 
void freeze_notify ()
 
void thaw_notify ()
 
virtual void reference () const
 
virtual void unreference () const
 
GObject * gobj ()
 
const GObject * gobj () const
 
GObject * gobj_copy () const
 
- Public Member Functions inherited from sigc::trackable
 trackable () noexcept
 
 trackable (const trackable &src) noexcept
 
 trackable (trackable &&src)
 
 ~trackable ()
 
void add_destroy_notify_callback (void *data, func_destroy_notify func) const
 
void notify_callbacks ()
 
trackableoperator= (const trackable &src)
 
trackableoperator= (trackable &&src)
 
void remove_destroy_notify_callback (void *data) const
 
- - - - - - -

-Static Public Member Functions

static GType get_type ()
 Get the GType for this class, for use with the underlying GObject type system. More...
 
static Glib::RefPtr< RelationSetcreate ()
 
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

-Protected Member Functions

 RelationSet ()
 
- Protected Member Functions inherited from Glib::Object
 Object ()
 
 Object (const Glib::ConstructParams &construct_params)
 
 Object (GObject *castitem)
 
virtual ~Object () noexcept
 
- Protected Member Functions inherited from Glib::ObjectBase
 ObjectBase ()
 
 ObjectBase (const char *custom_type_name)
 
 ObjectBase (const std::type_info &custom_type_info)
 
 ObjectBase (ObjectBase &&src) noexcept
 
ObjectBaseoperator= (ObjectBase &&src) noexcept
 
virtual ~ObjectBase () noexcept=0
 
void initialize (GObject *castitem)
 
void initialize_move (GObject *castitem, Glib::ObjectBase *previous_wrapper)
 
- - - - - -

-Related Functions

(Note that these are not member functions.)

-
Glib::RefPtr< Atk::RelationSetwrap (AtkRelationSet* object, bool take_copy=false)
 A Glib::wrap() method for this object. More...
 
- - - - - - - -

-Additional Inherited Members

- Public Types inherited from Glib::Object
typedef void(* DestroyNotify) (gpointer data)
 
- Public Types inherited from sigc::trackable
typedef internal::func_destroy_notify func_destroy_notify
 
-

Detailed Description

-

A set of Atk::Relations, normally the set of AtkRelations which an Atk::Object has.

-

Constructor & Destructor Documentation

- -
-
- - - - - -
- - - - - - - - -
Atk::RelationSet::RelationSet (RelationSet&& src)
-
-noexcept
-
- -
-
- -
-
- - - - - -
- - - - - - - -
virtual Atk::RelationSet::~RelationSet ()
-
-virtualnoexcept
-
- -
-
- -
-
- - - - - -
- - - - - - - -
Atk::RelationSet::RelationSet ()
-
-protected
-
- -
-
-

Member Function Documentation

- -
-
- - - - - - - - - - - - - - - - - - -
void Atk::RelationSet::add_relation_by_type (RelationType relationship,
const Glib::RefPtr< Atk::Object >& target 
)
-
- -

Add a new relation of the specified type with the specified target to the current relation set if the relation set does not contain a relation of that type.

-

If it is does contain a relation of that typea the target is added to the relation.

-
Since atkmm 1.9:
-
Parameters
- - - -
relationshipAn Atk::RelationType.
targetAn Atk::Object.
-
-
- -
-
- -
-
- - - - - -
- - - - - - - -
static Glib::RefPtr<RelationSet> Atk::RelationSet::create ()
-
-static
-
- -
-
- -
-
- - - - - - - -
int Atk::RelationSet::get_n_relations () const
-
- -

Determines the number of relations in a relation set.

-
Returns
An integer representing the number of relations in the set.
- -
-
- -
-
- - - - - - - - -
Glib::RefPtr<Relation> Atk::RelationSet::get_relation (gint i)
-
- -

Determines the relation at the specified position in the relation set.

-
Parameters
- - -
iA int representing a position in the set, starting from 0.
-
-
-
Returns
A Atk::Relation, which is the relation at position i in the set.
- -
-
- -
-
- - - - - - - - -
Glib::RefPtr<Relation> Atk::RelationSet::get_relation (RelationType relationship)
-
- -

Finds a relation that matches the specified type.

-
Parameters
- - -
relationshipAn Atk::RelationType.
-
-
-
Returns
An Atk::Relation, which is a relation matching the specified type.
- -
-
- -
-
- - - - - -
- - - - - - - -
static GType Atk::RelationSet::get_type ()
-
-static
-
- -

Get the GType for this class, for use with the underlying GObject type system.

- -
-
- -
-
- - - - - -
- - - - - - - -
AtkRelationSet* Atk::RelationSet::gobj ()
-
-inline
-
- -

Provides access to the underlying C GObject.

- -
-
- -
-
- - - - - -
- - - - - - - -
const AtkRelationSet* Atk::RelationSet::gobj () const
-
-inline
-
- -

Provides access to the underlying C GObject.

- -
-
- -
-
- - - - - - - -
AtkRelationSet* Atk::RelationSet::gobj_copy ()
-
- -

Provides access to the underlying C instance. The caller is responsible for unrefing it. Use when directly setting fields in structs.

- -
-
- -
-
- - - - - -
- - - - - - - - -
RelationSet& Atk::RelationSet::operator= (RelationSet&& src)
-
-noexcept
-
- -
-
- -
-
- - - - - - - - -
void Atk::RelationSet::set_add (const Glib::RefPtr< Relation >& relation)
-
- -

Add a new relation to the current relation set if it is not already present.

-

This function ref's the AtkRelation so the caller of this function should unref it to ensure that it will be destroyed when the AtkRelationSet is destroyed.

-
Parameters
- - -
relationAn Atk::Relation.
-
-
- -
-
- -
-
- - - - - - - - -
bool Atk::RelationSet::set_contains (RelationType relationship)
-
- -

Determines whether the relation set contains a relation that matches the specified type.

-
Parameters
- - -
relationshipAn Atk::RelationType.
-
-
-
Returns
true if relationship is the relationship type of a relation in set, false otherwise.
- -
-
- -
-
- - - - - - - - -
void Atk::RelationSet::set_remove (const Glib::RefPtr< Relation >& relation)
-
- -

Removes a relation from the relation set.

-

This function unref's the Atk::Relation so it will be deleted unless there is another reference to it.

-
Parameters
- - -
relationAn Atk::Relation.
-
-
- -
-
-

Friends And Related Function Documentation

- -
-
- - - - - -
- - - - - - - - - - - - - - - - - - -
Glib::RefPtr< Atk::RelationSet > wrap (AtkRelationSet * object,
bool take_copy = false 
)
-
-related
-
- -

A Glib::wrap() method for this object.

-
Parameters
- - - -
objectThe C instance.
take_copyFalse if the result should take ownership of the C instance. True if it should take a new copy or ref.
-
-
-
Returns
A C++ instance that wraps this C instance.
- -
-
-
- - - - Binary files /tmp/tmpOzhFOD/5A0TTRaIcC/atkmm1.6-2.24.2/doc/reference/html/classAtk_1_1RelationSet__inherit__graph.png and /tmp/tmpOzhFOD/Bg2TspT7RQ/atkmm1.6-2.28.0/doc/reference/html/classAtk_1_1RelationSet__inherit__graph.png differ diff -Nru atkmm1.6-2.24.2/doc/reference/html/classAtk_1_1RelationSet-members.html atkmm1.6-2.28.0/doc/reference/html/classAtk_1_1RelationSet-members.html --- atkmm1.6-2.24.2/doc/reference/html/classAtk_1_1RelationSet-members.html 2015-11-29 20:05:33.295311097 +0000 +++ atkmm1.6-2.28.0/doc/reference/html/classAtk_1_1RelationSet-members.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,131 +0,0 @@ - - - - - - -atkmm: Member List - - - - - - -
-
- - - - - - -
-
atkmm -  2.24.2 -
-
-
- - - - - -
-
-
-
Atk::RelationSet Member List
-
-
- -

This is the complete list of members for Atk::RelationSet, including all inherited members.

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
add_destroy_notify_callback(void *data, func_destroy_notify func) const sigc::trackable
add_relation_by_type(RelationType relationship, const Glib::RefPtr< Atk::Object >& target)Atk::RelationSet
connect_property_changed(const Glib::ustring &property_name, const sigc::slot< void > &slot)Glib::ObjectBase
connect_property_changed_with_return(const Glib::ustring &property_name, const sigc::slot< void > &slot)Glib::ObjectBase
create()Atk::RelationSetstatic
DestroyNotify typedefGlib::Object
freeze_notify()Glib::ObjectBase
func_destroy_notify typedefsigc::trackable
get_data(const QueryQuark &key)Glib::Object
get_n_relations() const Atk::RelationSet
get_property(const Glib::ustring &property_name, PropertyType &value) const Glib::ObjectBase
get_property_value(const Glib::ustring &property_name, Glib::ValueBase &value) const Glib::ObjectBase
get_relation(gint i)Atk::RelationSet
get_relation(RelationType relationship)Atk::RelationSet
get_type()Atk::RelationSetstatic
gobj()Atk::RelationSetinline
gobj() const Atk::RelationSetinline
gobj_copy()Atk::RelationSet
Glib::Object::gobj_copy() const Glib::ObjectBase
initialize(GObject *castitem)Glib::ObjectBaseprotected
initialize_move(GObject *castitem, Glib::ObjectBase *previous_wrapper)Glib::ObjectBaseprotected
notify_callbacks()sigc::trackable
Object(const Object &)=deleteGlib::Object
Object(Object &&src) noexceptGlib::Object
Object()Glib::Objectprotected
Object(const Glib::ConstructParams &construct_params)Glib::Objectprotected
Object(GObject *castitem)Glib::Objectprotected
ObjectBase(const ObjectBase &)=deleteGlib::ObjectBase
ObjectBase()Glib::ObjectBaseprotected
ObjectBase(const char *custom_type_name)Glib::ObjectBaseprotected
ObjectBase(const std::type_info &custom_type_info)Glib::ObjectBaseprotected
ObjectBase(ObjectBase &&src) noexceptGlib::ObjectBaseprotected
operator=(RelationSet&& src) noexceptAtk::RelationSet
Glib::Object::operator=(const Object &)=deleteGlib::Object
Glib::Object::operator=(Object &&src) noexceptGlib::Object
Glib::ObjectBase::operator=(const ObjectBase &)=deleteGlib::ObjectBase
Glib::ObjectBase::operator=(ObjectBase &&src) noexceptGlib::ObjectBaseprotected
sigc::trackable::operator=(const trackable &src)sigc::trackable
sigc::trackable::operator=(trackable &&src)sigc::trackable
reference() const Glib::ObjectBasevirtual
RelationSet(RelationSet&& src) noexceptAtk::RelationSet
RelationSet()Atk::RelationSetprotected
remove_data(const QueryQuark &quark)Glib::Object
remove_destroy_notify_callback(void *data) const sigc::trackable
set_add(const Glib::RefPtr< Relation >& relation)Atk::RelationSet
set_contains(RelationType relationship)Atk::RelationSet
set_data(const Quark &key, void *data)Glib::Object
set_data(const Quark &key, void *data, DestroyNotify notify)Glib::Object
set_property(const Glib::ustring &property_name, const PropertyType &value)Glib::ObjectBase
set_property_value(const Glib::ustring &property_name, const Glib::ValueBase &value)Glib::ObjectBase
set_remove(const Glib::RefPtr< Relation >& relation)Atk::RelationSet
steal_data(const QueryQuark &quark)Glib::Object
thaw_notify()Glib::ObjectBase
trackable() noexceptsigc::trackable
trackable(const trackable &src) noexceptsigc::trackable
trackable(trackable &&src)sigc::trackable
unreference() const Glib::ObjectBasevirtual
wrap(AtkRelationSet* object, bool take_copy=false)Atk::RelationSetrelated
Glib::Object::wrap(GObject *object, bool take_copy=false)Glib::Object
~Object() noexceptGlib::Objectprotectedvirtual
~ObjectBase() noexcept=0Glib::ObjectBaseprotectedpure virtual
~RelationSet() noexceptAtk::RelationSetvirtual
~trackable()sigc::trackable
- - - - diff -Nru atkmm1.6-2.24.2/doc/reference/html/classAtk_1_1Selection.html atkmm1.6-2.28.0/doc/reference/html/classAtk_1_1Selection.html --- atkmm1.6-2.24.2/doc/reference/html/classAtk_1_1Selection.html 2015-11-29 20:05:33.315310716 +0000 +++ atkmm1.6-2.28.0/doc/reference/html/classAtk_1_1Selection.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,865 +0,0 @@ - - - - - - -atkmm: Atk::Selection Class Reference - - - - - - -
-
- - - - - - -
-
atkmm -  2.24.2 -
-
-
- - - - - -
- -
- -

The ATK interface implemented by container objects whose Atk::Object children can be selected. - More...

- -

#include <atkmm/selection.h>

-
-Inheritance diagram for Atk::Selection:
-
-
Inheritance graph
- - -
[legend]
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

-Public Member Functions

 Selection (Selection&& src) noexcept
 
Selectionoperator= (Selection&& src) noexcept
 
virtual ~Selection () noexcept
 
AtkSelection* gobj ()
 Provides access to the underlying C GObject. More...
 
const AtkSelection* gobj () const
 Provides access to the underlying C GObject. More...
 
bool add_selection (int i)
 Adds the specified accessible child of the object to the object's selection. More...
 
bool clear_selection ()
 Clears the selection in the object so that no children in the object are selected. More...
 
Glib::RefPtr< Atk::Objectget_selection (int i)
 Gets a reference to the accessible object representing the specified selected child of the object. More...
 
int get_selection_count () const
 Gets the number of accessible children currently selected. More...
 
bool is_child_selected (int i) const
 Determines if the current child of this object is selected. More...
 
bool remove_selection (int i)
 Removes the specified child of the object from the object's selection. More...
 
bool select_all_selection ()
 Causes every child of the object to be selected if the object supports multiple selections. More...
 
Glib::SignalProxy0< void > signal_selection_changed ()
 
- Public Member Functions inherited from Glib::Interface
 Interface ()
 
 Interface (Interface &&src) noexcept
 
Interfaceoperator= (Interface &&src) noexcept
 
 Interface (const Glib::Interface_Class &interface_class)
 
 Interface (GObject *castitem)
 
virtual ~Interface () noexcept
 
 Interface (const Interface &)=delete
 
Interfaceoperator= (const Interface &)=delete
 
GObject * gobj ()
 
const GObject * gobj () const
 
- Public Member Functions inherited from Glib::ObjectBase
 ObjectBase (const ObjectBase &)=delete
 
ObjectBaseoperator= (const ObjectBase &)=delete
 
void set_property_value (const Glib::ustring &property_name, const Glib::ValueBase &value)
 
void get_property_value (const Glib::ustring &property_name, Glib::ValueBase &value) const
 
void set_property (const Glib::ustring &property_name, const PropertyType &value)
 
void get_property (const Glib::ustring &property_name, PropertyType &value) const
 
void connect_property_changed (const Glib::ustring &property_name, const sigc::slot< void > &slot)
 
sigc::connection connect_property_changed_with_return (const Glib::ustring &property_name, const sigc::slot< void > &slot)
 
void freeze_notify ()
 
void thaw_notify ()
 
virtual void reference () const
 
virtual void unreference () const
 
GObject * gobj ()
 
const GObject * gobj () const
 
GObject * gobj_copy () const
 
- Public Member Functions inherited from sigc::trackable
 trackable () noexcept
 
 trackable (const trackable &src) noexcept
 
 trackable (trackable &&src)
 
 ~trackable ()
 
void add_destroy_notify_callback (void *data, func_destroy_notify func) const
 
void notify_callbacks ()
 
trackableoperator= (const trackable &src)
 
trackableoperator= (trackable &&src)
 
void remove_destroy_notify_callback (void *data) const
 
- - - - - - -

-Static Public Member Functions

static void add_interface (GType gtype_implementer)
 
static GType get_type ()
 Get the GType for this class, for use with the underlying GObject type system. More...
 
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

-Protected Member Functions

 Selection ()
 You should derive from this class to use it. More...
 
virtual bool add_selection_vfunc (int i)
 
virtual bool clear_selection_vfunc ()
 
virtual Glib::RefPtr< Atk::Objectget_selection_vfunc (int i)
 
virtual int get_selection_count_vfunc () const
 
virtual bool is_child_selected_vfunc (int i) const
 
virtual bool remove_selection_vfunc (int i)
 
virtual bool select_all_selection_vfunc ()
 
virtual void on_selection_changed ()
 This is a default handler for the signal signal_selection_changed(). More...
 
- Protected Member Functions inherited from Glib::ObjectBase
 ObjectBase ()
 
 ObjectBase (const char *custom_type_name)
 
 ObjectBase (const std::type_info &custom_type_info)
 
 ObjectBase (ObjectBase &&src) noexcept
 
ObjectBaseoperator= (ObjectBase &&src) noexcept
 
virtual ~ObjectBase () noexcept=0
 
void initialize (GObject *castitem)
 
void initialize_move (GObject *castitem, Glib::ObjectBase *previous_wrapper)
 
- - - - - -

-Related Functions

(Note that these are not member functions.)

-
Glib::RefPtr< Atk::Selectionwrap (AtkSelection* object, bool take_copy=false)
 A Glib::wrap() method for this object. More...
 
- - - - -

-Additional Inherited Members

- Public Types inherited from sigc::trackable
typedef internal::func_destroy_notify func_destroy_notify
 
-

Detailed Description

-

The ATK interface implemented by container objects whose Atk::Object children can be selected.

-

This should be implemented by UI components with children which are exposed by Atk::Object::ref_child and Atk::Object::get_n_children, if the use of the parent UI component ordinarily involves selection of one or more of the objects corresponding to those AtkObject children - for example, selectable lists.

-

Note that other types of "selection" (for instance text selection) are accomplished a other ATK interfaces - Atk::Selection is limited to the selection/deselection of children.

-

Constructor & Destructor Documentation

- -
-
- - - - - -
- - - - - - - -
Atk::Selection::Selection ()
-
-protected
-
- -

You should derive from this class to use it.

- -
-
- -
-
- - - - - -
- - - - - - - - -
Atk::Selection::Selection (Selection&& src)
-
-noexcept
-
- -
-
- -
-
- - - - - -
- - - - - - - -
virtual Atk::Selection::~Selection ()
-
-virtualnoexcept
-
- -
-
-

Member Function Documentation

- -
-
- - - - - -
- - - - - - - - -
static void Atk::Selection::add_interface (GType gtype_implementer)
-
-static
-
- -
-
- -
-
- - - - - - - - -
bool Atk::Selection::add_selection (int i)
-
- -

Adds the specified accessible child of the object to the object's selection.

-
Parameters
- - -
iA int specifying the child index.
-
-
-
Returns
true if success, false otherwise.
- -
-
- -
-
- - - - - -
- - - - - - - - -
virtual bool Atk::Selection::add_selection_vfunc (int i)
-
-protectedvirtual
-
- -
-
- -
-
- - - - - - - -
bool Atk::Selection::clear_selection ()
-
- -

Clears the selection in the object so that no children in the object are selected.

-
Returns
true if success, false otherwise.
- -
-
- -
-
- - - - - -
- - - - - - - -
virtual bool Atk::Selection::clear_selection_vfunc ()
-
-protectedvirtual
-
- -
-
- -
-
- - - - - - - - -
Glib::RefPtr<Atk::Object> Atk::Selection::get_selection (int i)
-
- -

Gets a reference to the accessible object representing the specified selected child of the object.

-
Note
callers should not rely on nullptr or on a zero value for indication of whether AtkSelectionIface is implemented, they should use type checking/interface checking macros or the atk_get_accessible_value() convenience method.
-
Parameters
- - -
iA int specifying the index in the selection set. (e.g. the ith selection as opposed to the ith child).
-
-
-
Returns
An Atk::Object representing the selected accessible, or nullptr if selection does not implement this interface.
- -
-
- -
-
- - - - - - - -
int Atk::Selection::get_selection_count () const
-
- -

Gets the number of accessible children currently selected.

-
Note
callers should not rely on nullptr or on a zero value for indication of whether AtkSelectionIface is implemented, they should use type checking/interface checking macros or the atk_get_accessible_value() convenience method.
-
Returns
A int representing the number of items selected, or 0 if selection does not implement this interface.
- -
-
- -
-
- - - - - -
- - - - - - - -
virtual int Atk::Selection::get_selection_count_vfunc () const
-
-protectedvirtual
-
- -
-
- -
-
- - - - - -
- - - - - - - - -
virtual Glib::RefPtr<Atk::Object> Atk::Selection::get_selection_vfunc (int i)
-
-protectedvirtual
-
- -
-
- -
-
- - - - - -
- - - - - - - -
static GType Atk::Selection::get_type ()
-
-static
-
- -

Get the GType for this class, for use with the underlying GObject type system.

- -
-
- -
-
- - - - - -
- - - - - - - -
AtkSelection* Atk::Selection::gobj ()
-
-inline
-
- -

Provides access to the underlying C GObject.

- -
-
- -
-
- - - - - -
- - - - - - - -
const AtkSelection* Atk::Selection::gobj () const
-
-inline
-
- -

Provides access to the underlying C GObject.

- -
-
- -
-
- - - - - - - - -
bool Atk::Selection::is_child_selected (int i) const
-
- -

Determines if the current child of this object is selected.

-
Note
callers should not rely on nullptr or on a zero value for indication of whether AtkSelectionIface is implemented, they should use type checking/interface checking macros or the atk_get_accessible_value() convenience method.
-
Parameters
- - -
iA int specifying the child index.
-
-
-
Returns
A bool representing the specified child is selected, or 0 if selection does not implement this interface.
- -
-
- -
-
- - - - - -
- - - - - - - - -
virtual bool Atk::Selection::is_child_selected_vfunc (int i) const
-
-protectedvirtual
-
- -
-
- -
-
- - - - - -
- - - - - - - -
virtual void Atk::Selection::on_selection_changed ()
-
-protectedvirtual
-
- -

This is a default handler for the signal signal_selection_changed().

- -
-
- -
-
- - - - - -
- - - - - - - - -
Selection& Atk::Selection::operator= (Selection&& src)
-
-noexcept
-
- -
-
- -
-
- - - - - - - - -
bool Atk::Selection::remove_selection (int i)
-
- -

Removes the specified child of the object from the object's selection.

-
Parameters
- - -
iA int specifying the index in the selection set. (e.g. the ith selection as opposed to the ith child).
-
-
-
Returns
true if success, false otherwise.
- -
-
- -
-
- - - - - -
- - - - - - - - -
virtual bool Atk::Selection::remove_selection_vfunc (int i)
-
-protectedvirtual
-
- -
-
- -
-
- - - - - - - -
bool Atk::Selection::select_all_selection ()
-
- -

Causes every child of the object to be selected if the object supports multiple selections.

-
Returns
true if success, false otherwise.
- -
-
- -
-
- - - - - -
- - - - - - - -
virtual bool Atk::Selection::select_all_selection_vfunc ()
-
-protectedvirtual
-
- -
-
- -
-
- - - - - - - -
Glib::SignalProxy0< void > Atk::Selection::signal_selection_changed ()
-
-
Slot Prototype:
void on_my_selection_changed()
-

The "selection-changed" signal is emitted by an object which implements AtkSelection interface when the selection changes.

- -
-
-

Friends And Related Function Documentation

- -
-
- - - - - -
- - - - - - - - - - - - - - - - - - -
Glib::RefPtr< Atk::Selection > wrap (AtkSelection * object,
bool take_copy = false 
)
-
-related
-
- -

A Glib::wrap() method for this object.

-
Parameters
- - - -
objectThe C instance.
take_copyFalse if the result should take ownership of the C instance. True if it should take a new copy or ref.
-
-
-
Returns
A C++ instance that wraps this C instance.
- -
-
-
- - - - Binary files /tmp/tmpOzhFOD/5A0TTRaIcC/atkmm1.6-2.24.2/doc/reference/html/classAtk_1_1Selection__inherit__graph.png and /tmp/tmpOzhFOD/Bg2TspT7RQ/atkmm1.6-2.28.0/doc/reference/html/classAtk_1_1Selection__inherit__graph.png differ diff -Nru atkmm1.6-2.24.2/doc/reference/html/classAtk_1_1Selection-members.html atkmm1.6-2.28.0/doc/reference/html/classAtk_1_1Selection-members.html --- atkmm1.6-2.24.2/doc/reference/html/classAtk_1_1Selection-members.html 2015-11-29 20:05:33.327310488 +0000 +++ atkmm1.6-2.28.0/doc/reference/html/classAtk_1_1Selection-members.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,132 +0,0 @@ - - - - - - -atkmm: Member List - - - - - - -
-
- - - - - - -
-
atkmm -  2.24.2 -
-
-
- - - - - -
-
-
-
Atk::Selection Member List
-
-
- -

This is the complete list of members for Atk::Selection, including all inherited members.

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
add_destroy_notify_callback(void *data, func_destroy_notify func) const sigc::trackable
add_interface(GType gtype_implementer)Atk::Selectionstatic
add_selection(int i)Atk::Selection
add_selection_vfunc(int i)Atk::Selectionprotectedvirtual
clear_selection()Atk::Selection
clear_selection_vfunc()Atk::Selectionprotectedvirtual
connect_property_changed(const Glib::ustring &property_name, const sigc::slot< void > &slot)Glib::ObjectBase
connect_property_changed_with_return(const Glib::ustring &property_name, const sigc::slot< void > &slot)Glib::ObjectBase
freeze_notify()Glib::ObjectBase
func_destroy_notify typedefsigc::trackable
get_property(const Glib::ustring &property_name, PropertyType &value) const Glib::ObjectBase
get_property_value(const Glib::ustring &property_name, Glib::ValueBase &value) const Glib::ObjectBase
get_selection(int i)Atk::Selection
get_selection_count() const Atk::Selection
get_selection_count_vfunc() const Atk::Selectionprotectedvirtual
get_selection_vfunc(int i)Atk::Selectionprotectedvirtual
get_type()Atk::Selectionstatic
gobj()Atk::Selectioninline
gobj() const Atk::Selectioninline
gobj_copy() const Glib::ObjectBase
initialize(GObject *castitem)Glib::ObjectBaseprotected
initialize_move(GObject *castitem, Glib::ObjectBase *previous_wrapper)Glib::ObjectBaseprotected
Interface()Glib::Interface
Interface(Interface &&src) noexceptGlib::Interface
Interface(const Glib::Interface_Class &interface_class)Glib::Interface
Interface(GObject *castitem)Glib::Interface
Interface(const Interface &)=deleteGlib::Interface
is_child_selected(int i) const Atk::Selection
is_child_selected_vfunc(int i) const Atk::Selectionprotectedvirtual
notify_callbacks()sigc::trackable
ObjectBase(const ObjectBase &)=deleteGlib::ObjectBase
ObjectBase()Glib::ObjectBaseprotected
ObjectBase(const char *custom_type_name)Glib::ObjectBaseprotected
ObjectBase(const std::type_info &custom_type_info)Glib::ObjectBaseprotected
ObjectBase(ObjectBase &&src) noexceptGlib::ObjectBaseprotected
on_selection_changed()Atk::Selectionprotectedvirtual
operator=(Selection&& src) noexceptAtk::Selection
Glib::Interface::operator=(Interface &&src) noexceptGlib::Interface
Glib::Interface::operator=(const Interface &)=deleteGlib::Interface
Glib::ObjectBase::operator=(const ObjectBase &)=deleteGlib::ObjectBase
Glib::ObjectBase::operator=(ObjectBase &&src) noexceptGlib::ObjectBaseprotected
sigc::trackable::operator=(const trackable &src)sigc::trackable
sigc::trackable::operator=(trackable &&src)sigc::trackable
reference() const Glib::ObjectBasevirtual
remove_destroy_notify_callback(void *data) const sigc::trackable
remove_selection(int i)Atk::Selection
remove_selection_vfunc(int i)Atk::Selectionprotectedvirtual
select_all_selection()Atk::Selection
select_all_selection_vfunc()Atk::Selectionprotectedvirtual
Selection()Atk::Selectionprotected
Selection(Selection&& src) noexceptAtk::Selection
set_property(const Glib::ustring &property_name, const PropertyType &value)Glib::ObjectBase
set_property_value(const Glib::ustring &property_name, const Glib::ValueBase &value)Glib::ObjectBase
signal_selection_changed()Atk::Selection
thaw_notify()Glib::ObjectBase
trackable() noexceptsigc::trackable
trackable(const trackable &src) noexceptsigc::trackable
trackable(trackable &&src)sigc::trackable
unreference() const Glib::ObjectBasevirtual
wrap(AtkSelection* object, bool take_copy=false)Atk::Selectionrelated
~Interface() noexceptGlib::Interfacevirtual
~ObjectBase() noexcept=0Glib::ObjectBaseprotectedpure virtual
~Selection() noexceptAtk::Selectionvirtual
~trackable()sigc::trackable
- - - - diff -Nru atkmm1.6-2.24.2/doc/reference/html/classAtk_1_1StateSet.html atkmm1.6-2.28.0/doc/reference/html/classAtk_1_1StateSet.html --- atkmm1.6-2.24.2/doc/reference/html/classAtk_1_1StateSet.html 2015-11-29 20:05:33.343310184 +0000 +++ atkmm1.6-2.28.0/doc/reference/html/classAtk_1_1StateSet.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,736 +0,0 @@ - - - - - - -atkmm: Atk::StateSet Class Reference - - - - - - -
-
- - - - - - -
-
atkmm -  2.24.2 -
-
-
- - - - - -
- -
- -

An AtkStateSet determines a component's state set. - More...

- -

#include <atkmm/stateset.h>

-
-Inheritance diagram for Atk::StateSet:
-
-
Inheritance graph
- - -
[legend]
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

-Public Member Functions

 StateSet (StateSet&& src) noexcept
 
StateSetoperator= (StateSet&& src) noexcept
 
virtual ~StateSet () noexcept
 
AtkStateSet* gobj ()
 Provides access to the underlying C GObject. More...
 
const AtkStateSet* gobj () const
 Provides access to the underlying C GObject. More...
 
AtkStateSet* gobj_copy ()
 Provides access to the underlying C instance. The caller is responsible for unrefing it. Use when directly setting fields in structs. More...
 
bool is_empty () const
 Checks whether the state set is empty, i.e. has no states set. More...
 
bool add_state (Atk::StateType type)
 Adds the state of the specified type to the state set if it is not already present. More...
 
void add_states (const Glib::ArrayHandle< Atk::StateType >& types)
 
void clear_states ()
 Removes all states from the state set. More...
 
bool contains_state (Atk::StateType type)
 Checks whether the state for the specified type is in the specified set. More...
 
bool contains_states (const Glib::ArrayHandle< Atk::StateType >& types) const
 
bool remove_state (Atk::StateType type)
 Removes the state for the specified type from the state set. More...
 
Glib::RefPtr< StateSetand_sets (const Glib::RefPtr< StateSet >& compare_set)
 Constructs the intersection of the two sets, returning nullptr if the intersection is empty. More...
 
Glib::RefPtr< StateSetor_sets (const Glib::RefPtr< StateSet >& compare_set)
 Constructs the union of the two sets. More...
 
Glib::RefPtr< StateSetxor_sets (const Glib::RefPtr< StateSet >& compare_set)
 Constructs the exclusive-or of the two sets, returning nullptr is empty. More...
 
- Public Member Functions inherited from Glib::Object
 Object (const Object &)=delete
 
Objectoperator= (const Object &)=delete
 
 Object (Object &&src) noexcept
 
Objectoperator= (Object &&src) noexcept
 
void * get_data (const QueryQuark &key)
 
void set_data (const Quark &key, void *data)
 
void set_data (const Quark &key, void *data, DestroyNotify notify)
 
void remove_data (const QueryQuark &quark)
 
void * steal_data (const QueryQuark &quark)
 
Glib::RefPtr< Glib::Objectwrap (GObject *object, bool take_copy=false)
 
- Public Member Functions inherited from Glib::ObjectBase
 ObjectBase (const ObjectBase &)=delete
 
ObjectBaseoperator= (const ObjectBase &)=delete
 
void set_property_value (const Glib::ustring &property_name, const Glib::ValueBase &value)
 
void get_property_value (const Glib::ustring &property_name, Glib::ValueBase &value) const
 
void set_property (const Glib::ustring &property_name, const PropertyType &value)
 
void get_property (const Glib::ustring &property_name, PropertyType &value) const
 
void connect_property_changed (const Glib::ustring &property_name, const sigc::slot< void > &slot)
 
sigc::connection connect_property_changed_with_return (const Glib::ustring &property_name, const sigc::slot< void > &slot)
 
void freeze_notify ()
 
void thaw_notify ()
 
virtual void reference () const
 
virtual void unreference () const
 
GObject * gobj ()
 
const GObject * gobj () const
 
GObject * gobj_copy () const
 
- Public Member Functions inherited from sigc::trackable
 trackable () noexcept
 
 trackable (const trackable &src) noexcept
 
 trackable (trackable &&src)
 
 ~trackable ()
 
void add_destroy_notify_callback (void *data, func_destroy_notify func) const
 
void notify_callbacks ()
 
trackableoperator= (const trackable &src)
 
trackableoperator= (trackable &&src)
 
void remove_destroy_notify_callback (void *data) const
 
- - - - - - -

-Static Public Member Functions

static GType get_type ()
 Get the GType for this class, for use with the underlying GObject type system. More...
 
static Glib::RefPtr< StateSetcreate ()
 
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

-Protected Member Functions

 StateSet ()
 
- Protected Member Functions inherited from Glib::Object
 Object ()
 
 Object (const Glib::ConstructParams &construct_params)
 
 Object (GObject *castitem)
 
virtual ~Object () noexcept
 
- Protected Member Functions inherited from Glib::ObjectBase
 ObjectBase ()
 
 ObjectBase (const char *custom_type_name)
 
 ObjectBase (const std::type_info &custom_type_info)
 
 ObjectBase (ObjectBase &&src) noexcept
 
ObjectBaseoperator= (ObjectBase &&src) noexcept
 
virtual ~ObjectBase () noexcept=0
 
void initialize (GObject *castitem)
 
void initialize_move (GObject *castitem, Glib::ObjectBase *previous_wrapper)
 
- - - - - -

-Related Functions

(Note that these are not member functions.)

-
Glib::RefPtr< Atk::StateSetwrap (AtkStateSet* object, bool take_copy=false)
 A Glib::wrap() method for this object. More...
 
- - - - - - - -

-Additional Inherited Members

- Public Types inherited from Glib::Object
typedef void(* DestroyNotify) (gpointer data)
 
- Public Types inherited from sigc::trackable
typedef internal::func_destroy_notify func_destroy_notify
 
-

Detailed Description

-

An AtkStateSet determines a component's state set.

-

It is composed of a set of Atk::States.

-

Constructor & Destructor Documentation

- -
-
- - - - - -
- - - - - - - - -
Atk::StateSet::StateSet (StateSet&& src)
-
-noexcept
-
- -
-
- -
-
- - - - - -
- - - - - - - -
virtual Atk::StateSet::~StateSet ()
-
-virtualnoexcept
-
- -
-
- -
-
- - - - - -
- - - - - - - -
Atk::StateSet::StateSet ()
-
-protected
-
- -
-
-

Member Function Documentation

- -
-
- - - - - - - - -
bool Atk::StateSet::add_state (Atk::StateType type)
-
- -

Adds the state of the specified type to the state set if it is not already present.

-

Note that because an Atk::StateSet is a read-only object, this method should be used to add a state to a newly-created set which will then be returned by #atk_object_ref_state_set. It should not be used to modify the existing state of an object. See also #atk_object_notify_state_change.

-
Parameters
- - -
typeAn Atk::StateType.
-
-
-
Returns
true if the state for type is not already in set.
- -
-
- -
-
- - - - - - - - -
void Atk::StateSet::add_states (const Glib::ArrayHandle< Atk::StateType >& types)
-
- -
-
- -
-
- - - - - - - - -
Glib::RefPtr<StateSet> Atk::StateSet::and_sets (const Glib::RefPtr< StateSet >& compare_set)
-
- -

Constructs the intersection of the two sets, returning nullptr if the intersection is empty.

-
Parameters
- - -
compare_setAnother Atk::StateSet.
-
-
-
Returns
A new Atk::StateSet which is the intersection of the two sets.
- -
-
- -
-
- - - - - - - -
void Atk::StateSet::clear_states ()
-
- -

Removes all states from the state set.

- -
-
- -
-
- - - - - - - - -
bool Atk::StateSet::contains_state (Atk::StateType type)
-
- -

Checks whether the state for the specified type is in the specified set.

-
Parameters
- - -
typeAn Atk::StateType.
-
-
-
Returns
true if type is the state type is in set.
- -
-
- -
-
- - - - - - - - -
bool Atk::StateSet::contains_states (const Glib::ArrayHandle< Atk::StateType >& types) const
-
- -
-
- -
-
- - - - - -
- - - - - - - -
static Glib::RefPtr<StateSet> Atk::StateSet::create ()
-
-static
-
- -
-
- -
-
- - - - - -
- - - - - - - -
static GType Atk::StateSet::get_type ()
-
-static
-
- -

Get the GType for this class, for use with the underlying GObject type system.

- -
-
- -
-
- - - - - -
- - - - - - - -
AtkStateSet* Atk::StateSet::gobj ()
-
-inline
-
- -

Provides access to the underlying C GObject.

- -
-
- -
-
- - - - - -
- - - - - - - -
const AtkStateSet* Atk::StateSet::gobj () const
-
-inline
-
- -

Provides access to the underlying C GObject.

- -
-
- -
-
- - - - - - - -
AtkStateSet* Atk::StateSet::gobj_copy ()
-
- -

Provides access to the underlying C instance. The caller is responsible for unrefing it. Use when directly setting fields in structs.

- -
-
- -
-
- - - - - - - -
bool Atk::StateSet::is_empty () const
-
- -

Checks whether the state set is empty, i.e. has no states set.

-
Returns
true if set has no states set, otherwise false.
- -
-
- -
-
- - - - - -
- - - - - - - - -
StateSet& Atk::StateSet::operator= (StateSet&& src)
-
-noexcept
-
- -
-
- -
-
- - - - - - - - -
Glib::RefPtr<StateSet> Atk::StateSet::or_sets (const Glib::RefPtr< StateSet >& compare_set)
-
- -

Constructs the union of the two sets.

-
Parameters
- - -
compare_setAnother Atk::StateSet.
-
-
-
Returns
A new Atk::StateSet which is the union of the two sets, returning nullptr is empty.
- -
-
- -
-
- - - - - - - - -
bool Atk::StateSet::remove_state (Atk::StateType type)
-
- -

Removes the state for the specified type from the state set.

-

Note that because an Atk::StateSet is a read-only object, this method should be used to remove a state to a newly-created set which will then be returned by #atk_object_ref_state_set. It should not be used to modify the existing state of an object. See also #atk_object_notify_state_change.

-
Parameters
- - -
typeAn Atk::Type.
-
-
-
Returns
true if type was the state type is in set.
- -
-
- -
-
- - - - - - - - -
Glib::RefPtr<StateSet> Atk::StateSet::xor_sets (const Glib::RefPtr< StateSet >& compare_set)
-
- -

Constructs the exclusive-or of the two sets, returning nullptr is empty.

-

The set returned by this operation contains the states in exactly one of the two sets.

-
Parameters
- - -
compare_setAnother Atk::StateSet.
-
-
-
Returns
A new Atk::StateSet which contains the states which are in exactly one of the two sets.
- -
-
-

Friends And Related Function Documentation

- -
-
- - - - - -
- - - - - - - - - - - - - - - - - - -
Glib::RefPtr< Atk::StateSet > wrap (AtkStateSet * object,
bool take_copy = false 
)
-
-related
-
- -

A Glib::wrap() method for this object.

-
Parameters
- - - -
objectThe C instance.
take_copyFalse if the result should take ownership of the C instance. True if it should take a new copy or ref.
-
-
-
Returns
A C++ instance that wraps this C instance.
- -
-
-
- - - - Binary files /tmp/tmpOzhFOD/5A0TTRaIcC/atkmm1.6-2.24.2/doc/reference/html/classAtk_1_1StateSet__inherit__graph.png and /tmp/tmpOzhFOD/Bg2TspT7RQ/atkmm1.6-2.28.0/doc/reference/html/classAtk_1_1StateSet__inherit__graph.png differ diff -Nru atkmm1.6-2.24.2/doc/reference/html/classAtk_1_1StateSet-members.html atkmm1.6-2.28.0/doc/reference/html/classAtk_1_1StateSet-members.html --- atkmm1.6-2.24.2/doc/reference/html/classAtk_1_1StateSet-members.html 2015-11-29 20:05:33.291311172 +0000 +++ atkmm1.6-2.28.0/doc/reference/html/classAtk_1_1StateSet-members.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,134 +0,0 @@ - - - - - - -atkmm: Member List - - - - - - -
-
- - - - - - -
-
atkmm -  2.24.2 -
-
-
- - - - - -
-
-
-
Atk::StateSet Member List
-
-
- -

This is the complete list of members for Atk::StateSet, including all inherited members.

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
add_destroy_notify_callback(void *data, func_destroy_notify func) const sigc::trackable
add_state(Atk::StateType type)Atk::StateSet
add_states(const Glib::ArrayHandle< Atk::StateType >& types)Atk::StateSet
and_sets(const Glib::RefPtr< StateSet >& compare_set)Atk::StateSet
clear_states()Atk::StateSet
connect_property_changed(const Glib::ustring &property_name, const sigc::slot< void > &slot)Glib::ObjectBase
connect_property_changed_with_return(const Glib::ustring &property_name, const sigc::slot< void > &slot)Glib::ObjectBase
contains_state(Atk::StateType type)Atk::StateSet
contains_states(const Glib::ArrayHandle< Atk::StateType >& types) const Atk::StateSet
create()Atk::StateSetstatic
DestroyNotify typedefGlib::Object
freeze_notify()Glib::ObjectBase
func_destroy_notify typedefsigc::trackable
get_data(const QueryQuark &key)Glib::Object
get_property(const Glib::ustring &property_name, PropertyType &value) const Glib::ObjectBase
get_property_value(const Glib::ustring &property_name, Glib::ValueBase &value) const Glib::ObjectBase
get_type()Atk::StateSetstatic
gobj()Atk::StateSetinline
gobj() const Atk::StateSetinline
gobj_copy()Atk::StateSet
Glib::Object::gobj_copy() const Glib::ObjectBase
initialize(GObject *castitem)Glib::ObjectBaseprotected
initialize_move(GObject *castitem, Glib::ObjectBase *previous_wrapper)Glib::ObjectBaseprotected
is_empty() const Atk::StateSet
notify_callbacks()sigc::trackable
Object(const Object &)=deleteGlib::Object
Object(Object &&src) noexceptGlib::Object
Object()Glib::Objectprotected
Object(const Glib::ConstructParams &construct_params)Glib::Objectprotected
Object(GObject *castitem)Glib::Objectprotected
ObjectBase(const ObjectBase &)=deleteGlib::ObjectBase
ObjectBase()Glib::ObjectBaseprotected
ObjectBase(const char *custom_type_name)Glib::ObjectBaseprotected
ObjectBase(const std::type_info &custom_type_info)Glib::ObjectBaseprotected
ObjectBase(ObjectBase &&src) noexceptGlib::ObjectBaseprotected
operator=(StateSet&& src) noexceptAtk::StateSet
Glib::Object::operator=(const Object &)=deleteGlib::Object
Glib::Object::operator=(Object &&src) noexceptGlib::Object
Glib::ObjectBase::operator=(const ObjectBase &)=deleteGlib::ObjectBase
Glib::ObjectBase::operator=(ObjectBase &&src) noexceptGlib::ObjectBaseprotected
sigc::trackable::operator=(const trackable &src)sigc::trackable
sigc::trackable::operator=(trackable &&src)sigc::trackable
or_sets(const Glib::RefPtr< StateSet >& compare_set)Atk::StateSet
reference() const Glib::ObjectBasevirtual
remove_data(const QueryQuark &quark)Glib::Object
remove_destroy_notify_callback(void *data) const sigc::trackable
remove_state(Atk::StateType type)Atk::StateSet
set_data(const Quark &key, void *data)Glib::Object
set_data(const Quark &key, void *data, DestroyNotify notify)Glib::Object
set_property(const Glib::ustring &property_name, const PropertyType &value)Glib::ObjectBase
set_property_value(const Glib::ustring &property_name, const Glib::ValueBase &value)Glib::ObjectBase
StateSet(StateSet&& src) noexceptAtk::StateSet
StateSet()Atk::StateSetprotected
steal_data(const QueryQuark &quark)Glib::Object
thaw_notify()Glib::ObjectBase
trackable() noexceptsigc::trackable
trackable(const trackable &src) noexceptsigc::trackable
trackable(trackable &&src)sigc::trackable
unreference() const Glib::ObjectBasevirtual
wrap(AtkStateSet* object, bool take_copy=false)Atk::StateSetrelated
Glib::Object::wrap(GObject *object, bool take_copy=false)Glib::Object
xor_sets(const Glib::RefPtr< StateSet >& compare_set)Atk::StateSet
~Object() noexceptGlib::Objectprotectedvirtual
~ObjectBase() noexcept=0Glib::ObjectBaseprotectedpure virtual
~StateSet() noexceptAtk::StateSetvirtual
~trackable()sigc::trackable
- - - - diff -Nru atkmm1.6-2.24.2/doc/reference/html/classAtk_1_1StreamableContent.html atkmm1.6-2.28.0/doc/reference/html/classAtk_1_1StreamableContent.html --- atkmm1.6-2.24.2/doc/reference/html/classAtk_1_1StreamableContent.html 2015-11-29 20:05:33.303310945 +0000 +++ atkmm1.6-2.28.0/doc/reference/html/classAtk_1_1StreamableContent.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,614 +0,0 @@ - - - - - - -atkmm: Atk::StreamableContent Class Reference - - - - - - -
-
- - - - - - -
-
atkmm -  2.24.2 -
-
-
- - - - - -
- -
- -

The ATK interface which provides access to streamable content. - More...

- -

#include <atkmm/streamablecontent.h>

-
-Inheritance diagram for Atk::StreamableContent:
-
-
Inheritance graph
- - -
[legend]
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

-Public Member Functions

 StreamableContent (StreamableContent&& src) noexcept
 
StreamableContentoperator= (StreamableContent&& src) noexcept
 
virtual ~StreamableContent () noexcept
 
AtkStreamableContent* gobj ()
 Provides access to the underlying C GObject. More...
 
const AtkStreamableContent* gobj () const
 Provides access to the underlying C GObject. More...
 
int get_n_mime_types () const
 Gets the number of mime types supported by this object. More...
 
Glib::ustring get_mime_type (int i) const
 Gets the character string of the specified mime type. More...
 
Glib::RefPtr< Glib::IOChannelget_stream (const Glib::ustring& mime_type)
 Gets the content in the specified mime type. More...
 
- Public Member Functions inherited from Glib::Interface
 Interface ()
 
 Interface (Interface &&src) noexcept
 
Interfaceoperator= (Interface &&src) noexcept
 
 Interface (const Glib::Interface_Class &interface_class)
 
 Interface (GObject *castitem)
 
virtual ~Interface () noexcept
 
 Interface (const Interface &)=delete
 
Interfaceoperator= (const Interface &)=delete
 
GObject * gobj ()
 
const GObject * gobj () const
 
- Public Member Functions inherited from Glib::ObjectBase
 ObjectBase (const ObjectBase &)=delete
 
ObjectBaseoperator= (const ObjectBase &)=delete
 
void set_property_value (const Glib::ustring &property_name, const Glib::ValueBase &value)
 
void get_property_value (const Glib::ustring &property_name, Glib::ValueBase &value) const
 
void set_property (const Glib::ustring &property_name, const PropertyType &value)
 
void get_property (const Glib::ustring &property_name, PropertyType &value) const
 
void connect_property_changed (const Glib::ustring &property_name, const sigc::slot< void > &slot)
 
sigc::connection connect_property_changed_with_return (const Glib::ustring &property_name, const sigc::slot< void > &slot)
 
void freeze_notify ()
 
void thaw_notify ()
 
virtual void reference () const
 
virtual void unreference () const
 
GObject * gobj ()
 
const GObject * gobj () const
 
GObject * gobj_copy () const
 
- Public Member Functions inherited from sigc::trackable
 trackable () noexcept
 
 trackable (const trackable &src) noexcept
 
 trackable (trackable &&src)
 
 ~trackable ()
 
void add_destroy_notify_callback (void *data, func_destroy_notify func) const
 
void notify_callbacks ()
 
trackableoperator= (const trackable &src)
 
trackableoperator= (trackable &&src)
 
void remove_destroy_notify_callback (void *data) const
 
- - - - - - -

-Static Public Member Functions

static void add_interface (GType gtype_implementer)
 
static GType get_type ()
 Get the GType for this class, for use with the underlying GObject type system. More...
 
- - - - - - - - - - - - - - - - - - - - - - - - - - - -

-Protected Member Functions

 StreamableContent ()
 You should derive from this class to use it. More...
 
virtual int get_n_mime_types_vfunc () const
 
virtual const gchar* get_mime_type_vfunc (int i) const
 
virtual GIOChannel* get_stream_vfunc (const Glib::ustring& mime_type)
 
- Protected Member Functions inherited from Glib::ObjectBase
 ObjectBase ()
 
 ObjectBase (const char *custom_type_name)
 
 ObjectBase (const std::type_info &custom_type_info)
 
 ObjectBase (ObjectBase &&src) noexcept
 
ObjectBaseoperator= (ObjectBase &&src) noexcept
 
virtual ~ObjectBase () noexcept=0
 
void initialize (GObject *castitem)
 
void initialize_move (GObject *castitem, Glib::ObjectBase *previous_wrapper)
 
- - - - - -

-Related Functions

(Note that these are not member functions.)

-
Glib::RefPtr< Atk::StreamableContentwrap (AtkStreamableContent* object, bool take_copy=false)
 A Glib::wrap() method for this object. More...
 
- - - - -

-Additional Inherited Members

- Public Types inherited from sigc::trackable
typedef internal::func_destroy_notify func_destroy_notify
 
-

Detailed Description

-

The ATK interface which provides access to streamable content.

-

Constructor & Destructor Documentation

- -
-
- - - - - -
- - - - - - - -
Atk::StreamableContent::StreamableContent ()
-
-protected
-
- -

You should derive from this class to use it.

- -
-
- -
-
- - - - - -
- - - - - - - - -
Atk::StreamableContent::StreamableContent (StreamableContent&& src)
-
-noexcept
-
- -
-
- -
-
- - - - - -
- - - - - - - -
virtual Atk::StreamableContent::~StreamableContent ()
-
-virtualnoexcept
-
- -
-
-

Member Function Documentation

- -
-
- - - - - -
- - - - - - - - -
static void Atk::StreamableContent::add_interface (GType gtype_implementer)
-
-static
-
- -
-
- -
-
- - - - - - - - -
Glib::ustring Atk::StreamableContent::get_mime_type (int i) const
-
- -

Gets the character string of the specified mime type.

-

The first mime type is at position 0, the second at position 1, and so on.

-
Parameters
- - -
iA int representing the position of the mime type starting from 0.
-
-
-
Returns
A gchar* representing the specified mime type; the caller should not free the character string.
- -
-
- -
-
- - - - - -
- - - - - - - - -
virtual const gchar* Atk::StreamableContent::get_mime_type_vfunc (int i) const
-
-protectedvirtual
-
- -
-
- -
-
- - - - - - - -
int Atk::StreamableContent::get_n_mime_types () const
-
- -

Gets the number of mime types supported by this object.

-
Returns
A int which is the number of mime types supported by the object.
- -
-
- -
-
- - - - - -
- - - - - - - -
virtual int Atk::StreamableContent::get_n_mime_types_vfunc () const
-
-protectedvirtual
-
- -
-
- -
-
- - - - - - - - -
Glib::RefPtr<Glib::IOChannel> Atk::StreamableContent::get_stream (const Glib::ustringmime_type)
-
- -

Gets the content in the specified mime type.

-
Parameters
- - -
mime_typeA gchar* representing the mime type.
-
-
-
Returns
A IOChannel which contains the content in the specified mime type.
- -
-
- -
-
- - - - - -
- - - - - - - - -
virtual GIOChannel* Atk::StreamableContent::get_stream_vfunc (const Glib::ustringmime_type)
-
-protectedvirtual
-
- -
-
- -
-
- - - - - -
- - - - - - - -
static GType Atk::StreamableContent::get_type ()
-
-static
-
- -

Get the GType for this class, for use with the underlying GObject type system.

- -
-
- -
-
- - - - - -
- - - - - - - -
AtkStreamableContent* Atk::StreamableContent::gobj ()
-
-inline
-
- -

Provides access to the underlying C GObject.

- -
-
- -
-
- - - - - -
- - - - - - - -
const AtkStreamableContent* Atk::StreamableContent::gobj () const
-
-inline
-
- -

Provides access to the underlying C GObject.

- -
-
- -
-
- - - - - -
- - - - - - - - -
StreamableContent& Atk::StreamableContent::operator= (StreamableContent&& src)
-
-noexcept
-
- -
-
-

Friends And Related Function Documentation

- -
-
- - - - - -
- - - - - - - - - - - - - - - - - - -
Glib::RefPtr< Atk::StreamableContent > wrap (AtkStreamableContent * object,
bool take_copy = false 
)
-
-related
-
- -

A Glib::wrap() method for this object.

-
Parameters
- - - -
objectThe C instance.
take_copyFalse if the result should take ownership of the C instance. True if it should take a new copy or ref.
-
-
-
Returns
A C++ instance that wraps this C instance.
- -
-
-
- - - - Binary files /tmp/tmpOzhFOD/5A0TTRaIcC/atkmm1.6-2.24.2/doc/reference/html/classAtk_1_1StreamableContent__inherit__graph.png and /tmp/tmpOzhFOD/Bg2TspT7RQ/atkmm1.6-2.28.0/doc/reference/html/classAtk_1_1StreamableContent__inherit__graph.png differ diff -Nru atkmm1.6-2.24.2/doc/reference/html/classAtk_1_1StreamableContent-members.html atkmm1.6-2.28.0/doc/reference/html/classAtk_1_1StreamableContent-members.html --- atkmm1.6-2.24.2/doc/reference/html/classAtk_1_1StreamableContent-members.html 2015-11-29 20:05:33.307310868 +0000 +++ atkmm1.6-2.28.0/doc/reference/html/classAtk_1_1StreamableContent-members.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,122 +0,0 @@ - - - - - - -atkmm: Member List - - - - - - -
-
- - - - - - -
-
atkmm -  2.24.2 -
-
-
- - - - - -
-
-
-
Atk::StreamableContent Member List
-
-
- -

This is the complete list of members for Atk::StreamableContent, including all inherited members.

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
add_destroy_notify_callback(void *data, func_destroy_notify func) const sigc::trackable
add_interface(GType gtype_implementer)Atk::StreamableContentstatic
connect_property_changed(const Glib::ustring &property_name, const sigc::slot< void > &slot)Glib::ObjectBase
connect_property_changed_with_return(const Glib::ustring &property_name, const sigc::slot< void > &slot)Glib::ObjectBase
freeze_notify()Glib::ObjectBase
func_destroy_notify typedefsigc::trackable
get_mime_type(int i) const Atk::StreamableContent
get_mime_type_vfunc(int i) const Atk::StreamableContentprotectedvirtual
get_n_mime_types() const Atk::StreamableContent
get_n_mime_types_vfunc() const Atk::StreamableContentprotectedvirtual
get_property(const Glib::ustring &property_name, PropertyType &value) const Glib::ObjectBase
get_property_value(const Glib::ustring &property_name, Glib::ValueBase &value) const Glib::ObjectBase
get_stream(const Glib::ustring& mime_type)Atk::StreamableContent
get_stream_vfunc(const Glib::ustring& mime_type)Atk::StreamableContentprotectedvirtual
get_type()Atk::StreamableContentstatic
gobj()Atk::StreamableContentinline
gobj() const Atk::StreamableContentinline
gobj_copy() const Glib::ObjectBase
initialize(GObject *castitem)Glib::ObjectBaseprotected
initialize_move(GObject *castitem, Glib::ObjectBase *previous_wrapper)Glib::ObjectBaseprotected
Interface()Glib::Interface
Interface(Interface &&src) noexceptGlib::Interface
Interface(const Glib::Interface_Class &interface_class)Glib::Interface
Interface(GObject *castitem)Glib::Interface
Interface(const Interface &)=deleteGlib::Interface
notify_callbacks()sigc::trackable
ObjectBase(const ObjectBase &)=deleteGlib::ObjectBase
ObjectBase()Glib::ObjectBaseprotected
ObjectBase(const char *custom_type_name)Glib::ObjectBaseprotected
ObjectBase(const std::type_info &custom_type_info)Glib::ObjectBaseprotected
ObjectBase(ObjectBase &&src) noexceptGlib::ObjectBaseprotected
operator=(StreamableContent&& src) noexceptAtk::StreamableContent
Glib::Interface::operator=(Interface &&src) noexceptGlib::Interface
Glib::Interface::operator=(const Interface &)=deleteGlib::Interface
Glib::ObjectBase::operator=(const ObjectBase &)=deleteGlib::ObjectBase
Glib::ObjectBase::operator=(ObjectBase &&src) noexceptGlib::ObjectBaseprotected
sigc::trackable::operator=(const trackable &src)sigc::trackable
sigc::trackable::operator=(trackable &&src)sigc::trackable
reference() const Glib::ObjectBasevirtual
remove_destroy_notify_callback(void *data) const sigc::trackable
set_property(const Glib::ustring &property_name, const PropertyType &value)Glib::ObjectBase
set_property_value(const Glib::ustring &property_name, const Glib::ValueBase &value)Glib::ObjectBase
StreamableContent()Atk::StreamableContentprotected
StreamableContent(StreamableContent&& src) noexceptAtk::StreamableContent
thaw_notify()Glib::ObjectBase
trackable() noexceptsigc::trackable
trackable(const trackable &src) noexceptsigc::trackable
trackable(trackable &&src)sigc::trackable
unreference() const Glib::ObjectBasevirtual
wrap(AtkStreamableContent* object, bool take_copy=false)Atk::StreamableContentrelated
~Interface() noexceptGlib::Interfacevirtual
~ObjectBase() noexcept=0Glib::ObjectBaseprotectedpure virtual
~StreamableContent() noexceptAtk::StreamableContentvirtual
~trackable()sigc::trackable
- - - - diff -Nru atkmm1.6-2.24.2/doc/reference/html/classAtk_1_1Table.html atkmm1.6-2.28.0/doc/reference/html/classAtk_1_1Table.html --- atkmm1.6-2.24.2/doc/reference/html/classAtk_1_1Table.html 2015-11-29 20:05:33.323310564 +0000 +++ atkmm1.6-2.28.0/doc/reference/html/classAtk_1_1Table.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,2703 +0,0 @@ - - - - - - -atkmm: Atk::Table Class Reference - - - - - - -
-
- - - - - - -
-
atkmm -  2.24.2 -
-
-
- - - - - -
- -
- -

The ATK interface implemented for UI components which contain tabular or row/column information. - More...

- -

#include <atkmm/table.h>

-
-Inheritance diagram for Atk::Table:
-
-
Inheritance graph
- - -
[legend]
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

-Public Member Functions

 Table (Table&& src) noexcept
 
Tableoperator= (Table&& src) noexcept
 
virtual ~Table () noexcept
 
AtkTable* gobj ()
 Provides access to the underlying C GObject. More...
 
const AtkTable* gobj () const
 Provides access to the underlying C GObject. More...
 
Glib::RefPtr< Atk::Objectget_at (int row, int column)
 Get a reference to the table cell at row, column. More...
 
Glib::RefPtr< const Atk::Objectget_at (int row, int column) const
 Get a reference to the table cell at row, column. More...
 
int get_index_at (int row, int column) const
 Gets a int representing the index at the specified row and column. More...
 
int get_column_at_index (int index) const
 Gets a int representing the column at the specified index. More...
 
int get_row_at_index (int index) const
 Gets a int representing the row at the specified index. More...
 
int get_n_columns () const
 Gets the number of columns in the table. More...
 
int get_n_rows () const
 Gets the number of rows in the table. More...
 
int get_column_extent_at (int row, int column) const
 Gets the number of columns occupied by the accessible object at the specified row and column in the table. More...
 
int get_row_extent_at (int row, int column) const
 Gets the number of rows occupied by the accessible object at a specified row and column in the table. More...
 
Glib::RefPtr< Atk::Objectget_caption ()
 Gets the caption for the table. More...
 
Glib::RefPtr< const Atk::Objectget_caption () const
 Gets the caption for the table. More...
 
Glib::ustring get_column_description (int column) const
 Gets the description text of the specified column in the table. More...
 
Glib::RefPtr< Atk::Objectget_column_header (int column)
 Gets the column header of a specified column in an accessible table. More...
 
Glib::RefPtr< const Atk::Objectget_column_header (int column) const
 Gets the column header of a specified column in an accessible table. More...
 
Glib::ustring get_row_description (int row) const
 Gets the description text of the specified row in the table. More...
 
Glib::RefPtr< Atk::Objectget_row_header (int row)
 Gets the row header of a specified row in an accessible table. More...
 
Glib::RefPtr< const Atk::Objectget_row_header (int row) const
 Gets the row header of a specified row in an accessible table. More...
 
Glib::RefPtr< Atk::Objectget_summary ()
 Gets the summary description of the table. More...
 
Glib::RefPtr< const Atk::Objectget_summary () const
 Gets the summary description of the table. More...
 
void set_caption (const Glib::RefPtr< Atk::Object >& caption)
 Sets the caption for the table. More...
 
void set_column_description (int column, const Glib::ustring& description)
 Sets the description text for the specified column of the table. More...
 
void set_column_header (int column, const Glib::RefPtr< Atk::Object >& header)
 Sets the specified column header to header. More...
 
void set_row_description (int row, const Glib::ustring& description)
 Sets the description text for the specified row of table. More...
 
void set_row_header (int row, const Glib::RefPtr< Atk::Object >& header)
 Sets the specified row header to header. More...
 
void set_summary (const Glib::RefPtr< Atk::Object >& accessible)
 Sets the summary description of the table. More...
 
Glib::ArrayHandle< int > get_selected_columns () const
 
Glib::ArrayHandle< int > get_selected_rows () const
 
bool is_column_selected (int column) const
 Gets a boolean value indicating whether the specified column is selected. More...
 
bool is_row_selected (int row) const
 Gets a boolean value indicating whether the specified row is selected. More...
 
bool is_selected (int row, int column) const
 Gets a boolean value indicating whether the accessible object at the specified row and column is selected. More...
 
bool add_row_selection (int row)
 Adds the specified row to the selection. More...
 
bool remove_row_selection (int row)
 Removes the specified row from the selection. More...
 
bool add_column_selection (int column)
 Adds the specified column to the selection. More...
 
bool remove_column_selection (int column)
 Adds the specified column to the selection. More...
 
Glib::SignalProxy2< void, int, int > signal_row_inserted ()
 
Glib::SignalProxy2< void, int, int > signal_column_inserted ()
 
Glib::SignalProxy2< void, int, int > signal_row_deleted ()
 
Glib::SignalProxy2< void, int, int > signal_column_deleted ()
 
Glib::SignalProxy0< void > signal_row_reordered ()
 
Glib::SignalProxy0< void > signal_column_reordered ()
 
Glib::SignalProxy0< void > signal_model_changed ()
 
- Public Member Functions inherited from Glib::Interface
 Interface ()
 
 Interface (Interface &&src) noexcept
 
Interfaceoperator= (Interface &&src) noexcept
 
 Interface (const Glib::Interface_Class &interface_class)
 
 Interface (GObject *castitem)
 
virtual ~Interface () noexcept
 
 Interface (const Interface &)=delete
 
Interfaceoperator= (const Interface &)=delete
 
GObject * gobj ()
 
const GObject * gobj () const
 
- Public Member Functions inherited from Glib::ObjectBase
 ObjectBase (const ObjectBase &)=delete
 
ObjectBaseoperator= (const ObjectBase &)=delete
 
void set_property_value (const Glib::ustring &property_name, const Glib::ValueBase &value)
 
void get_property_value (const Glib::ustring &property_name, Glib::ValueBase &value) const
 
void set_property (const Glib::ustring &property_name, const PropertyType &value)
 
void get_property (const Glib::ustring &property_name, PropertyType &value) const
 
void connect_property_changed (const Glib::ustring &property_name, const sigc::slot< void > &slot)
 
sigc::connection connect_property_changed_with_return (const Glib::ustring &property_name, const sigc::slot< void > &slot)
 
void freeze_notify ()
 
void thaw_notify ()
 
virtual void reference () const
 
virtual void unreference () const
 
GObject * gobj ()
 
const GObject * gobj () const
 
GObject * gobj_copy () const
 
- Public Member Functions inherited from sigc::trackable
 trackable () noexcept
 
 trackable (const trackable &src) noexcept
 
 trackable (trackable &&src)
 
 ~trackable ()
 
void add_destroy_notify_callback (void *data, func_destroy_notify func) const
 
void notify_callbacks ()
 
trackableoperator= (const trackable &src)
 
trackableoperator= (trackable &&src)
 
void remove_destroy_notify_callback (void *data) const
 
- - - - - - -

-Static Public Member Functions

static void add_interface (GType gtype_implementer)
 
static GType get_type ()
 Get the GType for this class, for use with the underlying GObject type system. More...
 
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

-Protected Member Functions

 Table ()
 You should derive from this class to use it. More...
 
virtual Glib::RefPtr< Atk::Objectget_at_vfunc (int row, int column)
 
virtual int get_index_at_vfunc (int row, int column) const
 
virtual int get_column_at_index_vfunc (int index) const
 
virtual int get_row_at_index_vfunc (int index) const
 
virtual int get_n_columns_vfunc () const
 
virtual int get_n_rows_vfunc () const
 
virtual int get_column_extent_at_vfunc (int row, int column) const
 
virtual int get_row_extent_at_vfunc (int row, int column) const
 
virtual Glib::RefPtr< Atk::Objectget_caption_vfunc ()
 
virtual const char* get_column_description_vfunc (int column) const
 
virtual Glib::RefPtr< Atk::Objectget_column_header_vfunc (int column)
 
virtual const char* get_row_description_vfunc (int row) const
 
virtual Glib::RefPtr< Atk::Objectget_row_header_vfunc (int row)
 
virtual Glib::RefPtr< Atk::Objectget_summary_vfunc ()
 
virtual void set_caption_vfunc (const Glib::RefPtr< Atk::Object >& caption)
 
virtual void set_column_description_vfunc (int column, const char* description)
 
virtual void set_column_header_vfunc (int column, const Glib::RefPtr< Atk::Object >& header)
 
virtual void set_row_description_vfunc (int row, const char* description)
 
virtual void set_row_header_vfunc (int row, const Glib::RefPtr< Atk::Object >& header)
 
virtual void set_summary_vfunc (const Glib::RefPtr< Atk::Object >& accessible)
 
virtual bool is_column_selected_vfunc (int column) const
 
virtual bool is_row_selected_vfunc (int row) const
 
virtual bool is_selected_vfunc (int row, int column) const
 
virtual bool add_row_selection_vfunc (int row)
 
virtual bool remove_row_selection_vfunc (int row)
 
virtual bool add_column_selection_vfunc (int column)
 
virtual bool remove_column_selection_vfunc (int column)
 
virtual int get_selected_columns_vfunc (int** selected) const
 
virtual int get_selected_rows_vfunc (int** selected) const
 
virtual void on_row_inserted (int row, int num_inserted)
 This is a default handler for the signal signal_row_inserted(). More...
 
virtual void on_column_inserted (int column, int num_inserted)
 This is a default handler for the signal signal_column_inserted(). More...
 
virtual void on_row_deleted (int row, int num_deleted)
 This is a default handler for the signal signal_row_deleted(). More...
 
virtual void on_column_deleted (int column, int num_deleted)
 This is a default handler for the signal signal_column_deleted(). More...
 
virtual void on_row_reordered ()
 This is a default handler for the signal signal_row_reordered(). More...
 
virtual void on_column_reordered ()
 This is a default handler for the signal signal_column_reordered(). More...
 
virtual void on_model_changed ()
 This is a default handler for the signal signal_model_changed(). More...
 
- Protected Member Functions inherited from Glib::ObjectBase
 ObjectBase ()
 
 ObjectBase (const char *custom_type_name)
 
 ObjectBase (const std::type_info &custom_type_info)
 
 ObjectBase (ObjectBase &&src) noexcept
 
ObjectBaseoperator= (ObjectBase &&src) noexcept
 
virtual ~ObjectBase () noexcept=0
 
void initialize (GObject *castitem)
 
void initialize_move (GObject *castitem, Glib::ObjectBase *previous_wrapper)
 
- - - - - -

-Related Functions

(Note that these are not member functions.)

-
Glib::RefPtr< Atk::Tablewrap (AtkTable* object, bool take_copy=false)
 A Glib::wrap() method for this object. More...
 
- - - - -

-Additional Inherited Members

- Public Types inherited from sigc::trackable
typedef internal::func_destroy_notify func_destroy_notify
 
-

Detailed Description

-

The ATK interface implemented for UI components which contain tabular or row/column information.

-

This should be implemented by components which present elements ordered via rows and columns. It may also be used to present tree-structured information if the nodes of the trees can be said to contain multiple "columns". Individual elements of an Atk::Table are typically referred to as "cells", and these cells are exposed by Atk::Table as child Atk::Objects of the Atk::Table. Both row/column and child-index-based access to these children is provided.

-

Children of Atk::Table are frequently "lightweight" objects, that is, they may not have backing widgets in the host UI toolkit. They are therefore often transient.

-

Since tables are often very complex, Atk::Table includes provision for offering simplified summary information, as well as row and column headers and captions. Headers and captions are AtkObjects which may implement other interfaces (Atk::Text, Atk::Image, etc.) as appropriate. Atk::Table summaries may themselves be (simplified) Atk::Tables, etc.

-

Constructor & Destructor Documentation

- -
-
- - - - - -
- - - - - - - -
Atk::Table::Table ()
-
-protected
-
- -

You should derive from this class to use it.

- -
-
- -
-
- - - - - -
- - - - - - - - -
Atk::Table::Table (Table&& src)
-
-noexcept
-
- -
-
- -
-
- - - - - -
- - - - - - - -
virtual Atk::Table::~Table ()
-
-virtualnoexcept
-
- -
-
-

Member Function Documentation

- -
-
- - - - - - - - -
bool Atk::Table::add_column_selection (int column)
-
- -

Adds the specified column to the selection.

-
Parameters
- - -
columnA int representing a column in table.
-
-
-
Returns
A bool representing if the column was successfully added to the selection, or 0 if value does not implement this interface.
- -
-
- -
-
- - - - - -
- - - - - - - - -
virtual bool Atk::Table::add_column_selection_vfunc (int column)
-
-protectedvirtual
-
- -
-
- -
-
- - - - - -
- - - - - - - - -
static void Atk::Table::add_interface (GType gtype_implementer)
-
-static
-
- -
-
- -
-
- - - - - - - - -
bool Atk::Table::add_row_selection (int row)
-
- -

Adds the specified row to the selection.

-
Parameters
- - -
rowA int representing a row in table.
-
-
-
Returns
A bool representing if row was successfully added to selection, or 0 if value does not implement this interface.
- -
-
- -
-
- - - - - -
- - - - - - - - -
virtual bool Atk::Table::add_row_selection_vfunc (int row)
-
-protectedvirtual
-
- -
-
- -
-
- - - - - - - - - - - - - - - - - - -
Glib::RefPtr<Atk::Object> Atk::Table::get_at (int row,
int column 
)
-
- -

Get a reference to the table cell at row, column.

-

This cell should implement the interface Atk::TableCell

-
Parameters
- - - -
rowA int representing a row in table.
columnA int representing a column in table.
-
-
-
Returns
An Atk::Object representing the referred to accessible.
- -
-
- -
-
- - - - - - - - - - - - - - - - - - -
Glib::RefPtr<const Atk::Object> Atk::Table::get_at (int row,
int column 
) const
-
- -

Get a reference to the table cell at row, column.

-

This cell should implement the interface Atk::TableCell

-
Parameters
- - - -
rowA int representing a row in table.
columnA int representing a column in table.
-
-
-
Returns
An Atk::Object representing the referred to accessible.
- -
-
- -
-
- - - - - -
- - - - - - - - - - - - - - - - - - -
virtual Glib::RefPtr<Atk::Object> Atk::Table::get_at_vfunc (int row,
int column 
)
-
-protectedvirtual
-
- -
-
- -
-
- - - - - - - -
Glib::RefPtr<Atk::Object> Atk::Table::get_caption ()
-
- -

Gets the caption for the table.

-
Returns
A AtkObject* representing the table caption, or nullptr if value does not implement this interface.
- -
-
- -
-
- - - - - - - -
Glib::RefPtr<const Atk::Object> Atk::Table::get_caption () const
-
- -

Gets the caption for the table.

-
Returns
A AtkObject* representing the table caption, or nullptr if value does not implement this interface.
- -
-
- -
-
- - - - - -
- - - - - - - -
virtual Glib::RefPtr<Atk::Object> Atk::Table::get_caption_vfunc ()
-
-protectedvirtual
-
- -
-
- -
-
- - - - - - - - -
int Atk::Table::get_column_at_index (int index) const
-
- -

Gets a int representing the column at the specified index.

-

Deprecated:

Since atkmm 2.12:
-
Deprecated:
This should not be used in newly-written code.
-
Parameters
- - -
indexA int representing an index in table.
-
-
-
Returns
A int representing the column at the specified index, or -1 if the table does not implement this method.
- -
-
- -
-
- - - - - -
- - - - - - - - -
virtual int Atk::Table::get_column_at_index_vfunc (int index) const
-
-protectedvirtual
-
- -
-
- -
-
- - - - - - - - -
Glib::ustring Atk::Table::get_column_description (int column) const
-
- -

Gets the description text of the specified column in the table.

-
Parameters
- - -
columnA int representing a column in table.
-
-
-
Returns
A gchar* representing the column description, or nullptr if value does not implement this interface.
- -
-
- -
-
- - - - - -
- - - - - - - - -
virtual const char* Atk::Table::get_column_description_vfunc (int column) const
-
-protectedvirtual
-
- -
-
- -
-
- - - - - - - - - - - - - - - - - - -
int Atk::Table::get_column_extent_at (int row,
int column 
) const
-
- -

Gets the number of columns occupied by the accessible object at the specified row and column in the table.

-
Parameters
- - - -
rowA int representing a row in table.
columnA int representing a column in table.
-
-
-
Returns
A int representing the column extent at specified position, or 0 if value does not implement this interface.
- -
-
- -
-
- - - - - -
- - - - - - - - - - - - - - - - - - -
virtual int Atk::Table::get_column_extent_at_vfunc (int row,
int column 
) const
-
-protectedvirtual
-
- -
-
- -
-
- - - - - - - - -
Glib::RefPtr<Atk::Object> Atk::Table::get_column_header (int column)
-
- -

Gets the column header of a specified column in an accessible table.

-
Parameters
- - -
columnA int representing a column in the table.
-
-
-
Returns
A AtkObject* representing the specified column header, or nullptr if value does not implement this interface.
- -
-
- -
-
- - - - - - - - -
Glib::RefPtr<const Atk::Object> Atk::Table::get_column_header (int column) const
-
- -

Gets the column header of a specified column in an accessible table.

-
Parameters
- - -
columnA int representing a column in the table.
-
-
-
Returns
A AtkObject* representing the specified column header, or nullptr if value does not implement this interface.
- -
-
- -
-
- - - - - -
- - - - - - - - -
virtual Glib::RefPtr<Atk::Object> Atk::Table::get_column_header_vfunc (int column)
-
-protectedvirtual
-
- -
-
- -
-
- - - - - - - - - - - - - - - - - - -
int Atk::Table::get_index_at (int row,
int column 
) const
-
- -

Gets a int representing the index at the specified row and column.

-

Deprecated: Since 2.12. Use ref_at() in order to get the accessible that represents the cell at ( row, column)

-
Deprecated:
Use get_at() instead.
-
Parameters
- - - -
rowA int representing a row in table.
columnA int representing a column in table.
-
-
-
Returns
A int representing the index at specified position. The value -1 is returned if the object at row,column is not a child of table or table does not implement this interface.
- -
-
- -
-
- - - - - -
- - - - - - - - - - - - - - - - - - -
virtual int Atk::Table::get_index_at_vfunc (int row,
int column 
) const
-
-protectedvirtual
-
- -
-
- -
-
- - - - - - - -
int Atk::Table::get_n_columns () const
-
- -

Gets the number of columns in the table.

-
Returns
A int representing the number of columns, or 0 if value does not implement this interface.
- -
-
- -
-
- - - - - -
- - - - - - - -
virtual int Atk::Table::get_n_columns_vfunc () const
-
-protectedvirtual
-
- -
-
- -
-
- - - - - - - -
int Atk::Table::get_n_rows () const
-
- -

Gets the number of rows in the table.

-
Returns
A int representing the number of rows, or 0 if value does not implement this interface.
- -
-
- -
-
- - - - - -
- - - - - - - -
virtual int Atk::Table::get_n_rows_vfunc () const
-
-protectedvirtual
-
- -
-
- -
-
- - - - - - - - -
int Atk::Table::get_row_at_index (int index) const
-
- -

Gets a int representing the row at the specified index.

-

Deprecated: since 2.12.

-
Deprecated:
This should not be used in newly-written code.
-
Parameters
- - -
indexA int representing an index in table.
-
-
-
Returns
A int representing the row at the specified index, or -1 if the table does not implement this method.
- -
-
- -
-
- - - - - -
- - - - - - - - -
virtual int Atk::Table::get_row_at_index_vfunc (int index) const
-
-protectedvirtual
-
- -
-
- -
-
- - - - - - - - -
Glib::ustring Atk::Table::get_row_description (int row) const
-
- -

Gets the description text of the specified row in the table.

-
Parameters
- - -
rowA int representing a row in table.
-
-
-
Returns
A gchar* representing the row description, or nullptr if value does not implement this interface.
- -
-
- -
-
- - - - - -
- - - - - - - - -
virtual const char* Atk::Table::get_row_description_vfunc (int row) const
-
-protectedvirtual
-
- -
-
- -
-
- - - - - - - - - - - - - - - - - - -
int Atk::Table::get_row_extent_at (int row,
int column 
) const
-
- -

Gets the number of rows occupied by the accessible object at a specified row and column in the table.

-
Parameters
- - - -
rowA int representing a row in table.
columnA int representing a column in table.
-
-
-
Returns
A int representing the row extent at specified position, or 0 if value does not implement this interface.
- -
-
- -
-
- - - - - -
- - - - - - - - - - - - - - - - - - -
virtual int Atk::Table::get_row_extent_at_vfunc (int row,
int column 
) const
-
-protectedvirtual
-
- -
-
- -
-
- - - - - - - - -
Glib::RefPtr<Atk::Object> Atk::Table::get_row_header (int row)
-
- -

Gets the row header of a specified row in an accessible table.

-
Parameters
- - -
rowA int representing a row in the table.
-
-
-
Returns
A AtkObject* representing the specified row header, or nullptr if value does not implement this interface.
- -
-
- -
-
- - - - - - - - -
Glib::RefPtr<const Atk::Object> Atk::Table::get_row_header (int row) const
-
- -

Gets the row header of a specified row in an accessible table.

-
Parameters
- - -
rowA int representing a row in the table.
-
-
-
Returns
A AtkObject* representing the specified row header, or nullptr if value does not implement this interface.
- -
-
- -
-
- - - - - -
- - - - - - - - -
virtual Glib::RefPtr<Atk::Object> Atk::Table::get_row_header_vfunc (int row)
-
-protectedvirtual
-
- -
-
- -
-
- - - - - - - -
Glib::ArrayHandle<int> Atk::Table::get_selected_columns () const
-
- -
-
- -
-
- - - - - -
- - - - - - - - -
virtual int Atk::Table::get_selected_columns_vfunc (int ** selected) const
-
-protectedvirtual
-
- -
-
- -
-
- - - - - - - -
Glib::ArrayHandle<int> Atk::Table::get_selected_rows () const
-
- -
-
- -
-
- - - - - -
- - - - - - - - -
virtual int Atk::Table::get_selected_rows_vfunc (int ** selected) const
-
-protectedvirtual
-
- -
-
- -
-
- - - - - - - -
Glib::RefPtr<Atk::Object> Atk::Table::get_summary ()
-
- -

Gets the summary description of the table.

-
Returns
A AtkObject* representing a summary description of the table, or zero if value does not implement this interface.
- -
-
- -
-
- - - - - - - -
Glib::RefPtr<const Atk::Object> Atk::Table::get_summary () const
-
- -

Gets the summary description of the table.

-
Returns
A AtkObject* representing a summary description of the table, or zero if value does not implement this interface.
- -
-
- -
-
- - - - - -
- - - - - - - -
virtual Glib::RefPtr<Atk::Object> Atk::Table::get_summary_vfunc ()
-
-protectedvirtual
-
- -
-
- -
-
- - - - - -
- - - - - - - -
static GType Atk::Table::get_type ()
-
-static
-
- -

Get the GType for this class, for use with the underlying GObject type system.

- -
-
- -
-
- - - - - -
- - - - - - - -
AtkTable* Atk::Table::gobj ()
-
-inline
-
- -

Provides access to the underlying C GObject.

- -
-
- -
-
- - - - - -
- - - - - - - -
const AtkTable* Atk::Table::gobj () const
-
-inline
-
- -

Provides access to the underlying C GObject.

- -
-
- -
-
- - - - - - - - -
bool Atk::Table::is_column_selected (int column) const
-
- -

Gets a boolean value indicating whether the specified column is selected.

-
Parameters
- - -
columnA int representing a column in table.
-
-
-
Returns
A bool representing if the column is selected, or 0 if value does not implement this interface.
- -
-
- -
-
- - - - - -
- - - - - - - - -
virtual bool Atk::Table::is_column_selected_vfunc (int column) const
-
-protectedvirtual
-
- -
-
- -
-
- - - - - - - - -
bool Atk::Table::is_row_selected (int row) const
-
- -

Gets a boolean value indicating whether the specified row is selected.

-
Parameters
- - -
rowA int representing a row in table.
-
-
-
Returns
A bool representing if the row is selected, or 0 if value does not implement this interface.
- -
-
- -
-
- - - - - -
- - - - - - - - -
virtual bool Atk::Table::is_row_selected_vfunc (int row) const
-
-protectedvirtual
-
- -
-
- -
-
- - - - - - - - - - - - - - - - - - -
bool Atk::Table::is_selected (int row,
int column 
) const
-
- -

Gets a boolean value indicating whether the accessible object at the specified row and column is selected.

-
Parameters
- - - -
rowA int representing a row in table.
columnA int representing a column in table.
-
-
-
Returns
A bool representing if the cell is selected, or 0 if value does not implement this interface.
- -
-
- -
-
- - - - - -
- - - - - - - - - - - - - - - - - - -
virtual bool Atk::Table::is_selected_vfunc (int row,
int column 
) const
-
-protectedvirtual
-
- -
-
- -
-
- - - - - -
- - - - - - - - - - - - - - - - - - -
virtual void Atk::Table::on_column_deleted (int column,
int num_deleted 
)
-
-protectedvirtual
-
- -

This is a default handler for the signal signal_column_deleted().

- -
-
- -
-
- - - - - -
- - - - - - - - - - - - - - - - - - -
virtual void Atk::Table::on_column_inserted (int column,
int num_inserted 
)
-
-protectedvirtual
-
- -

This is a default handler for the signal signal_column_inserted().

- -
-
- -
-
- - - - - -
- - - - - - - -
virtual void Atk::Table::on_column_reordered ()
-
-protectedvirtual
-
- -

This is a default handler for the signal signal_column_reordered().

- -
-
- -
-
- - - - - -
- - - - - - - -
virtual void Atk::Table::on_model_changed ()
-
-protectedvirtual
-
- -

This is a default handler for the signal signal_model_changed().

- -
-
- -
-
- - - - - -
- - - - - - - - - - - - - - - - - - -
virtual void Atk::Table::on_row_deleted (int row,
int num_deleted 
)
-
-protectedvirtual
-
- -

This is a default handler for the signal signal_row_deleted().

- -
-
- -
-
- - - - - -
- - - - - - - - - - - - - - - - - - -
virtual void Atk::Table::on_row_inserted (int row,
int num_inserted 
)
-
-protectedvirtual
-
- -

This is a default handler for the signal signal_row_inserted().

- -
-
- -
-
- - - - - -
- - - - - - - -
virtual void Atk::Table::on_row_reordered ()
-
-protectedvirtual
-
- -

This is a default handler for the signal signal_row_reordered().

- -
-
- -
-
- - - - - -
- - - - - - - - -
Table& Atk::Table::operator= (Table&& src)
-
-noexcept
-
- -
-
- -
-
- - - - - - - - -
bool Atk::Table::remove_column_selection (int column)
-
- -

Adds the specified column to the selection.

-
Parameters
- - -
columnA int representing a column in table.
-
-
-
Returns
A bool representing if the column was successfully removed from the selection, or 0 if value does not implement this interface.
- -
-
- -
-
- - - - - -
- - - - - - - - -
virtual bool Atk::Table::remove_column_selection_vfunc (int column)
-
-protectedvirtual
-
- -
-
- -
-
- - - - - - - - -
bool Atk::Table::remove_row_selection (int row)
-
- -

Removes the specified row from the selection.

-
Parameters
- - -
rowA int representing a row in table.
-
-
-
Returns
A bool representing if the row was successfully removed from the selection, or 0 if value does not implement this interface.
- -
-
- -
-
- - - - - -
- - - - - - - - -
virtual bool Atk::Table::remove_row_selection_vfunc (int row)
-
-protectedvirtual
-
- -
-
- -
-
- - - - - - - - -
void Atk::Table::set_caption (const Glib::RefPtr< Atk::Object >& caption)
-
- -

Sets the caption for the table.

-
Parameters
- - -
captionA Atk::Object representing the caption to set for table.
-
-
- -
-
- -
-
- - - - - -
- - - - - - - - -
virtual void Atk::Table::set_caption_vfunc (const Glib::RefPtr< Atk::Object >& caption)
-
-protectedvirtual
-
- -
-
- -
-
- - - - - - - - - - - - - - - - - - -
void Atk::Table::set_column_description (int column,
const Glib::ustringdescription 
)
-
- -

Sets the description text for the specified column of the table.

-
Parameters
- - - -
columnA int representing a column in table.
descriptionA #gchar representing the description text to set for the specified column of the table.
-
-
- -
-
- -
-
- - - - - -
- - - - - - - - - - - - - - - - - - -
virtual void Atk::Table::set_column_description_vfunc (int column,
const char * description 
)
-
-protectedvirtual
-
- -
-
- -
-
- - - - - - - - - - - - - - - - - - -
void Atk::Table::set_column_header (int column,
const Glib::RefPtr< Atk::Object >& header 
)
-
- -

Sets the specified column header to header.

-
Parameters
- - - -
columnA int representing a column in table.
headerAn Atk::Table.
-
-
- -
-
- -
-
- - - - - -
- - - - - - - - - - - - - - - - - - -
virtual void Atk::Table::set_column_header_vfunc (int column,
const Glib::RefPtr< Atk::Object >& header 
)
-
-protectedvirtual
-
- -
-
- -
-
- - - - - - - - - - - - - - - - - - -
void Atk::Table::set_row_description (int row,
const Glib::ustringdescription 
)
-
- -

Sets the description text for the specified row of table.

-
Parameters
- - - -
rowA int representing a row in table.
descriptionA #gchar representing the description text to set for the specified row of table.
-
-
- -
-
- -
-
- - - - - -
- - - - - - - - - - - - - - - - - - -
virtual void Atk::Table::set_row_description_vfunc (int row,
const char * description 
)
-
-protectedvirtual
-
- -
-
- -
-
- - - - - - - - - - - - - - - - - - -
void Atk::Table::set_row_header (int row,
const Glib::RefPtr< Atk::Object >& header 
)
-
- -

Sets the specified row header to header.

-
Parameters
- - - -
rowA int representing a row in table.
headerAn Atk::Table.
-
-
- -
-
- -
-
- - - - - -
- - - - - - - - - - - - - - - - - - -
virtual void Atk::Table::set_row_header_vfunc (int row,
const Glib::RefPtr< Atk::Object >& header 
)
-
-protectedvirtual
-
- -
-
- -
-
- - - - - - - - -
void Atk::Table::set_summary (const Glib::RefPtr< Atk::Object >& accessible)
-
- -

Sets the summary description of the table.

-
Parameters
- - -
accessibleAn Atk::Object representing the summary description to set for table.
-
-
- -
-
- -
-
- - - - - -
- - - - - - - - -
virtual void Atk::Table::set_summary_vfunc (const Glib::RefPtr< Atk::Object >& accessible)
-
-protectedvirtual
-
- -
-
- -
-
- - - - - - - -
Glib::SignalProxy2< void,int,int > Atk::Table::signal_column_deleted ()
-
-
Slot Prototype:
void on_my_column_deleted(int column, int num_deleted)
-

The "column-deleted" signal is emitted by an object which implements the AtkTable interface when a column is deleted.

-
Parameters
- - - -
columnThe index of the first column deleted.
num_deletedThe number of columns deleted.
-
-
- -
-
- -
-
- - - - - - - -
Glib::SignalProxy2< void,int,int > Atk::Table::signal_column_inserted ()
-
-
Slot Prototype:
void on_my_column_inserted(int column, int num_inserted)
-

The "column-inserted" signal is emitted by an object which implements the AtkTable interface when a column is inserted.

-
Parameters
- - - -
columnThe index of the column inserted.
num_insertedThe number of colums inserted.
-
-
- -
-
- -
-
- - - - - - - -
Glib::SignalProxy0< void > Atk::Table::signal_column_reordered ()
-
-
Slot Prototype:
void on_my_column_reordered()
-

The "column-reordered" signal is emitted by an object which implements the AtkTable interface when the columns are reordered.

- -
-
- -
-
- - - - - - - -
Glib::SignalProxy0< void > Atk::Table::signal_model_changed ()
-
-
Slot Prototype:
void on_my_model_changed()
-

The "model-changed" signal is emitted by an object which implements the AtkTable interface when the model displayed by the table changes.

- -
-
- -
-
- - - - - - - -
Glib::SignalProxy2< void,int,int > Atk::Table::signal_row_deleted ()
-
-
Slot Prototype:
void on_my_row_deleted(int row, int num_deleted)
-

The "row-deleted" signal is emitted by an object which implements the AtkTable interface when a row is deleted.

-
Parameters
- - - -
rowThe index of the first row deleted.
num_deletedThe number of rows deleted.
-
-
- -
-
- -
-
- - - - - - - -
Glib::SignalProxy2< void,int,int > Atk::Table::signal_row_inserted ()
-
-
Slot Prototype:
void on_my_row_inserted(int row, int num_inserted)
-

The "row-inserted" signal is emitted by an object which implements the AtkTable interface when a row is inserted.

-
Parameters
- - - -
rowThe index of the first row inserted.
num_insertedThe number of rows inserted.
-
-
- -
-
- -
-
- - - - - - - -
Glib::SignalProxy0< void > Atk::Table::signal_row_reordered ()
-
-
Slot Prototype:
void on_my_row_reordered()
-

The "row-reordered" signal is emitted by an object which implements the AtkTable interface when the rows are reordered.

- -
-
-

Friends And Related Function Documentation

- -
-
- - - - - -
- - - - - - - - - - - - - - - - - - -
Glib::RefPtr< Atk::Table > wrap (AtkTable * object,
bool take_copy = false 
)
-
-related
-
- -

A Glib::wrap() method for this object.

-
Parameters
- - - -
objectThe C instance.
take_copyFalse if the result should take ownership of the C instance. True if it should take a new copy or ref.
-
-
-
Returns
A C++ instance that wraps this C instance.
- -
-
-
- - - - Binary files /tmp/tmpOzhFOD/5A0TTRaIcC/atkmm1.6-2.24.2/doc/reference/html/classAtk_1_1Table__inherit__graph.png and /tmp/tmpOzhFOD/Bg2TspT7RQ/atkmm1.6-2.28.0/doc/reference/html/classAtk_1_1Table__inherit__graph.png differ diff -Nru atkmm1.6-2.24.2/doc/reference/html/classAtk_1_1Table-members.html atkmm1.6-2.28.0/doc/reference/html/classAtk_1_1Table-members.html --- atkmm1.6-2.24.2/doc/reference/html/classAtk_1_1Table-members.html 2015-11-29 20:05:33.311310793 +0000 +++ atkmm1.6-2.28.0/doc/reference/html/classAtk_1_1Table-members.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,193 +0,0 @@ - - - - - - -atkmm: Member List - - - - - - -
-
- - - - - - -
-
atkmm -  2.24.2 -
-
-
- - - - - -
-
-
-
Atk::Table Member List
-
-
- -

This is the complete list of members for Atk::Table, including all inherited members.

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
add_column_selection(int column)Atk::Table
add_column_selection_vfunc(int column)Atk::Tableprotectedvirtual
add_destroy_notify_callback(void *data, func_destroy_notify func) const sigc::trackable
add_interface(GType gtype_implementer)Atk::Tablestatic
add_row_selection(int row)Atk::Table
add_row_selection_vfunc(int row)Atk::Tableprotectedvirtual
connect_property_changed(const Glib::ustring &property_name, const sigc::slot< void > &slot)Glib::ObjectBase
connect_property_changed_with_return(const Glib::ustring &property_name, const sigc::slot< void > &slot)Glib::ObjectBase
freeze_notify()Glib::ObjectBase
func_destroy_notify typedefsigc::trackable
get_at(int row, int column)Atk::Table
get_at(int row, int column) const Atk::Table
get_at_vfunc(int row, int column)Atk::Tableprotectedvirtual
get_caption()Atk::Table
get_caption() const Atk::Table
get_caption_vfunc()Atk::Tableprotectedvirtual
get_column_at_index(int index) const Atk::Table
get_column_at_index_vfunc(int index) const Atk::Tableprotectedvirtual
get_column_description(int column) const Atk::Table
get_column_description_vfunc(int column) const Atk::Tableprotectedvirtual
get_column_extent_at(int row, int column) const Atk::Table
get_column_extent_at_vfunc(int row, int column) const Atk::Tableprotectedvirtual
get_column_header(int column)Atk::Table
get_column_header(int column) const Atk::Table
get_column_header_vfunc(int column)Atk::Tableprotectedvirtual
get_index_at(int row, int column) const Atk::Table
get_index_at_vfunc(int row, int column) const Atk::Tableprotectedvirtual
get_n_columns() const Atk::Table
get_n_columns_vfunc() const Atk::Tableprotectedvirtual
get_n_rows() const Atk::Table
get_n_rows_vfunc() const Atk::Tableprotectedvirtual
get_property(const Glib::ustring &property_name, PropertyType &value) const Glib::ObjectBase
get_property_value(const Glib::ustring &property_name, Glib::ValueBase &value) const Glib::ObjectBase
get_row_at_index(int index) const Atk::Table
get_row_at_index_vfunc(int index) const Atk::Tableprotectedvirtual
get_row_description(int row) const Atk::Table
get_row_description_vfunc(int row) const Atk::Tableprotectedvirtual
get_row_extent_at(int row, int column) const Atk::Table
get_row_extent_at_vfunc(int row, int column) const Atk::Tableprotectedvirtual
get_row_header(int row)Atk::Table
get_row_header(int row) const Atk::Table
get_row_header_vfunc(int row)Atk::Tableprotectedvirtual
get_selected_columns() const Atk::Table
get_selected_columns_vfunc(int** selected) const Atk::Tableprotectedvirtual
get_selected_rows() const Atk::Table
get_selected_rows_vfunc(int** selected) const Atk::Tableprotectedvirtual
get_summary()Atk::Table
get_summary() const Atk::Table
get_summary_vfunc()Atk::Tableprotectedvirtual
get_type()Atk::Tablestatic
gobj()Atk::Tableinline
gobj() const Atk::Tableinline
gobj_copy() const Glib::ObjectBase
initialize(GObject *castitem)Glib::ObjectBaseprotected
initialize_move(GObject *castitem, Glib::ObjectBase *previous_wrapper)Glib::ObjectBaseprotected
Interface()Glib::Interface
Interface(Interface &&src) noexceptGlib::Interface
Interface(const Glib::Interface_Class &interface_class)Glib::Interface
Interface(GObject *castitem)Glib::Interface
Interface(const Interface &)=deleteGlib::Interface
is_column_selected(int column) const Atk::Table
is_column_selected_vfunc(int column) const Atk::Tableprotectedvirtual
is_row_selected(int row) const Atk::Table
is_row_selected_vfunc(int row) const Atk::Tableprotectedvirtual
is_selected(int row, int column) const Atk::Table
is_selected_vfunc(int row, int column) const Atk::Tableprotectedvirtual
notify_callbacks()sigc::trackable
ObjectBase(const ObjectBase &)=deleteGlib::ObjectBase
ObjectBase()Glib::ObjectBaseprotected
ObjectBase(const char *custom_type_name)Glib::ObjectBaseprotected
ObjectBase(const std::type_info &custom_type_info)Glib::ObjectBaseprotected
ObjectBase(ObjectBase &&src) noexceptGlib::ObjectBaseprotected
on_column_deleted(int column, int num_deleted)Atk::Tableprotectedvirtual
on_column_inserted(int column, int num_inserted)Atk::Tableprotectedvirtual
on_column_reordered()Atk::Tableprotectedvirtual
on_model_changed()Atk::Tableprotectedvirtual
on_row_deleted(int row, int num_deleted)Atk::Tableprotectedvirtual
on_row_inserted(int row, int num_inserted)Atk::Tableprotectedvirtual
on_row_reordered()Atk::Tableprotectedvirtual
operator=(Table&& src) noexceptAtk::Table
Glib::Interface::operator=(Interface &&src) noexceptGlib::Interface
Glib::Interface::operator=(const Interface &)=deleteGlib::Interface
Glib::ObjectBase::operator=(const ObjectBase &)=deleteGlib::ObjectBase
Glib::ObjectBase::operator=(ObjectBase &&src) noexceptGlib::ObjectBaseprotected
sigc::trackable::operator=(const trackable &src)sigc::trackable
sigc::trackable::operator=(trackable &&src)sigc::trackable
reference() const Glib::ObjectBasevirtual
remove_column_selection(int column)Atk::Table
remove_column_selection_vfunc(int column)Atk::Tableprotectedvirtual
remove_destroy_notify_callback(void *data) const sigc::trackable
remove_row_selection(int row)Atk::Table
remove_row_selection_vfunc(int row)Atk::Tableprotectedvirtual
set_caption(const Glib::RefPtr< Atk::Object >& caption)Atk::Table
set_caption_vfunc(const Glib::RefPtr< Atk::Object >& caption)Atk::Tableprotectedvirtual
set_column_description(int column, const Glib::ustring& description)Atk::Table
set_column_description_vfunc(int column, const char* description)Atk::Tableprotectedvirtual
set_column_header(int column, const Glib::RefPtr< Atk::Object >& header)Atk::Table
set_column_header_vfunc(int column, const Glib::RefPtr< Atk::Object >& header)Atk::Tableprotectedvirtual
set_property(const Glib::ustring &property_name, const PropertyType &value)Glib::ObjectBase
set_property_value(const Glib::ustring &property_name, const Glib::ValueBase &value)Glib::ObjectBase
set_row_description(int row, const Glib::ustring& description)Atk::Table
set_row_description_vfunc(int row, const char* description)Atk::Tableprotectedvirtual
set_row_header(int row, const Glib::RefPtr< Atk::Object >& header)Atk::Table
set_row_header_vfunc(int row, const Glib::RefPtr< Atk::Object >& header)Atk::Tableprotectedvirtual
set_summary(const Glib::RefPtr< Atk::Object >& accessible)Atk::Table
set_summary_vfunc(const Glib::RefPtr< Atk::Object >& accessible)Atk::Tableprotectedvirtual
signal_column_deleted()Atk::Table
signal_column_inserted()Atk::Table
signal_column_reordered()Atk::Table
signal_model_changed()Atk::Table
signal_row_deleted()Atk::Table
signal_row_inserted()Atk::Table
signal_row_reordered()Atk::Table
Table()Atk::Tableprotected
Table(Table&& src) noexceptAtk::Table
thaw_notify()Glib::ObjectBase
trackable() noexceptsigc::trackable
trackable(const trackable &src) noexceptsigc::trackable
trackable(trackable &&src)sigc::trackable
unreference() const Glib::ObjectBasevirtual
wrap(AtkTable* object, bool take_copy=false)Atk::Tablerelated
~Interface() noexceptGlib::Interfacevirtual
~ObjectBase() noexcept=0Glib::ObjectBaseprotectedpure virtual
~Table() noexceptAtk::Tablevirtual
~trackable()sigc::trackable
- - - - diff -Nru atkmm1.6-2.24.2/doc/reference/html/classAtk_1_1TextAttribute.html atkmm1.6-2.28.0/doc/reference/html/classAtk_1_1TextAttribute.html --- atkmm1.6-2.24.2/doc/reference/html/classAtk_1_1TextAttribute.html 2015-11-29 20:05:33.307310868 +0000 +++ atkmm1.6-2.28.0/doc/reference/html/classAtk_1_1TextAttribute.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,270 +0,0 @@ - - - - - - -atkmm: Atk::TextAttribute Class Reference - - - - - - -
-
- - - - - - -
-
atkmm -  2.24.2 -
-
-
- - - - - -
-
- -
-
Atk::TextAttribute Class Reference
-
-
- -

#include <atkmm/text.h>

- - - - - - - - - - -

-Public Member Functions

 TextAttribute ()
 
 TextAttribute (BuiltinTextAttribute attribute)
 
 TextAttribute (int attribute)
 
 operator int () const
 
- - - - - - - -

-Static Public Member Functions

static TextAttribute for_name (const Glib::ustring& name)
 
static Glib::ustring get_name (TextAttribute attribute)
 
static Glib::ustring get_value (TextAttribute attribute, int index)
 
-

Constructor & Destructor Documentation

- -
-
- - - - - -
- - - - - - - -
Atk::TextAttribute::TextAttribute ()
-
-inline
-
- -
-
- -
-
- - - - - -
- - - - - - - - -
Atk::TextAttribute::TextAttribute (BuiltinTextAttribute attribute)
-
-inline
-
- -
-
- -
-
- - - - - -
- - - - - - - - -
Atk::TextAttribute::TextAttribute (int attribute)
-
-inlineexplicit
-
- -
-
-

Member Function Documentation

- -
-
- - - - - -
- - - - - - - - -
static TextAttribute Atk::TextAttribute::for_name (const Glib::ustringname)
-
-static
-
- -
-
- -
-
- - - - - -
- - - - - - - - -
static Glib::ustring Atk::TextAttribute::get_name (TextAttribute attribute)
-
-static
-
- -
-
- -
-
- - - - - -
- - - - - - - - - - - - - - - - - - -
static Glib::ustring Atk::TextAttribute::get_value (TextAttribute attribute,
int index 
)
-
-static
-
- -
-
- -
-
- - - - - -
- - - - - - - -
Atk::TextAttribute::operator int () const
-
-inline
-
- -
-
-
- - - - diff -Nru atkmm1.6-2.24.2/doc/reference/html/classAtk_1_1TextAttribute-members.html atkmm1.6-2.28.0/doc/reference/html/classAtk_1_1TextAttribute-members.html --- atkmm1.6-2.24.2/doc/reference/html/classAtk_1_1TextAttribute-members.html 2015-11-29 20:05:33.347310109 +0000 +++ atkmm1.6-2.28.0/doc/reference/html/classAtk_1_1TextAttribute-members.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ - - - - - - -atkmm: Member List - - - - - - -
-
- - - - - - -
-
atkmm -  2.24.2 -
-
-
- - - - - -
-
-
-
Atk::TextAttribute Member List
-
-
- -

This is the complete list of members for Atk::TextAttribute, including all inherited members.

- - - - - - - - -
for_name(const Glib::ustring& name)Atk::TextAttributestatic
get_name(TextAttribute attribute)Atk::TextAttributestatic
get_value(TextAttribute attribute, int index)Atk::TextAttributestatic
operator int() const Atk::TextAttributeinline
TextAttribute()Atk::TextAttributeinline
TextAttribute(BuiltinTextAttribute attribute)Atk::TextAttributeinline
TextAttribute(int attribute)Atk::TextAttributeinlineexplicit
- - - - diff -Nru atkmm1.6-2.24.2/doc/reference/html/classAtk_1_1Text.html atkmm1.6-2.28.0/doc/reference/html/classAtk_1_1Text.html --- atkmm1.6-2.24.2/doc/reference/html/classAtk_1_1Text.html 2015-11-29 20:05:33.319310640 +0000 +++ atkmm1.6-2.28.0/doc/reference/html/classAtk_1_1Text.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,2153 +0,0 @@ - - - - - - -atkmm: Atk::Text Class Reference - - - - - - -
-
- - - - - - -
-
atkmm -  2.24.2 -
-
-
- - - - - -
- -
- -

The ATK interface implemented by components with text content. - More...

- -

#include <atkmm/text.h>

-
-Inheritance diagram for Atk::Text:
-
-
Inheritance graph
- - -
[legend]
- - - - - - - -

-Public Types

typedef AtkTextRectangle Rectangle
 
- Public Types inherited from sigc::trackable
typedef internal::func_destroy_notify func_destroy_notify
 
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

-Public Member Functions

 Text (Text&& src) noexcept
 
Textoperator= (Text&& src) noexcept
 
virtual ~Text () noexcept
 
AtkText* gobj ()
 Provides access to the underlying C GObject. More...
 
const AtkText* gobj () const
 Provides access to the underlying C GObject. More...
 
Glib::ustring get_text (int start_offset, int end_offset) const
 Gets the specified text. More...
 
gunichar get_character_at_offset (int offset) const
 Gets the specified text. More...
 
Glib::ustring get_text_after_offset (int offset, TextBoundary boundary_type, int& start_offset, int& end_offset) const
 Gets the specified text. More...
 
Glib::ustring get_text_at_offset (int offset, TextBoundary boundary_type, int& start_offset, int& end_offset) const
 Gets the specified text. More...
 
Glib::ustring get_text_before_offset (int offset, TextBoundary boundary_type, int& start_offset, int& end_offset) const
 Gets the specified text. More...
 
Glib::ustring get_string_at_offset (int offset, TextGranularity granularity, int& start_offset, int& end_offset)
 Gets a portion of the text exposed through an Atk::Text according to a given offset and a specific granularity, along with the start and end offsets defining the boundaries of such a portion of text. More...
 
int get_caret_offset () const
 Gets the offset position of the caret (cursor). More...
 
void get_character_extents (int offset, int& x, int& y, int& width, int& height, CoordType coords) const
 Get the bounding box containing the glyph representing the character at a particular text offset. More...
 
AttributeSet get_run_attributes (int offset, int& start_offset, int& end_offset) const
 Creates an Atk::AttributeSet which consists of the attributes explicitly set at the position offset in the text. More...
 
AttributeSet get_default_attributes () const
 Creates an Atk::AttributeSet which consists of the default values of attributes for the text. More...
 
int get_character_count () const
 Gets the character count. More...
 
int get_offset_at_point (int x, int y, CoordType coords) const
 Gets the offset of the character located at coordinates x and y. More...
 
int get_n_selections () const
 Gets the number of selected regions. More...
 
Glib::ustring get_selection (int selection_num, int& start_offset, int& end_offset) const
 Gets the text from the specified selection. More...
 
bool add_selection (int start_offset, int end_offset)
 Adds a selection bounded by the specified offsets. More...
 
bool remove_selection (int selection_num)
 Removes the specified selection. More...
 
bool set_selection (int selection_num, int start_offset, int end_offset)
 Changes the start and end offset of the specified selection. More...
 
bool set_caret_offset (int offset)
 Sets the caret (cursor) position to the specified offset. More...
 
void get_range_extents (int start_offset, int end_offset, CoordType coord_type, Rectangle& rect)
 Get the bounding box for text within the specified range. More...
 
AtkTextRange** get_bounded_ranges (const Rectangle& rect, CoordType coord_type, TextClipType x_clip_type, TextClipType y_clip_type)
 Get the ranges of text in the specified bounding box. More...
 
Glib::SignalProxy2< void, int, int > signal_text_changed ()
 
Glib::SignalProxy1< void, int > signal_text_caret_moved ()
 
Glib::SignalProxy0< void > signal_text_selection_changed ()
 
Glib::SignalProxy0< void > signal_text_attributes_changed ()
 
- Public Member Functions inherited from Glib::Interface
 Interface ()
 
 Interface (Interface &&src) noexcept
 
Interfaceoperator= (Interface &&src) noexcept
 
 Interface (const Glib::Interface_Class &interface_class)
 
 Interface (GObject *castitem)
 
virtual ~Interface () noexcept
 
 Interface (const Interface &)=delete
 
Interfaceoperator= (const Interface &)=delete
 
GObject * gobj ()
 
const GObject * gobj () const
 
- Public Member Functions inherited from Glib::ObjectBase
 ObjectBase (const ObjectBase &)=delete
 
ObjectBaseoperator= (const ObjectBase &)=delete
 
void set_property_value (const Glib::ustring &property_name, const Glib::ValueBase &value)
 
void get_property_value (const Glib::ustring &property_name, Glib::ValueBase &value) const
 
void set_property (const Glib::ustring &property_name, const PropertyType &value)
 
void get_property (const Glib::ustring &property_name, PropertyType &value) const
 
void connect_property_changed (const Glib::ustring &property_name, const sigc::slot< void > &slot)
 
sigc::connection connect_property_changed_with_return (const Glib::ustring &property_name, const sigc::slot< void > &slot)
 
void freeze_notify ()
 
void thaw_notify ()
 
virtual void reference () const
 
virtual void unreference () const
 
GObject * gobj ()
 
const GObject * gobj () const
 
GObject * gobj_copy () const
 
- Public Member Functions inherited from sigc::trackable
 trackable () noexcept
 
 trackable (const trackable &src) noexcept
 
 trackable (trackable &&src)
 
 ~trackable ()
 
void add_destroy_notify_callback (void *data, func_destroy_notify func) const
 
void notify_callbacks ()
 
trackableoperator= (const trackable &src)
 
trackableoperator= (trackable &&src)
 
void remove_destroy_notify_callback (void *data) const
 
- - - - - - -

-Static Public Member Functions

static void add_interface (GType gtype_implementer)
 
static GType get_type ()
 Get the GType for this class, for use with the underlying GObject type system. More...
 
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

-Protected Member Functions

 Text ()
 You should derive from this class to use it. More...
 
virtual Glib::ustring get_text_vfunc (int start_offset, int end_offset) const
 
virtual gunichar get_character_at_offset_vfunc (int offset) const
 
virtual Glib::ustring get_text_after_offset_vfunc (int offset, TextBoundary boundary_type, int& start_offset, int& end_offset) const
 
virtual Glib::ustring get_text_at_offset_vfunc (int offset, TextBoundary boundary_type, int& start_offset, int& end_offset) const
 
virtual Glib::ustring get_text_before_offset_vfunc (int offset, TextBoundary boundary_type, int& start_offset, int& end_offset) const
 
virtual int get_caret_offset_vfunc () const
 
virtual void get_character_extents_vfunc (int offset, int& x, int& y, int& width, int& height, CoordType coords) const
 
virtual AtkAttributeSet* get_run_attributes_vfunc (int offset, int& start_offset, int& end_offset) const
 
virtual AtkAttributeSet* get_default_attributes_vfunc () const
 
virtual int get_character_count_vfunc () const
 
virtual int get_offset_at_point_vfunc (int x, int y, CoordType coords) const
 
virtual int get_n_selections_vfunc () const
 
virtual Glib::ustring get_selection_vfunc (int selection_num, int& start_offset, int& end_offset) const
 
virtual bool add_selection_vfunc (int start_offset, int end_offset)
 
virtual bool remove_selection_vfunc (int selection_num)
 
virtual bool set_selection_vfunc (int selection_num, int start_offset, int end_offset)
 
virtual bool set_caret_offset_vfunc (int offset)
 
virtual void on_text_changed (int position, int length)
 This is a default handler for the signal signal_text_changed(). More...
 
virtual void on_text_caret_moved (int location)
 This is a default handler for the signal signal_text_caret_moved(). More...
 
virtual void on_text_selection_changed ()
 This is a default handler for the signal signal_text_selection_changed(). More...
 
virtual void on_text_attributes_changed ()
 This is a default handler for the signal signal_text_attributes_changed(). More...
 
- Protected Member Functions inherited from Glib::ObjectBase
 ObjectBase ()
 
 ObjectBase (const char *custom_type_name)
 
 ObjectBase (const std::type_info &custom_type_info)
 
 ObjectBase (ObjectBase &&src) noexcept
 
ObjectBaseoperator= (ObjectBase &&src) noexcept
 
virtual ~ObjectBase () noexcept=0
 
void initialize (GObject *castitem)
 
void initialize_move (GObject *castitem, Glib::ObjectBase *previous_wrapper)
 
- - - - - -

-Related Functions

(Note that these are not member functions.)

-
Glib::RefPtr< Atk::Textwrap (AtkText* object, bool take_copy=false)
 A Glib::wrap() method for this object. More...
 
-

Detailed Description

-

The ATK interface implemented by components with text content.

-

This should be implemented by Atk::Objects on behalf of widgets that have text content which is either attributed or otherwise non-trivial. Atk::Objects whose text content is simple, unattributed, and very brief may expose that content via Atk::Object::get_name() instead; however if the text is editable, multi-line, typically longer than three or four words, attributed, selectable, or if the object already uses the 'name' ATK property for other information, this Text interface should be used to expose the text content. In the case of editable text content, Atk::EditableText (a subtype of the Atk::Text interface) should be implemented instead.

-

Atk::Text provides not only traversal facilities and change notification for text content, but also caret tracking and glyph bounding box calculations. Note that the text strings are exposed as UTF-8, and are therefore potentially multi-byte, and caret-to-byte offset mapping makes no assumptions about the character length; also bounding box glyph-to-offset mapping may be complex for languages which use ligatures.

-

Member Typedef Documentation

- -
-
- - - - -
typedef AtkTextRectangle Atk::Text::Rectangle
-
- -
-
-

Constructor & Destructor Documentation

- -
-
- - - - - -
- - - - - - - -
Atk::Text::Text ()
-
-protected
-
- -

You should derive from this class to use it.

- -
-
- -
-
- - - - - -
- - - - - - - - -
Atk::Text::Text (Text&& src)
-
-noexcept
-
- -
-
- -
-
- - - - - -
- - - - - - - -
virtual Atk::Text::~Text ()
-
-virtualnoexcept
-
- -
-
-

Member Function Documentation

- -
-
- - - - - -
- - - - - - - - -
static void Atk::Text::add_interface (GType gtype_implementer)
-
-static
-
- -
-
- -
-
- - - - - - - - - - - - - - - - - - -
bool Atk::Text::add_selection (int start_offset,
int end_offset 
)
-
- -

Adds a selection bounded by the specified offsets.

-
Parameters
- - - -
start_offsetThe start position of the selected region.
end_offsetThe offset of the first character after the selected region.
-
-
-
Returns
true if success, false otherwise.
- -
-
- -
-
- - - - - -
- - - - - - - - - - - - - - - - - - -
virtual bool Atk::Text::add_selection_vfunc (int start_offset,
int end_offset 
)
-
-protectedvirtual
-
- -
-
- -
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
AtkTextRange** Atk::Text::get_bounded_ranges (const Rectanglerect,
CoordType coord_type,
TextClipType x_clip_type,
TextClipType y_clip_type 
)
-
- -

Get the ranges of text in the specified bounding box.

-
Since atkmm 1.3:
-
Parameters
- - - - - -
rectAn AtkTextRectangle giving the dimensions of the bounding box.
coord_typeSpecify whether coordinates are relative to the screen or widget window.
x_clip_typeSpecify the horizontal clip type.
y_clip_typeSpecify the vertical clip type.
-
-
-
Returns
Array of AtkTextRange. The last element of the array returned by this function will be nullptr.
- -
-
- -
-
- - - - - - - -
int Atk::Text::get_caret_offset () const
-
- -

Gets the offset position of the caret (cursor).

-
Returns
The offset position of the caret (cursor).
- -
-
- -
-
- - - - - -
- - - - - - - -
virtual int Atk::Text::get_caret_offset_vfunc () const
-
-protectedvirtual
-
- -
-
- -
-
- - - - - - - - -
gunichar Atk::Text::get_character_at_offset (int offset) const
-
- -

Gets the specified text.

-
Parameters
- - -
offsetPosition.
-
-
-
Returns
The character at offset.
- -
-
- -
-
- - - - - -
- - - - - - - - -
virtual gunichar Atk::Text::get_character_at_offset_vfunc (int offset) const
-
-protectedvirtual
-
- -
-
- -
-
- - - - - - - -
int Atk::Text::get_character_count () const
-
- -

Gets the character count.

-
Returns
The number of characters.
- -
-
- -
-
- - - - - -
- - - - - - - -
virtual int Atk::Text::get_character_count_vfunc () const
-
-protectedvirtual
-
- -
-
- -
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
void Atk::Text::get_character_extents (int offset,
int & x,
int & y,
int & width,
int & height,
CoordType coords 
) const
-
- -

Get the bounding box containing the glyph representing the character at a particular text offset.

-
Parameters
- - - - - - - -
offsetThe offset of the text character for which bounding information is required.
xPointer for the x cordinate of the bounding box.
yPointer for the y cordinate of the bounding box.
widthPointer for the width of the bounding box.
heightPointer for the height of the bounding box.
coordsSpecify whether coordinates are relative to the screen or widget window.
-
-
- -
-
- -
-
- - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
virtual void Atk::Text::get_character_extents_vfunc (int offset,
int & x,
int & y,
int & width,
int & height,
CoordType coords 
) const
-
-protectedvirtual
-
- -
-
- -
-
- - - - - - - -
AttributeSet Atk::Text::get_default_attributes () const
-
- -

Creates an Atk::AttributeSet which consists of the default values of attributes for the text.

-

See the enum AtkTextAttribute for types of text attributes that can be returned. Note that other attributes may also be returned.

-
Returns
An Atk::AttributeSet which contains the default values of attributes. at offset.
- -
-
- -
-
- - - - - -
- - - - - - - -
virtual AtkAttributeSet* Atk::Text::get_default_attributes_vfunc () const
-
-protectedvirtual
-
- -
-
- -
-
- - - - - - - -
int Atk::Text::get_n_selections () const
-
- -

Gets the number of selected regions.

-
Returns
The number of selected regions, or -1 if a failure occurred.
- -
-
- -
-
- - - - - -
- - - - - - - -
virtual int Atk::Text::get_n_selections_vfunc () const
-
-protectedvirtual
-
- -
-
- -
-
- - - - - - - - - - - - - - - - - - - - - - - - -
int Atk::Text::get_offset_at_point (int x,
int y,
CoordType coords 
) const
-
- -

Gets the offset of the character located at coordinates x and y.

-

x and y are interpreted as being relative to the screen or this widget's window depending on coords.

-
Parameters
- - - - -
xScreen x-position of character.
yScreen y-position of character.
coordsSpecify whether coordinates are relative to the screen or widget window.
-
-
-
Returns
The offset to the character which is located at the specified x and y coordinates.
- -
-
- -
-
- - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - -
virtual int Atk::Text::get_offset_at_point_vfunc (int x,
int y,
CoordType coords 
) const
-
-protectedvirtual
-
- -
-
- -
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
void Atk::Text::get_range_extents (int start_offset,
int end_offset,
CoordType coord_type,
Rectanglerect 
)
-
- -

Get the bounding box for text within the specified range.

-
Since atkmm 1.3:
-
Parameters
- - - - - -
start_offsetThe offset of the first text character for which boundary information is required.
end_offsetThe offset of the text character after the last character for which boundary information is required.
coord_typeSpecify whether coordinates are relative to the screen or widget window.
rectA pointer to a AtkTextRectangle which is filled in by this function.
-
-
- -
-
- -
-
- - - - - - - - - - - - - - - - - - - - - - - - -
AttributeSet Atk::Text::get_run_attributes (int offset,
int & start_offset,
int & end_offset 
) const
-
- -

Creates an Atk::AttributeSet which consists of the attributes explicitly set at the position offset in the text.

-

start_offset and end_offset are set to the start and end of the range around offset where the attributes are invariant. See the enum AtkTextAttribute for types of text attributes that can be returned. Note that other attributes may also be returned.

-
Parameters
- - - - -
offsetThe offset at which to get the attributes.
start_offsetThe address to put the start offset of the range.
end_offsetThe address to put the end offset of the range.
-
-
-
Returns
An Atk::AttributeSet which contains the attributes explicitly set at offset.
- -
-
- -
-
- - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - -
virtual AtkAttributeSet* Atk::Text::get_run_attributes_vfunc (int offset,
int & start_offset,
int & end_offset 
) const
-
-protectedvirtual
-
- -
-
- -
-
- - - - - - - - - - - - - - - - - - - - - - - - -
Glib::ustring Atk::Text::get_selection (int selection_num,
int & start_offset,
int & end_offset 
) const
-
- -

Gets the text from the specified selection.

-
Parameters
- - - - -
selection_numThe selection number. The selected regions are assigned numbers that correspond to how far the region is from the start of the text. The selected region closest to the beginning of the text region is assigned the number 0, etc. Note that adding, moving or deleting a selected region can change the numbering.
start_offsetPasses back the start position of the selected region.
end_offsetPasses back the end position of (e.g. offset immediately past) the selected region.
-
-
-
Returns
A newly allocated string containing the selected text. Use Glib::free() to free the returned string.
- -
-
- -
-
- - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - -
virtual Glib::ustring Atk::Text::get_selection_vfunc (int selection_num,
int & start_offset,
int & end_offset 
) const
-
-protectedvirtual
-
- -
-
- -
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Glib::ustring Atk::Text::get_string_at_offset (int offset,
TextGranularity granularity,
int & start_offset,
int & end_offset 
)
-
- -

Gets a portion of the text exposed through an Atk::Text according to a given offset and a specific granularity, along with the start and end offsets defining the boundaries of such a portion of text.

-

If granularity is ATK_TEXT_GRANULARITY_CHAR the character at the offset is returned.

-

If granularity is ATK_TEXT_GRANULARITY_WORD the returned string is from the word start at or before the offset to the word start after the offset.

-

The returned string will contain the word at the offset if the offset is inside a word and will contain the word before the offset if the offset is not inside a word.

-

If granularity is ATK_TEXT_GRANULARITY_SENTENCE the returned string is from the sentence start at or before the offset to the sentence start after the offset.

-

The returned string will contain the sentence at the offset if the offset is inside a sentence and will contain the sentence before the offset if the offset is not inside a sentence.

-

If granularity is ATK_TEXT_GRANULARITY_LINE the returned string is from the line start at or before the offset to the line start after the offset.

-

If granularity is ATK_TEXT_GRANULARITY_PARAGRAPH the returned string is from the start of the paragraph at or before the offset to the start of the following paragraph after the offset.

-
Since atkmm 2.10:
-
Parameters
- - - - - -
offsetPosition.
granularityAn Atk::TextGranularity.
start_offsetThe start offset of the returned string, or -1 if an error has occurred (e.g. invalid offset, not implemented).
end_offsetThe offset of the first character after the returned string, or -1 if an error has occurred (e.g. invalid offset, not implemented).
-
-
-
Returns
A newly allocated string containing the text at the offset bounded by the specified granularity. Use Glib::free() to free the returned string. Returns nullptr if the offset is invalid or no implementation is available.
- -
-
- -
-
- - - - - - - - - - - - - - - - - - -
Glib::ustring Atk::Text::get_text (int start_offset,
int end_offset 
) const
-
- -

Gets the specified text.

-
Parameters
- - - -
start_offsetStart position.
end_offsetEnd position, or -1 for the end of the string.
-
-
-
Returns
A newly allocated string containing the text from start_offset up to, but not including end_offset. Use Glib::free() to free the returned string.
- -
-
- -
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Glib::ustring Atk::Text::get_text_after_offset (int offset,
TextBoundary boundary_type,
int & start_offset,
int & end_offset 
) const
-
- -

Gets the specified text.

-

Deprecated: 2.9.3: Please use get_string_at_offset() instead.

-
Deprecated:
Use get_string_at_offset() instead.
-
Parameters
- - - - - -
offsetPosition.
boundary_typeAn Atk::TextBoundary.
start_offsetThe start offset of the returned string.
end_offsetThe offset of the first character after the returned substring.
-
-
-
Returns
A newly allocated string containing the text after offset bounded by the specified boundary_type. Use Glib::free() to free the returned string.
- -
-
- -
-
- - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
virtual Glib::ustring Atk::Text::get_text_after_offset_vfunc (int offset,
TextBoundary boundary_type,
int & start_offset,
int & end_offset 
) const
-
-protectedvirtual
-
-
Deprecated:
This virtual function is deprecated and it should not be overridden.
- -
-
- -
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Glib::ustring Atk::Text::get_text_at_offset (int offset,
TextBoundary boundary_type,
int & start_offset,
int & end_offset 
) const
-
- -

Gets the specified text.

-

If the boundary_type if ATK_TEXT_BOUNDARY_CHAR the character at the offset is returned.

-

If the boundary_type is ATK_TEXT_BOUNDARY_WORD_START the returned string is from the word start at or before the offset to the word start after the offset.

-

The returned string will contain the word at the offset if the offset is inside a word and will contain the word before the offset if the offset is not inside a word.

-

If the boundary type is ATK_TEXT_BOUNDARY_SENTENCE_START the returned string is from the sentence start at or before the offset to the sentence start after the offset.

-

The returned string will contain the sentence at the offset if the offset is inside a sentence and will contain the sentence before the offset if the offset is not inside a sentence.

-

If the boundary type is ATK_TEXT_BOUNDARY_LINE_START the returned string is from the line start at or before the offset to the line start after the offset.

-

Deprecated: This method is deprecated since ATK version 2.9.4. Please use get_string_at_offset() instead.

-
Deprecated:
Use get_string_at_offset() instead.
-
Parameters
- - - - - -
offsetPosition.
boundary_typeAn Atk::TextBoundary.
start_offsetThe start offset of the returned string.
end_offsetThe offset of the first character after the returned substring.
-
-
-
Returns
A newly allocated string containing the text at offset bounded by the specified boundary_type. Use Glib::free() to free the returned string.
- -
-
- -
-
- - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
virtual Glib::ustring Atk::Text::get_text_at_offset_vfunc (int offset,
TextBoundary boundary_type,
int & start_offset,
int & end_offset 
) const
-
-protectedvirtual
-
- -
-
- -
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Glib::ustring Atk::Text::get_text_before_offset (int offset,
TextBoundary boundary_type,
int & start_offset,
int & end_offset 
) const
-
- -

Gets the specified text.

-

Deprecated: 2.9.3: Please use get_string_at_offset() instead.

-
Deprecated:
Use get_string_at_offset() instead.
-
Parameters
- - - - - -
offsetPosition.
boundary_typeAn Atk::TextBoundary.
start_offsetThe start offset of the returned string.
end_offsetThe offset of the first character after the returned substring.
-
-
-
Returns
A newly allocated string containing the text before offset bounded by the specified boundary_type. Use Glib::free() to free the returned string.
- -
-
- -
-
- - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
virtual Glib::ustring Atk::Text::get_text_before_offset_vfunc (int offset,
TextBoundary boundary_type,
int & start_offset,
int & end_offset 
) const
-
-protectedvirtual
-
-
Deprecated:
This virtual function is deprecated and it should not be overridden.
- -
-
- -
-
- - - - - -
- - - - - - - - - - - - - - - - - - -
virtual Glib::ustring Atk::Text::get_text_vfunc (int start_offset,
int end_offset 
) const
-
-protectedvirtual
-
- -
-
- -
-
- - - - - -
- - - - - - - -
static GType Atk::Text::get_type ()
-
-static
-
- -

Get the GType for this class, for use with the underlying GObject type system.

- -
-
- -
-
- - - - - -
- - - - - - - -
AtkText* Atk::Text::gobj ()
-
-inline
-
- -

Provides access to the underlying C GObject.

- -
-
- -
-
- - - - - -
- - - - - - - -
const AtkText* Atk::Text::gobj () const
-
-inline
-
- -

Provides access to the underlying C GObject.

- -
-
- -
-
- - - - - -
- - - - - - - -
virtual void Atk::Text::on_text_attributes_changed ()
-
-protectedvirtual
-
- -

This is a default handler for the signal signal_text_attributes_changed().

- -
-
- -
-
- - - - - -
- - - - - - - - -
virtual void Atk::Text::on_text_caret_moved (int location)
-
-protectedvirtual
-
- -

This is a default handler for the signal signal_text_caret_moved().

- -
-
- -
-
- - - - - -
- - - - - - - - - - - - - - - - - - -
virtual void Atk::Text::on_text_changed (int position,
int length 
)
-
-protectedvirtual
-
- -

This is a default handler for the signal signal_text_changed().

- -
-
- -
-
- - - - - -
- - - - - - - -
virtual void Atk::Text::on_text_selection_changed ()
-
-protectedvirtual
-
- -

This is a default handler for the signal signal_text_selection_changed().

- -
-
- -
-
- - - - - -
- - - - - - - - -
Text& Atk::Text::operator= (Text&& src)
-
-noexcept
-
- -
-
- -
-
- - - - - - - - -
bool Atk::Text::remove_selection (int selection_num)
-
- -

Removes the specified selection.

-
Parameters
- - -
selection_numThe selection number. The selected regions are assigned numbers that correspond to how far the region is from the start of the text. The selected region closest to the beginning of the text region is assigned the number 0, etc. Note that adding, moving or deleting a selected region can change the numbering.
-
-
-
Returns
true if success, false otherwise.
- -
-
- -
-
- - - - - -
- - - - - - - - -
virtual bool Atk::Text::remove_selection_vfunc (int selection_num)
-
-protectedvirtual
-
- -
-
- -
-
- - - - - - - - -
bool Atk::Text::set_caret_offset (int offset)
-
- -

Sets the caret (cursor) position to the specified offset.

-
Parameters
- - -
offsetPosition.
-
-
-
Returns
true if success, false otherwise.
- -
-
- -
-
- - - - - -
- - - - - - - - -
virtual bool Atk::Text::set_caret_offset_vfunc (int offset)
-
-protectedvirtual
-
- -
-
- -
-
- - - - - - - - - - - - - - - - - - - - - - - - -
bool Atk::Text::set_selection (int selection_num,
int start_offset,
int end_offset 
)
-
- -

Changes the start and end offset of the specified selection.

-
Parameters
- - - - -
selection_numThe selection number. The selected regions are assigned numbers that correspond to how far the region is from the start of the text. The selected region closest to the beginning of the text region is assigned the number 0, etc. Note that adding, moving or deleting a selected region can change the numbering.
start_offsetThe new start position of the selection.
end_offsetThe new end position of (e.g. offset immediately past) the selection.
-
-
-
Returns
true if success, false otherwise.
- -
-
- -
-
- - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - -
virtual bool Atk::Text::set_selection_vfunc (int selection_num,
int start_offset,
int end_offset 
)
-
-protectedvirtual
-
- -
-
- -
-
- - - - - - - -
Glib::SignalProxy0< void > Atk::Text::signal_text_attributes_changed ()
-
-
Slot Prototype:
void on_my_text_attributes_changed()
-

The "text-attributes-changed" signal is emitted when the text attributes of the text of an object which implements AtkText changes.

- -
-
- -
-
- - - - - - - -
Glib::SignalProxy1< void,int > Atk::Text::signal_text_caret_moved ()
-
-
Slot Prototype:
void on_my_text_caret_moved(int location)
-

The "text-caret-moved" signal is emitted when the caret position of the text of an object which implements AtkText changes.

-
Parameters
- - -
locationThe new position of the text caret.
-
-
- -
-
- -
-
- - - - - - - -
Glib::SignalProxy2< void,int,int > Atk::Text::signal_text_changed ()
-
-
Slot Prototype:
void on_my_text_changed(int position, int length)
-

The "text-changed" signal is emitted when the text of the object which implements the AtkText interface changes, This signal will have a detail which is either "insert" or "delete" which identifies whether the text change was an insertion or a deletion.

-

Deprecated: 2.9.4: Use Atk::Object::signal_text_insert() or Atk::Object::signal_text_remove() instead.

-
Parameters
- - - -
positionThe position (character offset) of the insertion or deletion.
lengthThe length (in characters) of text inserted or deleted.
-
-
- -
-
- -
-
- - - - - - - -
Glib::SignalProxy0< void > Atk::Text::signal_text_selection_changed ()
-
-
Slot Prototype:
void on_my_text_selection_changed()
-

The "text-selection-changed" signal is emitted when the selected text of an object which implements AtkText changes.

- -
-
-

Friends And Related Function Documentation

- -
-
- - - - - -
- - - - - - - - - - - - - - - - - - -
Glib::RefPtr< Atk::Text > wrap (AtkText * object,
bool take_copy = false 
)
-
-related
-
- -

A Glib::wrap() method for this object.

-
Parameters
- - - -
objectThe C instance.
take_copyFalse if the result should take ownership of the C instance. True if it should take a new copy or ref.
-
-
-
Returns
A C++ instance that wraps this C instance.
- -
-
-
- - - - Binary files /tmp/tmpOzhFOD/5A0TTRaIcC/atkmm1.6-2.24.2/doc/reference/html/classAtk_1_1Text__inherit__graph.png and /tmp/tmpOzhFOD/Bg2TspT7RQ/atkmm1.6-2.28.0/doc/reference/html/classAtk_1_1Text__inherit__graph.png differ diff -Nru atkmm1.6-2.24.2/doc/reference/html/classAtk_1_1Text-members.html atkmm1.6-2.28.0/doc/reference/html/classAtk_1_1Text-members.html --- atkmm1.6-2.24.2/doc/reference/html/classAtk_1_1Text-members.html 2015-11-29 20:05:33.287311249 +0000 +++ atkmm1.6-2.28.0/doc/reference/html/classAtk_1_1Text-members.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,162 +0,0 @@ - - - - - - -atkmm: Member List - - - - - - -
-
- - - - - - -
-
atkmm -  2.24.2 -
-
-
- - - - - -
-
-
-
Atk::Text Member List
-
-
- -

This is the complete list of members for Atk::Text, including all inherited members.

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
add_destroy_notify_callback(void *data, func_destroy_notify func) const sigc::trackable
add_interface(GType gtype_implementer)Atk::Textstatic
add_selection(int start_offset, int end_offset)Atk::Text
add_selection_vfunc(int start_offset, int end_offset)Atk::Textprotectedvirtual
connect_property_changed(const Glib::ustring &property_name, const sigc::slot< void > &slot)Glib::ObjectBase
connect_property_changed_with_return(const Glib::ustring &property_name, const sigc::slot< void > &slot)Glib::ObjectBase
freeze_notify()Glib::ObjectBase
func_destroy_notify typedefsigc::trackable
get_bounded_ranges(const Rectangle& rect, CoordType coord_type, TextClipType x_clip_type, TextClipType y_clip_type)Atk::Text
get_caret_offset() const Atk::Text
get_caret_offset_vfunc() const Atk::Textprotectedvirtual
get_character_at_offset(int offset) const Atk::Text
get_character_at_offset_vfunc(int offset) const Atk::Textprotectedvirtual
get_character_count() const Atk::Text
get_character_count_vfunc() const Atk::Textprotectedvirtual
get_character_extents(int offset, int& x, int& y, int& width, int& height, CoordType coords) const Atk::Text
get_character_extents_vfunc(int offset, int& x, int& y, int& width, int& height, CoordType coords) const Atk::Textprotectedvirtual
get_default_attributes() const Atk::Text
get_default_attributes_vfunc() const Atk::Textprotectedvirtual
get_n_selections() const Atk::Text
get_n_selections_vfunc() const Atk::Textprotectedvirtual
get_offset_at_point(int x, int y, CoordType coords) const Atk::Text
get_offset_at_point_vfunc(int x, int y, CoordType coords) const Atk::Textprotectedvirtual
get_property(const Glib::ustring &property_name, PropertyType &value) const Glib::ObjectBase
get_property_value(const Glib::ustring &property_name, Glib::ValueBase &value) const Glib::ObjectBase
get_range_extents(int start_offset, int end_offset, CoordType coord_type, Rectangle& rect)Atk::Text
get_run_attributes(int offset, int& start_offset, int& end_offset) const Atk::Text
get_run_attributes_vfunc(int offset, int& start_offset, int& end_offset) const Atk::Textprotectedvirtual
get_selection(int selection_num, int& start_offset, int& end_offset) const Atk::Text
get_selection_vfunc(int selection_num, int& start_offset, int& end_offset) const Atk::Textprotectedvirtual
get_string_at_offset(int offset, TextGranularity granularity, int& start_offset, int& end_offset)Atk::Text
get_text(int start_offset, int end_offset) const Atk::Text
get_text_after_offset(int offset, TextBoundary boundary_type, int& start_offset, int& end_offset) const Atk::Text
get_text_after_offset_vfunc(int offset, TextBoundary boundary_type, int& start_offset, int& end_offset) const Atk::Textprotectedvirtual
get_text_at_offset(int offset, TextBoundary boundary_type, int& start_offset, int& end_offset) const Atk::Text
get_text_at_offset_vfunc(int offset, TextBoundary boundary_type, int& start_offset, int& end_offset) const Atk::Textprotectedvirtual
get_text_before_offset(int offset, TextBoundary boundary_type, int& start_offset, int& end_offset) const Atk::Text
get_text_before_offset_vfunc(int offset, TextBoundary boundary_type, int& start_offset, int& end_offset) const Atk::Textprotectedvirtual
get_text_vfunc(int start_offset, int end_offset) const Atk::Textprotectedvirtual
get_type()Atk::Textstatic
gobj()Atk::Textinline
gobj() const Atk::Textinline
gobj_copy() const Glib::ObjectBase
initialize(GObject *castitem)Glib::ObjectBaseprotected
initialize_move(GObject *castitem, Glib::ObjectBase *previous_wrapper)Glib::ObjectBaseprotected
Interface()Glib::Interface
Interface(Interface &&src) noexceptGlib::Interface
Interface(const Glib::Interface_Class &interface_class)Glib::Interface
Interface(GObject *castitem)Glib::Interface
Interface(const Interface &)=deleteGlib::Interface
notify_callbacks()sigc::trackable
ObjectBase(const ObjectBase &)=deleteGlib::ObjectBase
ObjectBase()Glib::ObjectBaseprotected
ObjectBase(const char *custom_type_name)Glib::ObjectBaseprotected
ObjectBase(const std::type_info &custom_type_info)Glib::ObjectBaseprotected
ObjectBase(ObjectBase &&src) noexceptGlib::ObjectBaseprotected
on_text_attributes_changed()Atk::Textprotectedvirtual
on_text_caret_moved(int location)Atk::Textprotectedvirtual
on_text_changed(int position, int length)Atk::Textprotectedvirtual
on_text_selection_changed()Atk::Textprotectedvirtual
operator=(Text&& src) noexceptAtk::Text
Glib::Interface::operator=(Interface &&src) noexceptGlib::Interface
Glib::Interface::operator=(const Interface &)=deleteGlib::Interface
Glib::ObjectBase::operator=(const ObjectBase &)=deleteGlib::ObjectBase
Glib::ObjectBase::operator=(ObjectBase &&src) noexceptGlib::ObjectBaseprotected
sigc::trackable::operator=(const trackable &src)sigc::trackable
sigc::trackable::operator=(trackable &&src)sigc::trackable
Rectangle typedefAtk::Text
reference() const Glib::ObjectBasevirtual
remove_destroy_notify_callback(void *data) const sigc::trackable
remove_selection(int selection_num)Atk::Text
remove_selection_vfunc(int selection_num)Atk::Textprotectedvirtual
set_caret_offset(int offset)Atk::Text
set_caret_offset_vfunc(int offset)Atk::Textprotectedvirtual
set_property(const Glib::ustring &property_name, const PropertyType &value)Glib::ObjectBase
set_property_value(const Glib::ustring &property_name, const Glib::ValueBase &value)Glib::ObjectBase
set_selection(int selection_num, int start_offset, int end_offset)Atk::Text
set_selection_vfunc(int selection_num, int start_offset, int end_offset)Atk::Textprotectedvirtual
signal_text_attributes_changed()Atk::Text
signal_text_caret_moved()Atk::Text
signal_text_changed()Atk::Text
signal_text_selection_changed()Atk::Text
Text()Atk::Textprotected
Text(Text&& src) noexceptAtk::Text
thaw_notify()Glib::ObjectBase
trackable() noexceptsigc::trackable
trackable(const trackable &src) noexceptsigc::trackable
trackable(trackable &&src)sigc::trackable
unreference() const Glib::ObjectBasevirtual
wrap(AtkText* object, bool take_copy=false)Atk::Textrelated
~Interface() noexceptGlib::Interfacevirtual
~ObjectBase() noexcept=0Glib::ObjectBaseprotectedpure virtual
~Text() noexceptAtk::Textvirtual
~trackable()sigc::trackable
- - - - diff -Nru atkmm1.6-2.24.2/doc/reference/html/classAtk_1_1Value.html atkmm1.6-2.28.0/doc/reference/html/classAtk_1_1Value.html --- atkmm1.6-2.24.2/doc/reference/html/classAtk_1_1Value.html 2015-11-29 20:05:33.351310032 +0000 +++ atkmm1.6-2.28.0/doc/reference/html/classAtk_1_1Value.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,788 +0,0 @@ - - - - - - -atkmm: Atk::Value Class Reference - - - - - - -
-
- - - - - - -
-
atkmm -  2.24.2 -
-
-
- - - - - -
- -
- -

The ATK interface implemented by valuators and components which display or select a value from a bounded range of values. - More...

- -

#include <atkmm/value.h>

-
-Inheritance diagram for Atk::Value:
-
-
Inheritance graph
- - -
[legend]
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

-Public Member Functions

 Value (Value&& src) noexcept
 
Valueoperator= (Value&& src) noexcept
 
virtual ~Value () noexcept
 
AtkValue* gobj ()
 Provides access to the underlying C GObject. More...
 
const AtkValue* gobj () const
 Provides access to the underlying C GObject. More...
 
void get_current_value (Glib::ValueBase& value) const
 Gets the value of this object. More...
 
void get_maximum_value (Glib::ValueBase& value) const
 Gets the maximum value of this object. More...
 
void get_minimum_value (Glib::ValueBase& value) const
 Gets the minimum value of this object. More...
 
bool set_current_value (const Glib::ValueBase& value)
 Sets the value of this object. More...
 
void get_value_and_text (double& value, Glib::ustring& text)
 Gets the current value and the human readable text alternative. More...
 
Range get_range () const
 Gets the range of this object. More...
 
double get_increment ()
 Gets the minimum increment by which the value of this object may be changed. More...
 
void set_value (const gdouble new_value)
 Sets the value of this object. More...
 
- Public Member Functions inherited from Glib::Interface
 Interface ()
 
 Interface (Interface &&src) noexcept
 
Interfaceoperator= (Interface &&src) noexcept
 
 Interface (const Glib::Interface_Class &interface_class)
 
 Interface (GObject *castitem)
 
virtual ~Interface () noexcept
 
 Interface (const Interface &)=delete
 
Interfaceoperator= (const Interface &)=delete
 
GObject * gobj ()
 
const GObject * gobj () const
 
- Public Member Functions inherited from Glib::ObjectBase
 ObjectBase (const ObjectBase &)=delete
 
ObjectBaseoperator= (const ObjectBase &)=delete
 
void set_property_value (const Glib::ustring &property_name, const Glib::ValueBase &value)
 
void get_property_value (const Glib::ustring &property_name, Glib::ValueBase &value) const
 
void set_property (const Glib::ustring &property_name, const PropertyType &value)
 
void get_property (const Glib::ustring &property_name, PropertyType &value) const
 
void connect_property_changed (const Glib::ustring &property_name, const sigc::slot< void > &slot)
 
sigc::connection connect_property_changed_with_return (const Glib::ustring &property_name, const sigc::slot< void > &slot)
 
void freeze_notify ()
 
void thaw_notify ()
 
virtual void reference () const
 
virtual void unreference () const
 
GObject * gobj ()
 
const GObject * gobj () const
 
GObject * gobj_copy () const
 
- Public Member Functions inherited from sigc::trackable
 trackable () noexcept
 
 trackable (const trackable &src) noexcept
 
 trackable (trackable &&src)
 
 ~trackable ()
 
void add_destroy_notify_callback (void *data, func_destroy_notify func) const
 
void notify_callbacks ()
 
trackableoperator= (const trackable &src)
 
trackableoperator= (trackable &&src)
 
void remove_destroy_notify_callback (void *data) const
 
- - - - - - -

-Static Public Member Functions

static void add_interface (GType gtype_implementer)
 
static GType get_type ()
 Get the GType for this class, for use with the underlying GObject type system. More...
 
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

-Protected Member Functions

 Value ()
 You should derive from this class to use it. More...
 
virtual void get_current_value_vfunc (Glib::ValueBase& value) const
 
virtual void get_maximum_value_vfunc (Glib::ValueBase& value) const
 
virtual void get_minimum_value_vfunc (Glib::ValueBase& value) const
 
virtual bool set_current_value_vfunc (const Glib::ValueBase& value)
 
- Protected Member Functions inherited from Glib::ObjectBase
 ObjectBase ()
 
 ObjectBase (const char *custom_type_name)
 
 ObjectBase (const std::type_info &custom_type_info)
 
 ObjectBase (ObjectBase &&src) noexcept
 
ObjectBaseoperator= (ObjectBase &&src) noexcept
 
virtual ~ObjectBase () noexcept=0
 
void initialize (GObject *castitem)
 
void initialize_move (GObject *castitem, Glib::ObjectBase *previous_wrapper)
 
- - - - - -

-Related Functions

(Note that these are not member functions.)

-
Glib::RefPtr< Atk::Valuewrap (AtkValue* object, bool take_copy=false)
 A Glib::wrap() method for this object. More...
 
- - - - -

-Additional Inherited Members

- Public Types inherited from sigc::trackable
typedef internal::func_destroy_notify func_destroy_notify
 
-

Detailed Description

-

The ATK interface implemented by valuators and components which display or select a value from a bounded range of values.

-

This should be implemented for components which either display a value from a bounded range, or which allow the user to specify a value from a bounded range, or both. For instance, most sliders and range controls, as well as dials, should have Atk::Object representations which implement Atk::Value on the component's behalf. Atk::Values may be read-only, in which case attempts to alter the value return false to indicate failure.

-

Constructor & Destructor Documentation

- -
-
- - - - - -
- - - - - - - -
Atk::Value::Value ()
-
-protected
-
- -

You should derive from this class to use it.

- -
-
- -
-
- - - - - -
- - - - - - - - -
Atk::Value::Value (Value&& src)
-
-noexcept
-
- -
-
- -
-
- - - - - -
- - - - - - - -
virtual Atk::Value::~Value ()
-
-virtualnoexcept
-
- -
-
-

Member Function Documentation

- -
-
- - - - - -
- - - - - - - - -
static void Atk::Value::add_interface (GType gtype_implementer)
-
-static
-
- -
-
- -
-
- - - - - - - - -
void Atk::Value::get_current_value (Glib::ValueBasevalue) const
-
- -

Gets the value of this object.

-

Deprecated: Since 2.12. Use get_value_and_text() instead.

-
Deprecated:
Use get_value_and_text() instead.
-
Parameters
- - -
valueA Value representing the current accessible value.
-
-
- -
-
- -
-
- - - - - -
- - - - - - - - -
virtual void Atk::Value::get_current_value_vfunc (Glib::ValueBasevalue) const
-
-protectedvirtual
-
- -
-
- -
-
- - - - - - - -
double Atk::Value::get_increment ()
-
- -

Gets the minimum increment by which the value of this object may be changed.

-

If zero, the minimum increment is undefined, which may mean that it is limited only by the floating point precision of the platform.

-
Since atkmm 2.12:
-
Returns
The minimum increment by which the value of this object may be changed. zero if undefined.
- -
-
- -
-
- - - - - - - - -
void Atk::Value::get_maximum_value (Glib::ValueBasevalue) const
-
- -

Gets the maximum value of this object.

-

Deprecated: Since 2.12. Use get_range() instead.

-
Deprecated:
Use get_range() instead.
-
Parameters
- - -
valueA Value representing the maximum accessible value.
-
-
- -
-
- -
-
- - - - - -
- - - - - - - - -
virtual void Atk::Value::get_maximum_value_vfunc (Glib::ValueBasevalue) const
-
-protectedvirtual
-
- -
-
- -
-
- - - - - - - - -
void Atk::Value::get_minimum_value (Glib::ValueBasevalue) const
-
- -

Gets the minimum value of this object.

-

Deprecated: Since 2.12. Use get_range() instead.

-
Deprecated:
Use get_range() instead.
-
Parameters
- - -
valueA Value representing the minimum accessible value.
-
-
- -
-
- -
-
- - - - - -
- - - - - - - - -
virtual void Atk::Value::get_minimum_value_vfunc (Glib::ValueBasevalue) const
-
-protectedvirtual
-
- -
-
- -
-
- - - - - - - -
Range Atk::Value::get_range () const
-
- -

Gets the range of this object.

-
Since atkmm 2.12:
-
Returns
A newly allocated Atk::Range that represents the minimum, maximum and descriptor (if available) of obj. nullptr if that range is not defined.
- -
-
- -
-
- - - - - -
- - - - - - - -
static GType Atk::Value::get_type ()
-
-static
-
- -

Get the GType for this class, for use with the underlying GObject type system.

- -
-
- -
-
- - - - - - - - - - - - - - - - - - -
void Atk::Value::get_value_and_text (double & value,
Glib::ustringtext 
)
-
- -

Gets the current value and the human readable text alternative.

-
Since atkmm 2.24:
- -
-
- -
-
- - - - - -
- - - - - - - -
AtkValue* Atk::Value::gobj ()
-
-inline
-
- -

Provides access to the underlying C GObject.

- -
-
- -
-
- - - - - -
- - - - - - - -
const AtkValue* Atk::Value::gobj () const
-
-inline
-
- -

Provides access to the underlying C GObject.

- -
-
- -
-
- - - - - -
- - - - - - - - -
Value& Atk::Value::operator= (Value&& src)
-
-noexcept
-
- -
-
- -
-
- - - - - - - - -
bool Atk::Value::set_current_value (const Glib::ValueBasevalue)
-
- -

Sets the value of this object.

-

Deprecated: Since 2.12. Use set_value() instead.

-
Deprecated:
Use set_value() instead.
-
Parameters
- - -
valueA Value which is the desired new accessible value.
-
-
-
Returns
true if new value is successfully set, false otherwise.
- -
-
- -
-
- - - - - -
- - - - - - - - -
virtual bool Atk::Value::set_current_value_vfunc (const Glib::ValueBasevalue)
-
-protectedvirtual
-
- -
-
- -
-
- - - - - - - - -
void Atk::Value::set_value (const gdouble new_value)
-
- -

Sets the value of this object.

-

This method is intended to provide a way to change the value of the object. In any case, it is possible that the value can't be modified (ie: a read-only component). If the value changes due this call, it is possible that the text could change, and will trigger an Atk::Value::signal_value_changed() signal emission.

-

Note for implementors: the deprecated set_current_value() method returned true or false depending if the value was assigned or not. In the practice several implementors were not able to decide it, and returned true in any case. For that reason it is not required anymore to return if the value was properly assigned or not.

-
Since atkmm 2.12:
-
Parameters
- - -
new_valueA double which is the desired new accessible value.
-
-
- -
-
-

Friends And Related Function Documentation

- -
-
- - - - - -
- - - - - - - - - - - - - - - - - - -
Glib::RefPtr< Atk::Value > wrap (AtkValue * object,
bool take_copy = false 
)
-
-related
-
- -

A Glib::wrap() method for this object.

-
Parameters
- - - -
objectThe C instance.
take_copyFalse if the result should take ownership of the C instance. True if it should take a new copy or ref.
-
-
-
Returns
A C++ instance that wraps this C instance.
- -
-
-
- - - - Binary files /tmp/tmpOzhFOD/5A0TTRaIcC/atkmm1.6-2.24.2/doc/reference/html/classAtk_1_1Value__inherit__graph.png and /tmp/tmpOzhFOD/Bg2TspT7RQ/atkmm1.6-2.28.0/doc/reference/html/classAtk_1_1Value__inherit__graph.png differ diff -Nru atkmm1.6-2.24.2/doc/reference/html/classAtk_1_1Value-members.html atkmm1.6-2.28.0/doc/reference/html/classAtk_1_1Value-members.html --- atkmm1.6-2.24.2/doc/reference/html/classAtk_1_1Value-members.html 2015-11-29 20:05:33.291311172 +0000 +++ atkmm1.6-2.28.0/doc/reference/html/classAtk_1_1Value-members.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,128 +0,0 @@ - - - - - - -atkmm: Member List - - - - - - -
-
- - - - - - -
-
atkmm -  2.24.2 -
-
-
- - - - - -
-
-
-
Atk::Value Member List
-
-
- -

This is the complete list of members for Atk::Value, including all inherited members.

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
add_destroy_notify_callback(void *data, func_destroy_notify func) const sigc::trackable
add_interface(GType gtype_implementer)Atk::Valuestatic
connect_property_changed(const Glib::ustring &property_name, const sigc::slot< void > &slot)Glib::ObjectBase
connect_property_changed_with_return(const Glib::ustring &property_name, const sigc::slot< void > &slot)Glib::ObjectBase
freeze_notify()Glib::ObjectBase
func_destroy_notify typedefsigc::trackable
get_current_value(Glib::ValueBase& value) const Atk::Value
get_current_value_vfunc(Glib::ValueBase& value) const Atk::Valueprotectedvirtual
get_increment()Atk::Value
get_maximum_value(Glib::ValueBase& value) const Atk::Value
get_maximum_value_vfunc(Glib::ValueBase& value) const Atk::Valueprotectedvirtual
get_minimum_value(Glib::ValueBase& value) const Atk::Value
get_minimum_value_vfunc(Glib::ValueBase& value) const Atk::Valueprotectedvirtual
get_property(const Glib::ustring &property_name, PropertyType &value) const Glib::ObjectBase
get_property_value(const Glib::ustring &property_name, Glib::ValueBase &value) const Glib::ObjectBase
get_range() const Atk::Value
get_type()Atk::Valuestatic
get_value_and_text(double& value, Glib::ustring& text)Atk::Value
gobj()Atk::Valueinline
gobj() const Atk::Valueinline
gobj_copy() const Glib::ObjectBase
initialize(GObject *castitem)Glib::ObjectBaseprotected
initialize_move(GObject *castitem, Glib::ObjectBase *previous_wrapper)Glib::ObjectBaseprotected
Interface()Glib::Interface
Interface(Interface &&src) noexceptGlib::Interface
Interface(const Glib::Interface_Class &interface_class)Glib::Interface
Interface(GObject *castitem)Glib::Interface
Interface(const Interface &)=deleteGlib::Interface
notify_callbacks()sigc::trackable
ObjectBase(const ObjectBase &)=deleteGlib::ObjectBase
ObjectBase()Glib::ObjectBaseprotected
ObjectBase(const char *custom_type_name)Glib::ObjectBaseprotected
ObjectBase(const std::type_info &custom_type_info)Glib::ObjectBaseprotected
ObjectBase(ObjectBase &&src) noexceptGlib::ObjectBaseprotected
operator=(Value&& src) noexceptAtk::Value
Glib::Interface::operator=(Interface &&src) noexceptGlib::Interface
Glib::Interface::operator=(const Interface &)=deleteGlib::Interface
Glib::ObjectBase::operator=(const ObjectBase &)=deleteGlib::ObjectBase
Glib::ObjectBase::operator=(ObjectBase &&src) noexceptGlib::ObjectBaseprotected
sigc::trackable::operator=(const trackable &src)sigc::trackable
sigc::trackable::operator=(trackable &&src)sigc::trackable
reference() const Glib::ObjectBasevirtual
remove_destroy_notify_callback(void *data) const sigc::trackable
set_current_value(const Glib::ValueBase& value)Atk::Value
set_current_value_vfunc(const Glib::ValueBase& value)Atk::Valueprotectedvirtual
set_property(const Glib::ustring &property_name, const PropertyType &value)Glib::ObjectBase
set_property_value(const Glib::ustring &property_name, const Glib::ValueBase &value)Glib::ObjectBase
set_value(const gdouble new_value)Atk::Value
thaw_notify()Glib::ObjectBase
trackable() noexceptsigc::trackable
trackable(const trackable &src) noexceptsigc::trackable
trackable(trackable &&src)sigc::trackable
unreference() const Glib::ObjectBasevirtual
Value()Atk::Valueprotected
Value(Value&& src) noexceptAtk::Value
wrap(AtkValue* object, bool take_copy=false)Atk::Valuerelated
~Interface() noexceptGlib::Interfacevirtual
~ObjectBase() noexcept=0Glib::ObjectBaseprotectedpure virtual
~trackable()sigc::trackable
~Value() noexceptAtk::Valuevirtual
- - - - diff -Nru atkmm1.6-2.24.2/doc/reference/html/classes.html atkmm1.6-2.28.0/doc/reference/html/classes.html --- atkmm1.6-2.24.2/doc/reference/html/classes.html 2015-11-29 20:05:33.291311172 +0000 +++ atkmm1.6-2.28.0/doc/reference/html/classes.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,91 +0,0 @@ - - - - - - -atkmm: Class Index - - - - - - -
-
- - - - - - -
-
atkmm -  2.24.2 -
-
-
- - - - -
-
-
-
Class Index
-
-
-
A | C | D | E | H | I | L | N | O | R | S | T | V
- - - - - - - - - - - - - -
  A  
-
  E  
-
  N  
-
RelationSet (Atk)   
  V  
-
  S  
-
Action (Atk)   EditableText (Atk)   NoOpObject (Atk)   Value (Atk)   
Attribute (Atk)   
  H  
-
  O  
-
Selection (Atk)   
  h  
-
AttributeTraits (Atk)   StateSet (Atk)   
  C  
-
Hyperlink (Atk)   Object (Atk)   StreamableContent (Atk)   hash_load_check_resize_trigger_size_base   
Hypertext (Atk)   ObjectAccessible (Atk)   
  T  
-
  l  
-
Component (Atk)   
  I  
-
  R  
-
  D  
-
Table (Atk)   lu_counter_policy_base   
Image (Atk)   Range (Atk)   Text (Atk)   
Document (Atk)   Implementor (Atk)   Relation (Atk)   TextAttribute (Atk)   
-
A | C | D | E | H | I | L | N | O | R | S | T | V
-
- - - - diff -Nru atkmm1.6-2.24.2/doc/reference/html/classhash__load__check__resize__trigger__size__base.html atkmm1.6-2.28.0/doc/reference/html/classhash__load__check__resize__trigger__size__base.html --- atkmm1.6-2.24.2/doc/reference/html/classhash__load__check__resize__trigger__size__base.html 2015-11-29 20:05:33.291311172 +0000 +++ atkmm1.6-2.28.0/doc/reference/html/classhash__load__check__resize__trigger__size__base.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,68 +0,0 @@ - - - - - - -atkmm: hash_load_check_resize_trigger_size_base Class Reference - - - - - - -
-
- - - - - - -
-
atkmm -  2.24.2 -
-
-
- - - - -
-
-
-
hash_load_check_resize_trigger_size_base Class Reference
-
-
-
-Inheritance diagram for hash_load_check_resize_trigger_size_base:
-
-
Inheritance graph
- - -
[legend]
-
- - - - Binary files /tmp/tmpOzhFOD/5A0TTRaIcC/atkmm1.6-2.24.2/doc/reference/html/classhash__load__check__resize__trigger__size__base__inherit__graph.png and /tmp/tmpOzhFOD/Bg2TspT7RQ/atkmm1.6-2.28.0/doc/reference/html/classhash__load__check__resize__trigger__size__base__inherit__graph.png differ diff -Nru atkmm1.6-2.24.2/doc/reference/html/classlu__counter__policy__base.html atkmm1.6-2.28.0/doc/reference/html/classlu__counter__policy__base.html --- atkmm1.6-2.24.2/doc/reference/html/classlu__counter__policy__base.html 2015-11-29 20:05:33.315310716 +0000 +++ atkmm1.6-2.28.0/doc/reference/html/classlu__counter__policy__base.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,68 +0,0 @@ - - - - - - -atkmm: lu_counter_policy_base Class Reference - - - - - - -
-
- - - - - - -
-
atkmm -  2.24.2 -
-
-
- - - - -
-
-
-
lu_counter_policy_base Class Reference
-
-
-
-Inheritance diagram for lu_counter_policy_base:
-
-
Inheritance graph
- - -
[legend]
-
- - - - Binary files /tmp/tmpOzhFOD/5A0TTRaIcC/atkmm1.6-2.24.2/doc/reference/html/classlu__counter__policy__base__inherit__graph.png and /tmp/tmpOzhFOD/Bg2TspT7RQ/atkmm1.6-2.28.0/doc/reference/html/classlu__counter__policy__base__inherit__graph.png differ Binary files /tmp/tmpOzhFOD/5A0TTRaIcC/atkmm1.6-2.24.2/doc/reference/html/closed.png and /tmp/tmpOzhFOD/Bg2TspT7RQ/atkmm1.6-2.28.0/doc/reference/html/closed.png differ diff -Nru atkmm1.6-2.24.2/doc/reference/html/deprecated.html atkmm1.6-2.28.0/doc/reference/html/deprecated.html --- atkmm1.6-2.24.2/doc/reference/html/deprecated.html 2015-11-29 20:05:33.343310184 +0000 +++ atkmm1.6-2.28.0/doc/reference/html/deprecated.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,91 +0,0 @@ - - - - - - -atkmm: Deprecated List - - - - - - -
-
- - - - - - -
-
atkmm -  2.24.2 -
-
-
- - - -
-
-
-
Deprecated List
-
-
-
-
Member Atk::Component::add_focus_handler (AtkFocusHandler handler)
-
If you need to track when an object gains or lose the focus, use Atk::Object::signal_state_change() and check for focused notification instead.
-
Member Atk::Component::get_position (int& x, int& y, CoordType coord_type) const
-
Use get_extents() instead.
-
Member Atk::Component::get_size (int& width, int& height) const
-
Use get_extents() instead.
-
Member Atk::Component::remove_focus_handler (guint handler_id)
-
If you need to track when an object gains or lose the focus, use Atk::Object::signal_state_change() and check for focused notification instead.
-
Member Atk::Document::get_document ()
-
Document is already a representation of the document. Use it directly, or one of its children, as an instance of the DOM.
-
Member Atk::Document::get_document_type () const
-
Please use get_attribute() to ask for the document type if it applies.
-
Member Atk::Table::get_column_at_index (int index) const
-
This should not be used in newly-written code.
-
Member Atk::Table::get_index_at (int row, int column) const
-
Use get_at() instead.
-
Member Atk::Table::get_row_at_index (int index) const
-
This should not be used in newly-written code.
-
Member Atk::Text::get_text_after_offset (int offset, TextBoundary boundary_type, int& start_offset, int& end_offset) const
-
Use get_string_at_offset() instead.
-
Member Atk::Text::get_text_after_offset_vfunc (int offset, TextBoundary boundary_type, int& start_offset, int& end_offset) const
-
This virtual function is deprecated and it should not be overridden.
-
Member Atk::Text::get_text_at_offset (int offset, TextBoundary boundary_type, int& start_offset, int& end_offset) const
-
Use get_string_at_offset() instead.
-
Member Atk::Text::get_text_before_offset (int offset, TextBoundary boundary_type, int& start_offset, int& end_offset) const
-
Use get_string_at_offset() instead.
-
Member Atk::Text::get_text_before_offset_vfunc (int offset, TextBoundary boundary_type, int& start_offset, int& end_offset) const
-
This virtual function is deprecated and it should not be overridden.
-
Member Atk::Value::get_current_value (Glib::ValueBase& value) const
-
Use get_value_and_text() instead.
-
Member Atk::Value::get_maximum_value (Glib::ValueBase& value) const
-
Use get_range() instead.
-
Member Atk::Value::get_minimum_value (Glib::ValueBase& value) const
-
Use get_range() instead.
-
Member Atk::Value::set_current_value (const Glib::ValueBase& value)
-
Use set_value() instead.
-
-
- - - - diff -Nru atkmm1.6-2.24.2/doc/reference/html/dir_fb9196bee162e74bfedbd5f5874b618e.html atkmm1.6-2.28.0/doc/reference/html/dir_fb9196bee162e74bfedbd5f5874b618e.html --- atkmm1.6-2.24.2/doc/reference/html/dir_fb9196bee162e74bfedbd5f5874b618e.html 2015-11-29 20:05:33.347310109 +0000 +++ atkmm1.6-2.28.0/doc/reference/html/dir_fb9196bee162e74bfedbd5f5874b618e.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,103 +0,0 @@ - - - - - - -atkmm: atkmm Directory Reference - - - - - - -
-
- - - - - - -
-
atkmm -  2.24.2 -
-
-
- - - - -
-
-
-
atkmm Directory Reference
-
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

-Files

file  action.h
 
file  component.h
 
file  document.h
 
file  editabletext.h
 
 
file  hypertext.h
 
file  image.h
 
file  implementor.h
 
file  init.h
 
file  noopobject.h
 
file  object.h
 
file  objectaccessible.h
 
file  range.h
 
file  relation.h
 
file  relationset.h
 
file  selection.h
 
file  stateset.h
 
file  streamablecontent.h
 
file  table.h
 
file  text.h
 
file  value.h
 
-
- - - - Binary files /tmp/tmpOzhFOD/5A0TTRaIcC/atkmm1.6-2.24.2/doc/reference/html/doc.png and /tmp/tmpOzhFOD/Bg2TspT7RQ/atkmm1.6-2.28.0/doc/reference/html/doc.png differ diff -Nru atkmm1.6-2.24.2/doc/reference/html/doxygen.css atkmm1.6-2.28.0/doc/reference/html/doxygen.css --- atkmm1.6-2.24.2/doc/reference/html/doxygen.css 2015-11-29 20:05:32.483326483 +0000 +++ atkmm1.6-2.28.0/doc/reference/html/doxygen.css 1970-01-01 00:00:00.000000000 +0000 @@ -1,267 +0,0 @@ -/* GNOME C++ bindings Doxygen style */ - -/* This file is deprecated. - * In Doxyfile.in you should use - * HTML_EXTRA_STYLESHEET = "$(MMDOCTOOLDIR)/doxygen-extra.css" - * instead of - * HTML_STYLESHEET = "$(MMDOCTOOLDIR)/doxygen.css" - * See https://mail.gnome.org/archives/gtkmm-list/2014-August/msg00022.html - */ - -html, body { - background: #FFFFFF; - color: #222222; - margin: 0; -} - -body { - font: normal 90%/150% sans-serif; - padding: 1.5em; - min-width: 28em; -} - -table { - font-size: inherit; -} - -img { - border-style: none; -} - -address img { - vertical-align: middle; -} - -h1 { - font-size: 150%; - line-height: 120%; - text-align: center; -} - -h2 { - font-size: 120%; -} - -h3 { - font-size: 100%; -} - -h1 + h3 { - text-align: center; -} - -.navpath { - display: none; -} - -caption { - font-weight: bold; -} - -p, dl { - margin: 0.75em 0; -} - -.center { - text-align: center; -} - -div.qindex { - width: 100%; - line-height: 140%; - background-color: #E8EEF2; - border: 1px solid #84B0C7; - text-align: center; - margin: 0.2em; - padding: 0.2em; -} - -a { - color: #153788; - font-weight: normal; - text-decoration: none; -} - -.contents a:visited { - color: #1B77C5; -} - -a:hover { - text-decoration: underline; -} - -a.el, a.qindex { - font-weight: bold; -} - -dl.el { - margin-left: -1.5em; -} - -code, .fragment { - font-family: monospace, fixed; -} - -pre.fragment, div.fragment { - background-color: #EEEEFF; - border: 1px solid #AAAAFF; - padding: 0.5em; - margin: 0.375em 0.75em 0.375em 0.2em; -} - -div.fragment > pre.fragment { - border-style: none; - padding: 0; - margin: 0; -} - -div.line { - white-space: pre; -} - -div.ah { - background-color: #000000; - color: #FFFFFF; - font-weight: bold; - margin: 0.2em 0; -} - -.indexkey, .indexvalue { - background-color: #E8EEF2; - border: 1px solid #CCCCCC; - margin: 0.2em 0; - padding: 0.2em 0.75em; -} - -.indexkey { - font-weight: bold; -} -.memlist { - background-color: #F0F0F0; -} - -span.keyword { - color: #008000; -} - -span.keywordtype { - color: #604020; -} - -span.keywordflow { - color: #E08000; -} - -span.comment { - color: #800000; -} - -span.preprocessor { - color: #806020; -} - -span.stringliteral { - color: #002080; -} - -span.charliteral { - color: #008080; -} - -.tiny { - font-size: 80%; -} - -hr { - height: 0; - border: none; - border-top: 1px solid #666666; -} - -.mdescLeft, .mdescRight, .memItemLeft, .memItemRight, -.memTemplItemLeft, .memTemplItemRight, .memTemplParams { - background-color: #FAFAFA; - border: none; - margin: 0.375em; - padding: 0.125em 0 0 0.75em; -} - -.mdescLeft, .mdescRight { - padding: 0 0.75em 0.375em; - color: #555555; -} - -.memItemLeft, .memItemRight, .memTemplParams { - border-top: 1px solid #CCCCCC; -} - -.memTemplParams { - color: #606060; -} - -.memtemplate { - color: #606060; - font-size: 90%; - font-weight: normal; - margin-left: 0.2em; -} - -.memnav { - background-color: #E8EEF2; - border: 1px solid #84B0C7; - text-align: center; - margin: 0.2em 1em 0.2em 0; - padding: 0.2em; -} - -.memitem { - margin: 0.5em 0; - padding: 0; -} - -.memname { - white-space: nowrap; - font-weight: bold; - line-height: 120%; -} - -.memproto, .memdoc { - border: 1px solid #84B0C7; -} - -.memproto { - padding: 0; - background-color: #D5E1E8; - font-weight: bold; - -webkit-border-top-left-radius: 1ex; - -webkit-border-top-right-radius: 1ex; - -moz-border-radius-topleft: 1ex; - -moz-border-radius-topright: 1ex; -} - -.memdoc { - padding: 0.2em 0.5em; - background-color: #EEF3F5; - border-top-width: 0; - -webkit-border-bottom-left-radius: 1ex; - -webkit-border-bottom-right-radius: 1ex; - -moz-border-radius-bottomleft: 1ex; - -moz-border-radius-bottomright: 1ex; -} - -.paramkey { - text-align: right; -} - -.paramtype { - white-space: nowrap; -} - -.paramname { - color: #602020; - white-space: nowrap; -} - -.paramname em { - font-style: normal; -} Binary files /tmp/tmpOzhFOD/5A0TTRaIcC/atkmm1.6-2.24.2/doc/reference/html/doxygen.png and /tmp/tmpOzhFOD/Bg2TspT7RQ/atkmm1.6-2.28.0/doc/reference/html/doxygen.png differ diff -Nru atkmm1.6-2.24.2/doc/reference/html/dynsections.js atkmm1.6-2.28.0/doc/reference/html/dynsections.js --- atkmm1.6-2.24.2/doc/reference/html/dynsections.js 2015-11-29 20:05:32.467326786 +0000 +++ atkmm1.6-2.28.0/doc/reference/html/dynsections.js 1970-01-01 00:00:00.000000000 +0000 @@ -1,97 +0,0 @@ -function toggleVisibility(linkObj) -{ - var base = $(linkObj).attr('id'); - var summary = $('#'+base+'-summary'); - var content = $('#'+base+'-content'); - var trigger = $('#'+base+'-trigger'); - var src=$(trigger).attr('src'); - if (content.is(':visible')===true) { - content.hide(); - summary.show(); - $(linkObj).addClass('closed').removeClass('opened'); - $(trigger).attr('src',src.substring(0,src.length-8)+'closed.png'); - } else { - content.show(); - summary.hide(); - $(linkObj).removeClass('closed').addClass('opened'); - $(trigger).attr('src',src.substring(0,src.length-10)+'open.png'); - } - return false; -} - -function updateStripes() -{ - $('table.directory tr'). - removeClass('even').filter(':visible:even').addClass('even'); -} - -function toggleLevel(level) -{ - $('table.directory tr').each(function() { - var l = this.id.split('_').length-1; - var i = $('#img'+this.id.substring(3)); - var a = $('#arr'+this.id.substring(3)); - if (l - - - - - -atkmm: Class Members - - - - - - -
-
- - - - - - -
-
atkmm -  2.24.2 -
-
-
- - - - - - -
-
-
Here is a list of all class members with links to the classes they belong to:
- -

- c -

-
- - - - diff -Nru atkmm1.6-2.24.2/doc/reference/html/functions_d.html atkmm1.6-2.28.0/doc/reference/html/functions_d.html --- atkmm1.6-2.24.2/doc/reference/html/functions_d.html 2015-11-29 20:05:33.339310261 +0000 +++ atkmm1.6-2.28.0/doc/reference/html/functions_d.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,107 +0,0 @@ - - - - - - -atkmm: Class Members - - - - - - -
-
- - - - - - -
-
atkmm -  2.24.2 -
-
-
- - - - - - -
-
-
Here is a list of all class members with links to the classes they belong to:
- -

- d -

-
- - - - diff -Nru atkmm1.6-2.24.2/doc/reference/html/functions_e.html atkmm1.6-2.28.0/doc/reference/html/functions_e.html --- atkmm1.6-2.24.2/doc/reference/html/functions_e.html 2015-11-29 20:05:33.347310109 +0000 +++ atkmm1.6-2.28.0/doc/reference/html/functions_e.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,95 +0,0 @@ - - - - - - -atkmm: Class Members - - - - - - -
-
- - - - - - -
-
atkmm -  2.24.2 -
-
-
- - - - - - -
-
-
Here is a list of all class members with links to the classes they belong to:
- -

- e -

-
- - - - diff -Nru atkmm1.6-2.24.2/doc/reference/html/functions_f.html atkmm1.6-2.28.0/doc/reference/html/functions_f.html --- atkmm1.6-2.24.2/doc/reference/html/functions_f.html 2015-11-29 20:05:33.347310109 +0000 +++ atkmm1.6-2.28.0/doc/reference/html/functions_f.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,98 +0,0 @@ - - - - - - -atkmm: Class Members - - - - - - -
-
- - - - - - -
-
atkmm -  2.24.2 -
-
-
- - - - - - -
-
-
Here is a list of all class members with links to the classes they belong to:
- -

- f -

-
- - - - diff -Nru atkmm1.6-2.24.2/doc/reference/html/functions_func_c.html atkmm1.6-2.28.0/doc/reference/html/functions_func_c.html --- atkmm1.6-2.24.2/doc/reference/html/functions_func_c.html 2015-11-29 20:05:33.315310716 +0000 +++ atkmm1.6-2.28.0/doc/reference/html/functions_func_c.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,133 +0,0 @@ - - - - - - -atkmm: Class Members - Functions - - - - - - -
-
- - - - - - -
-
atkmm -  2.24.2 -
-
-
- - - - - - -
-
-  - -

- c -

-
- - - - diff -Nru atkmm1.6-2.24.2/doc/reference/html/functions_func_d.html atkmm1.6-2.28.0/doc/reference/html/functions_func_d.html --- atkmm1.6-2.24.2/doc/reference/html/functions_func_d.html 2015-11-29 20:05:33.347310109 +0000 +++ atkmm1.6-2.28.0/doc/reference/html/functions_func_d.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,107 +0,0 @@ - - - - - - -atkmm: Class Members - Functions - - - - - - -
-
- - - - - - -
-
atkmm -  2.24.2 -
-
-
- - - - - - -
-
-  - -

- d -

-
- - - - diff -Nru atkmm1.6-2.24.2/doc/reference/html/functions_func_e.html atkmm1.6-2.28.0/doc/reference/html/functions_func_e.html --- atkmm1.6-2.24.2/doc/reference/html/functions_func_e.html 2015-11-29 20:05:33.311310793 +0000 +++ atkmm1.6-2.28.0/doc/reference/html/functions_func_e.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,95 +0,0 @@ - - - - - - -atkmm: Class Members - Functions - - - - - - -
-
- - - - - - -
-
atkmm -  2.24.2 -
-
-
- - - - - - -
-
-  - -

- e -

-
- - - - diff -Nru atkmm1.6-2.24.2/doc/reference/html/functions_func_f.html atkmm1.6-2.28.0/doc/reference/html/functions_func_f.html --- atkmm1.6-2.24.2/doc/reference/html/functions_func_f.html 2015-11-29 20:05:33.283311324 +0000 +++ atkmm1.6-2.28.0/doc/reference/html/functions_func_f.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,98 +0,0 @@ - - - - - - -atkmm: Class Members - Functions - - - - - - -
-
- - - - - - -
-
atkmm -  2.24.2 -
-
-
- - - - - - -
-
-  - -

- f -

-
- - - - diff -Nru atkmm1.6-2.24.2/doc/reference/html/functions_func_g.html atkmm1.6-2.28.0/doc/reference/html/functions_func_g.html --- atkmm1.6-2.24.2/doc/reference/html/functions_func_g.html 2015-11-29 20:05:33.287311249 +0000 +++ atkmm1.6-2.28.0/doc/reference/html/functions_func_g.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,581 +0,0 @@ - - - - - - -atkmm: Class Members - Functions - - - - - - -
-
- - - - - - -
-
atkmm -  2.24.2 -
-
-
- - - - - - -
-
-  - -

- g -

-
- - - - diff -Nru atkmm1.6-2.24.2/doc/reference/html/functions_func_h.html atkmm1.6-2.28.0/doc/reference/html/functions_func_h.html --- atkmm1.6-2.24.2/doc/reference/html/functions_func_h.html 2015-11-29 20:05:33.315310716 +0000 +++ atkmm1.6-2.28.0/doc/reference/html/functions_func_h.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,98 +0,0 @@ - - - - - - -atkmm: Class Members - Functions - - - - - - -
-
- - - - - - -
-
atkmm -  2.24.2 -
-
-
- - - - - - -
-
-  - -

- h -

-
- - - - diff -Nru atkmm1.6-2.24.2/doc/reference/html/functions_func_~.html atkmm1.6-2.28.0/doc/reference/html/functions_func_~.html --- atkmm1.6-2.24.2/doc/reference/html/functions_func_~.html 2015-11-29 20:05:33.347310109 +0000 +++ atkmm1.6-2.28.0/doc/reference/html/functions_func_~.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,155 +0,0 @@ - - - - - - -atkmm: Class Members - Functions - - - - - - -
-
- - - - - - -
-
atkmm -  2.24.2 -
-
-
- - - - - - -
-
-  - -

- ~ -

-
- - - - diff -Nru atkmm1.6-2.24.2/doc/reference/html/functions_func.html atkmm1.6-2.28.0/doc/reference/html/functions_func.html --- atkmm1.6-2.24.2/doc/reference/html/functions_func.html 2015-11-29 20:05:33.307310868 +0000 +++ atkmm1.6-2.28.0/doc/reference/html/functions_func.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,156 +0,0 @@ - - - - - - -atkmm: Class Members - Functions - - - - - - -
-
- - - - - - -
-
atkmm -  2.24.2 -
-
-
- - - - - - -
-
-  - -

- a -

-
- - - - diff -Nru atkmm1.6-2.24.2/doc/reference/html/functions_func_i.html atkmm1.6-2.28.0/doc/reference/html/functions_func_i.html --- atkmm1.6-2.24.2/doc/reference/html/functions_func_i.html 2015-11-29 20:05:33.287311249 +0000 +++ atkmm1.6-2.28.0/doc/reference/html/functions_func_i.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,143 +0,0 @@ - - - - - - -atkmm: Class Members - Functions - - - - - - -
-
- - - - - - -
-
atkmm -  2.24.2 -
-
-
- - - - - - -
-
-  - -

- i -

-
- - - - diff -Nru atkmm1.6-2.24.2/doc/reference/html/functions_func_l.html atkmm1.6-2.28.0/doc/reference/html/functions_func_l.html --- atkmm1.6-2.24.2/doc/reference/html/functions_func_l.html 2015-11-29 20:05:33.347310109 +0000 +++ atkmm1.6-2.28.0/doc/reference/html/functions_func_l.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,95 +0,0 @@ - - - - - - -atkmm: Class Members - Functions - - - - - - -
-
- - - - - - -
-
atkmm -  2.24.2 -
-
-
- - - - - - -
-
-  - -

- l -

-
- - - - diff -Nru atkmm1.6-2.24.2/doc/reference/html/functions_func_n.html atkmm1.6-2.28.0/doc/reference/html/functions_func_n.html --- atkmm1.6-2.24.2/doc/reference/html/functions_func_n.html 2015-11-29 20:05:33.311310793 +0000 +++ atkmm1.6-2.28.0/doc/reference/html/functions_func_n.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,98 +0,0 @@ - - - - - - -atkmm: Class Members - Functions - - - - - - -
-
- - - - - - -
-
atkmm -  2.24.2 -
-
-
- - - - - - -
-
-  - -

- n -

-
- - - - diff -Nru atkmm1.6-2.24.2/doc/reference/html/functions_func_o.html atkmm1.6-2.28.0/doc/reference/html/functions_func_o.html --- atkmm1.6-2.24.2/doc/reference/html/functions_func_o.html 2015-11-29 20:05:33.339310261 +0000 +++ atkmm1.6-2.28.0/doc/reference/html/functions_func_o.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,187 +0,0 @@ - - - - - - -atkmm: Class Members - Functions - - - - - - -
-
- - - - - - -
-
atkmm -  2.24.2 -
-
-
- - - - - - -
-
-  - -

- o -

-
- - - - diff -Nru atkmm1.6-2.24.2/doc/reference/html/functions_func_p.html atkmm1.6-2.28.0/doc/reference/html/functions_func_p.html --- atkmm1.6-2.24.2/doc/reference/html/functions_func_p.html 2015-11-29 20:05:33.327310488 +0000 +++ atkmm1.6-2.28.0/doc/reference/html/functions_func_p.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,149 +0,0 @@ - - - - - - -atkmm: Class Members - Functions - - - - - - -
-
- - - - - - -
-
atkmm -  2.24.2 -
-
-
- - - - - - -
-
-  - -

- p -

-
- - - - diff -Nru atkmm1.6-2.24.2/doc/reference/html/functions_func_r.html atkmm1.6-2.28.0/doc/reference/html/functions_func_r.html --- atkmm1.6-2.24.2/doc/reference/html/functions_func_r.html 2015-11-29 20:05:33.335310336 +0000 +++ atkmm1.6-2.28.0/doc/reference/html/functions_func_r.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,139 +0,0 @@ - - - - - - -atkmm: Class Members - Functions - - - - - - -
-
- - - - - - -
-
atkmm -  2.24.2 -
-
-
- - - - - - -
-
-  - -

- r -

-
- - - - diff -Nru atkmm1.6-2.24.2/doc/reference/html/functions_func_s.html atkmm1.6-2.28.0/doc/reference/html/functions_func_s.html --- atkmm1.6-2.24.2/doc/reference/html/functions_func_s.html 2015-11-29 20:05:33.283311324 +0000 +++ atkmm1.6-2.28.0/doc/reference/html/functions_func_s.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,292 +0,0 @@ - - - - - - -atkmm: Class Members - Functions - - - - - - -
-
- - - - - - -
-
atkmm -  2.24.2 -
-
-
- - - - - - -
-
-  - -

- s -

-
- - - - diff -Nru atkmm1.6-2.24.2/doc/reference/html/functions_func_t.html atkmm1.6-2.28.0/doc/reference/html/functions_func_t.html --- atkmm1.6-2.24.2/doc/reference/html/functions_func_t.html 2015-11-29 20:05:33.335310336 +0000 +++ atkmm1.6-2.28.0/doc/reference/html/functions_func_t.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,107 +0,0 @@ - - - - - - -atkmm: Class Members - Functions - - - - - - -
-
- - - - - - -
-
atkmm -  2.24.2 -
-
-
- - - - - - -
-
-  - -

- t -

-
- - - - diff -Nru atkmm1.6-2.24.2/doc/reference/html/functions_func_v.html atkmm1.6-2.28.0/doc/reference/html/functions_func_v.html --- atkmm1.6-2.24.2/doc/reference/html/functions_func_v.html 2015-11-29 20:05:33.347310109 +0000 +++ atkmm1.6-2.28.0/doc/reference/html/functions_func_v.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,95 +0,0 @@ - - - - - - -atkmm: Class Members - Functions - - - - - - -
-
- - - - - - -
-
atkmm -  2.24.2 -
-
-
- - - - - - -
-
-  - -

- v -

-
- - - - diff -Nru atkmm1.6-2.24.2/doc/reference/html/functions_func_w.html atkmm1.6-2.28.0/doc/reference/html/functions_func_w.html --- atkmm1.6-2.24.2/doc/reference/html/functions_func_w.html 2015-11-29 20:05:33.295311097 +0000 +++ atkmm1.6-2.28.0/doc/reference/html/functions_func_w.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,114 +0,0 @@ - - - - - - -atkmm: Class Members - Functions - - - - - - -
-
- - - - - - -
-
atkmm -  2.24.2 -
-
-
- - - - - - -
- - - - - diff -Nru atkmm1.6-2.24.2/doc/reference/html/functions_func_x.html atkmm1.6-2.28.0/doc/reference/html/functions_func_x.html --- atkmm1.6-2.24.2/doc/reference/html/functions_func_x.html 2015-11-29 20:05:33.339310261 +0000 +++ atkmm1.6-2.28.0/doc/reference/html/functions_func_x.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,95 +0,0 @@ - - - - - - -atkmm: Class Members - Functions - - - - - - -
-
- - - - - - -
-
atkmm -  2.24.2 -
-
-
- - - - - - -
-
-  - -

- x -

-
- - - - diff -Nru atkmm1.6-2.24.2/doc/reference/html/functions_g.html atkmm1.6-2.28.0/doc/reference/html/functions_g.html --- atkmm1.6-2.24.2/doc/reference/html/functions_g.html 2015-11-29 20:05:33.307310868 +0000 +++ atkmm1.6-2.28.0/doc/reference/html/functions_g.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,585 +0,0 @@ - - - - - - -atkmm: Class Members - - - - - - -
-
- - - - - - -
-
atkmm -  2.24.2 -
-
-
- - - - - - -
-
-
Here is a list of all class members with links to the classes they belong to:
- -

- g -

-
- - - - diff -Nru atkmm1.6-2.24.2/doc/reference/html/functions_h.html atkmm1.6-2.28.0/doc/reference/html/functions_h.html --- atkmm1.6-2.24.2/doc/reference/html/functions_h.html 2015-11-29 20:05:33.279311401 +0000 +++ atkmm1.6-2.28.0/doc/reference/html/functions_h.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,98 +0,0 @@ - - - - - - -atkmm: Class Members - - - - - - -
-
- - - - - - -
-
atkmm -  2.24.2 -
-
-
- - - - - - -
-
-
Here is a list of all class members with links to the classes they belong to:
- -

- h -

-
- - - - diff -Nru atkmm1.6-2.24.2/doc/reference/html/functions_~.html atkmm1.6-2.28.0/doc/reference/html/functions_~.html --- atkmm1.6-2.24.2/doc/reference/html/functions_~.html 2015-11-29 20:05:33.323310564 +0000 +++ atkmm1.6-2.28.0/doc/reference/html/functions_~.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,155 +0,0 @@ - - - - - - -atkmm: Class Members - - - - - - -
-
- - - - - - -
-
atkmm -  2.24.2 -
-
-
- - - - - - -
-
-
Here is a list of all class members with links to the classes they belong to:
- -

- ~ -

-
- - - - diff -Nru atkmm1.6-2.24.2/doc/reference/html/functions.html atkmm1.6-2.28.0/doc/reference/html/functions.html --- atkmm1.6-2.24.2/doc/reference/html/functions.html 2015-11-29 20:05:33.339310261 +0000 +++ atkmm1.6-2.28.0/doc/reference/html/functions.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,156 +0,0 @@ - - - - - - -atkmm: Class Members - - - - - - -
-
- - - - - - -
-
atkmm -  2.24.2 -
-
-
- - - - - - -
-
-
Here is a list of all class members with links to the classes they belong to:
- -

- a -

-
- - - - diff -Nru atkmm1.6-2.24.2/doc/reference/html/functions_i.html atkmm1.6-2.28.0/doc/reference/html/functions_i.html --- atkmm1.6-2.24.2/doc/reference/html/functions_i.html 2015-11-29 20:05:33.339310261 +0000 +++ atkmm1.6-2.28.0/doc/reference/html/functions_i.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,143 +0,0 @@ - - - - - - -atkmm: Class Members - - - - - - -
-
- - - - - - -
-
atkmm -  2.24.2 -
-
-
- - - - - - -
-
-
Here is a list of all class members with links to the classes they belong to:
- -

- i -

-
- - - - diff -Nru atkmm1.6-2.24.2/doc/reference/html/functions_l.html atkmm1.6-2.28.0/doc/reference/html/functions_l.html --- atkmm1.6-2.24.2/doc/reference/html/functions_l.html 2015-11-29 20:05:33.291311172 +0000 +++ atkmm1.6-2.28.0/doc/reference/html/functions_l.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,95 +0,0 @@ - - - - - - -atkmm: Class Members - - - - - - -
-
- - - - - - -
-
atkmm -  2.24.2 -
-
-
- - - - - - -
-
-
Here is a list of all class members with links to the classes they belong to:
- -

- l -

-
- - - - diff -Nru atkmm1.6-2.24.2/doc/reference/html/functions_n.html atkmm1.6-2.28.0/doc/reference/html/functions_n.html --- atkmm1.6-2.24.2/doc/reference/html/functions_n.html 2015-11-29 20:05:33.315310716 +0000 +++ atkmm1.6-2.28.0/doc/reference/html/functions_n.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,98 +0,0 @@ - - - - - - -atkmm: Class Members - - - - - - -
-
- - - - - - -
-
atkmm -  2.24.2 -
-
-
- - - - - - -
-
-
Here is a list of all class members with links to the classes they belong to:
- -

- n -

-
- - - - diff -Nru atkmm1.6-2.24.2/doc/reference/html/functions_o.html atkmm1.6-2.28.0/doc/reference/html/functions_o.html --- atkmm1.6-2.24.2/doc/reference/html/functions_o.html 2015-11-29 20:05:33.343310184 +0000 +++ atkmm1.6-2.28.0/doc/reference/html/functions_o.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,187 +0,0 @@ - - - - - - -atkmm: Class Members - - - - - - -
-
- - - - - - -
-
atkmm -  2.24.2 -
-
-
- - - - - - -
-
-
Here is a list of all class members with links to the classes they belong to:
- -

- o -

-
- - - - diff -Nru atkmm1.6-2.24.2/doc/reference/html/functions_p.html atkmm1.6-2.28.0/doc/reference/html/functions_p.html --- atkmm1.6-2.24.2/doc/reference/html/functions_p.html 2015-11-29 20:05:33.323310564 +0000 +++ atkmm1.6-2.28.0/doc/reference/html/functions_p.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,149 +0,0 @@ - - - - - - -atkmm: Class Members - - - - - - -
-
- - - - - - -
-
atkmm -  2.24.2 -
-
-
- - - - - - -
-
-
Here is a list of all class members with links to the classes they belong to:
- -

- p -

-
- - - - diff -Nru atkmm1.6-2.24.2/doc/reference/html/functions_r.html atkmm1.6-2.28.0/doc/reference/html/functions_r.html --- atkmm1.6-2.24.2/doc/reference/html/functions_r.html 2015-11-29 20:05:33.303310945 +0000 +++ atkmm1.6-2.28.0/doc/reference/html/functions_r.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,142 +0,0 @@ - - - - - - -atkmm: Class Members - - - - - - -
-
- - - - - - -
-
atkmm -  2.24.2 -
-
-
- - - - - - -
-
-
Here is a list of all class members with links to the classes they belong to:
- -

- r -

-
- - - - diff -Nru atkmm1.6-2.24.2/doc/reference/html/functions_s.html atkmm1.6-2.28.0/doc/reference/html/functions_s.html --- atkmm1.6-2.24.2/doc/reference/html/functions_s.html 2015-11-29 20:05:33.355309957 +0000 +++ atkmm1.6-2.28.0/doc/reference/html/functions_s.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,292 +0,0 @@ - - - - - - -atkmm: Class Members - - - - - - -
-
- - - - - - -
-
atkmm -  2.24.2 -
-
-
- - - - - - -
-
-
Here is a list of all class members with links to the classes they belong to:
- -

- s -

-
- - - - diff -Nru atkmm1.6-2.24.2/doc/reference/html/functions_t.html atkmm1.6-2.28.0/doc/reference/html/functions_t.html --- atkmm1.6-2.24.2/doc/reference/html/functions_t.html 2015-11-29 20:05:33.311310793 +0000 +++ atkmm1.6-2.28.0/doc/reference/html/functions_t.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,107 +0,0 @@ - - - - - - -atkmm: Class Members - - - - - - -
-
- - - - - - -
-
atkmm -  2.24.2 -
-
-
- - - - - - -
-
-
Here is a list of all class members with links to the classes they belong to:
- -

- t -

-
- - - - diff -Nru atkmm1.6-2.24.2/doc/reference/html/functions_type.html atkmm1.6-2.28.0/doc/reference/html/functions_type.html --- atkmm1.6-2.24.2/doc/reference/html/functions_type.html 2015-11-29 20:05:33.311310793 +0000 +++ atkmm1.6-2.28.0/doc/reference/html/functions_type.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,79 +0,0 @@ - - - - - - -atkmm: Class Members - Typedefs - - - - - - -
-
- - - - - - -
-
atkmm -  2.24.2 -
-
-
- - - - - -
-
-
- - - - diff -Nru atkmm1.6-2.24.2/doc/reference/html/functions_vars.html atkmm1.6-2.28.0/doc/reference/html/functions_vars.html --- atkmm1.6-2.24.2/doc/reference/html/functions_vars.html 2015-11-29 20:05:33.303310945 +0000 +++ atkmm1.6-2.28.0/doc/reference/html/functions_vars.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,71 +0,0 @@ - - - - - - -atkmm: Class Members - Variables - - - - - - -
-
- - - - - - -
-
atkmm -  2.24.2 -
-
-
- - - - - -
-
-
- - - - diff -Nru atkmm1.6-2.24.2/doc/reference/html/functions_v.html atkmm1.6-2.28.0/doc/reference/html/functions_v.html --- atkmm1.6-2.24.2/doc/reference/html/functions_v.html 2015-11-29 20:05:33.303310945 +0000 +++ atkmm1.6-2.28.0/doc/reference/html/functions_v.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,95 +0,0 @@ - - - - - - -atkmm: Class Members - - - - - - -
-
- - - - - - -
-
atkmm -  2.24.2 -
-
-
- - - - - - -
-
-
Here is a list of all class members with links to the classes they belong to:
- -

- v -

-
- - - - diff -Nru atkmm1.6-2.24.2/doc/reference/html/functions_w.html atkmm1.6-2.28.0/doc/reference/html/functions_w.html --- atkmm1.6-2.24.2/doc/reference/html/functions_w.html 2015-11-29 20:05:33.347310109 +0000 +++ atkmm1.6-2.28.0/doc/reference/html/functions_w.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,114 +0,0 @@ - - - - - - -atkmm: Class Members - - - - - - -
-
- - - - - - -
-
atkmm -  2.24.2 -
-
-
- - - - - - -
-
-
Here is a list of all class members with links to the classes they belong to:
- -

- w -

-
- - - - diff -Nru atkmm1.6-2.24.2/doc/reference/html/functions_x.html atkmm1.6-2.28.0/doc/reference/html/functions_x.html --- atkmm1.6-2.24.2/doc/reference/html/functions_x.html 2015-11-29 20:05:33.311310793 +0000 +++ atkmm1.6-2.28.0/doc/reference/html/functions_x.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,95 +0,0 @@ - - - - - - -atkmm: Class Members - - - - - - -
-
- - - - - - -
-
atkmm -  2.24.2 -
-
-
- - - - - - -
-
-
Here is a list of all class members with links to the classes they belong to:
- -

- x -

-
- - - - diff -Nru atkmm1.6-2.24.2/doc/reference/html/graph_legend.html atkmm1.6-2.28.0/doc/reference/html/graph_legend.html --- atkmm1.6-2.24.2/doc/reference/html/graph_legend.html 2015-11-29 20:05:33.339310261 +0000 +++ atkmm1.6-2.28.0/doc/reference/html/graph_legend.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,116 +0,0 @@ - - - - - - -atkmm: Graph Legend - - - - - - -
-
- - - - - - -
-
atkmm -  2.24.2 -
-
-
- - - -
-
-
-
Graph Legend
-
-
-

This page explains how to interpret the graphs that are generated by doxygen.

-

Consider the following example:

1 /*! Invisible class because of truncation */
-
2 class Invisible { };
-
3 
-
4 /*! Truncated class, inheritance relation is hidden */
-
5 class Truncated : public Invisible { };
-
6 
-
7 /* Class not documented with doxygen comments */
-
8 class Undocumented { };
-
9 
-
10 /*! Class that is inherited using public inheritance */
-
11 class PublicBase : public Truncated { };
-
12 
-
13 /*! A template class */
-
14 template<class T> class Templ { };
-
15 
-
16 /*! Class that is inherited using protected inheritance */
-
17 class ProtectedBase { };
-
18 
-
19 /*! Class that is inherited using private inheritance */
-
20 class PrivateBase { };
-
21 
-
22 /*! Class that is used by the Inherited class */
-
23 class Used { };
-
24 
-
25 /*! Super class that inherits a number of other classes */
-
26 class Inherited : public PublicBase,
-
27  protected ProtectedBase,
-
28  private PrivateBase,
-
29  public Undocumented,
-
30  public Templ<int>
-
31 {
-
32  private:
-
33  Used *m_usedClass;
-
34 };
-

This will result in the following graph:

-
- -
-

The boxes in the above graph have the following meaning:

-
    -
  • -A filled gray box represents the struct or class for which the graph is generated.
  • -
  • -A box with a black border denotes a documented struct or class.
  • -
  • -A box with a grey border denotes an undocumented struct or class.
  • -
  • -A box with a red border denotes a documented struct or class forwhich not all inheritance/containment relations are shown. A graph is truncated if it does not fit within the specified boundaries.
  • -
-

The arrows have the following meaning:

-
    -
  • -A dark blue arrow is used to visualize a public inheritance relation between two classes.
  • -
  • -A dark green arrow is used for protected inheritance.
  • -
  • -A dark red arrow is used for private inheritance.
  • -
  • -A purple dashed arrow is used if a class is contained or used by another class. The arrow is labeled with the variable(s) through which the pointed class or struct is accessible.
  • -
  • -A 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.
  • -
-
- - - - Binary files /tmp/tmpOzhFOD/5A0TTRaIcC/atkmm1.6-2.24.2/doc/reference/html/graph_legend.png and /tmp/tmpOzhFOD/Bg2TspT7RQ/atkmm1.6-2.28.0/doc/reference/html/graph_legend.png differ diff -Nru atkmm1.6-2.24.2/doc/reference/html/group__atkmmEnums.html atkmm1.6-2.28.0/doc/reference/html/group__atkmmEnums.html --- atkmm1.6-2.24.2/doc/reference/html/group__atkmmEnums.html 2015-11-29 20:05:33.339310261 +0000 +++ atkmm1.6-2.28.0/doc/reference/html/group__atkmmEnums.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,1285 +0,0 @@ - - - - - - -atkmm: atkmm Enums and Flags - - - - - - -
-
- - - - - - -
-
atkmm -  2.24.2 -
-
-
- - - -
-
- -
-
atkmm Enums and Flags
-
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - -

-Enumerations

enum  Atk::Role {
-  Atk::ROLE_INVALID, -
-  Atk::ROLE_ACCEL_LABEL, -
-  Atk::ROLE_ALERT, -
-  Atk::ROLE_ANIMATION, -
-  Atk::ROLE_ARROW, -
-  Atk::ROLE_CALENDAR, -
-  Atk::ROLE_CANVAS, -
-  Atk::ROLE_CHECK_BOX, -
-  Atk::ROLE_CHECK_MENU_ITEM, -
-  Atk::ROLE_COLOR_CHOOSER, -
-  Atk::ROLE_COLUMN_HEADER, -
-  Atk::ROLE_COMBO_BOX, -
-  Atk::ROLE_DATE_EDITOR, -
-  Atk::ROLE_DESKTOP_ICON, -
-  Atk::ROLE_DESKTOP_FRAME, -
-  Atk::ROLE_DIAL, -
-  Atk::ROLE_DIALOG, -
-  Atk::ROLE_DIRECTORY_PANE, -
-  Atk::ROLE_DRAWING_AREA, -
-  Atk::ROLE_FILE_CHOOSER, -
-  Atk::ROLE_FILLER, -
-  Atk::ROLE_FONT_CHOOSER, -
-  Atk::ROLE_FRAME, -
-  Atk::ROLE_GLASS_PANE, -
-  Atk::ROLE_HTML_CONTAINER, -
-  Atk::ROLE_ICON, -
-  Atk::ROLE_IMAGE, -
-  Atk::ROLE_INTERNAL_FRAME, -
-  Atk::ROLE_LABEL, -
-  Atk::ROLE_LAYERED_PANE, -
-  Atk::ROLE_LIST, -
-  Atk::ROLE_LIST_ITEM, -
-  Atk::ROLE_MENU, -
-  Atk::ROLE_MENU_BAR, -
-  Atk::ROLE_MENU_ITEM, -
-  Atk::ROLE_OPTION_PANE, -
-  Atk::ROLE_PAGE_TAB, -
-  Atk::ROLE_PAGE_TAB_LIST, -
-  Atk::ROLE_PANEL, -
-  Atk::ROLE_PASSWORD_TEXT, -
-  Atk::ROLE_POPUP_MENU, -
-  Atk::ROLE_PROGRESS_BAR, -
-  Atk::ROLE_PUSH_BUTTON, -
-  Atk::ROLE_RADIO_BUTTON, -
-  Atk::ROLE_RADIO_MENU_ITEM, -
-  Atk::ROLE_ROOT_PANE, -
-  Atk::ROLE_ROW_HEADER, -
-  Atk::ROLE_SCROLL_BAR, -
-  Atk::ROLE_SCROLL_PANE, -
-  Atk::ROLE_SEPARATOR, -
-  Atk::ROLE_SLIDER, -
-  Atk::ROLE_SPLIT_PANE, -
-  Atk::ROLE_SPIN_BUTTON, -
-  Atk::ROLE_STATUSBAR, -
-  Atk::ROLE_TABLE, -
-  Atk::ROLE_TABLE_CELL, -
-  Atk::ROLE_TABLE_COLUMN_HEADER, -
-  Atk::ROLE_TABLE_ROW_HEADER, -
-  Atk::ROLE_TEAR_OFF_MENU_ITEM, -
-  Atk::ROLE_TERMINAL, -
-  Atk::ROLE_TEXT, -
-  Atk::ROLE_TOGGLE_BUTTON, -
-  Atk::ROLE_TOOL_BAR, -
-  Atk::ROLE_TOOL_TIP, -
-  Atk::ROLE_TREE, -
-  Atk::ROLE_TREE_TABLE, -
-  Atk::ROLE_UNKNOWN, -
-  Atk::ROLE_VIEWPORT, -
-  Atk::ROLE_WINDOW, -
-  Atk::ROLE_HEADER, -
-  Atk::ROLE_FOOTER, -
-  Atk::ROLE_PARAGRAPH, -
-  Atk::ROLE_RULER, -
-  Atk::ROLE_APPLICATION, -
-  Atk::ROLE_AUTOCOMPLETE, -
-  Atk::ROLE_EDITBAR, -
-  Atk::ROLE_EMBEDDED, -
-  Atk::ROLE_ENTRY, -
-  Atk::ROLE_CHART, -
-  Atk::ROLE_CAPTION, -
-  Atk::ROLE_DOCUMENT_FRAME, -
-  Atk::ROLE_HEADING, -
-  Atk::ROLE_PAGE, -
-  Atk::ROLE_SECTION, -
-  Atk::ROLE_REDUNDANT_OBJECT, -
-  Atk::ROLE_FORM, -
-  Atk::ROLE_LINK, -
-  Atk::ROLE_INPUT_METHOD_WINDOW, -
-  Atk::ROLE_TABLE_ROW, -
-  Atk::ROLE_TREE_ITEM, -
-  Atk::ROLE_DOCUMENT_SPREADSHEET, -
-  Atk::ROLE_DOCUMENT_PRESENTATION, -
-  Atk::ROLE_DOCUMENT_TEXT, -
-  Atk::ROLE_DOCUMENT_WEB, -
-  Atk::ROLE_DOCUMENT_EMAIL, -
-  Atk::ROLE_COMMENT, -
-  Atk::ROLE_LIST_BOX, -
-  Atk::ROLE_GROUPING, -
-  Atk::ROLE_IMAGE_MAP, -
-  Atk::ROLE_NOTIFICATION, -
-  Atk::ROLE_INFO_BAR, -
-  Atk::ROLE_LEVEL_BAR, -
-  Atk::ROLE_TITLE_BAR, -
-  Atk::ROLE_BLOCK_QUOTE, -
-  Atk::ROLE_AUDIO, -
-  Atk::ROLE_VIDEO, -
-  Atk::ROLE_DEFINITION, -
-  Atk::ROLE_ARTICLE, -
-  Atk::ROLE_LANDMARK, -
-  Atk::ROLE_LOG, -
-  Atk::ROLE_MARQUEE, -
-  Atk::ROLE_MATH, -
-  Atk::ROLE_RATING, -
-  Atk::ROLE_TIMER, -
-  Atk::ROLE_DESCRIPTION_LIST, -
-  Atk::ROLE_DESCRIPTION_TERM, -
-  Atk::ROLE_DESCRIPTION_VALUE, -
-  Atk::ROLE_STATIC, -
-  Atk::ROLE_MATH_FRACTION, -
-  Atk::ROLE_MATH_ROOT, -
-  Atk::ROLE_SUBSCRIPT, -
-  Atk::ROLE_SUPERSCRIPT, -
-  Atk::ROLE_LAST_DEFINED -
- }
 
enum  Atk::StateType {
-  Atk::STATE_INVALID, -
-  Atk::STATE_ACTIVE, -
-  Atk::STATE_ARMED, -
-  Atk::STATE_BUSY, -
-  Atk::STATE_CHECKED, -
-  Atk::STATE_DEFUNCT, -
-  Atk::STATE_EDITABLE, -
-  Atk::STATE_ENABLED, -
-  Atk::STATE_EXPANDABLE, -
-  Atk::STATE_EXPANDED, -
-  Atk::STATE_FOCUSABLE, -
-  Atk::STATE_FOCUSED, -
-  Atk::STATE_HORIZONTAL, -
-  Atk::STATE_ICONIFIED, -
-  Atk::STATE_MODAL, -
-  Atk::STATE_MULTI_LINE, -
-  Atk::STATE_MULTISELECTABLE, -
-  Atk::STATE_OPAQUE, -
-  Atk::STATE_PRESSED, -
-  Atk::STATE_RESIZABLE, -
-  Atk::STATE_SELECTABLE, -
-  Atk::STATE_SELECTED, -
-  Atk::STATE_SENSITIVE, -
-  Atk::STATE_SHOWING, -
-  Atk::STATE_SINGLE_LINE, -
-  Atk::STATE_STALE, -
-  Atk::STATE_TRANSIENT, -
-  Atk::STATE_VERTICAL, -
-  Atk::STATE_VISIBLE, -
-  Atk::STATE_MANAGES_DESCENDANTS, -
-  Atk::STATE_INDETERMINATE, -
-  Atk::STATE_TRUNCATED, -
-  Atk::STATE_REQUIRED, -
-  Atk::STATE_INVALID_ENTRY, -
-  Atk::STATE_SUPPORTS_AUTOCOMPLETION, -
-  Atk::STATE_SELECTABLE_TEXT, -
-  Atk::STATE_DEFAULT, -
-  Atk::STATE_ANIMATED, -
-  Atk::STATE_VISITED, -
-  Atk::STATE_CHECKABLE, -
-  Atk::STATE_HAS_POPUP, -
-  Atk::STATE_HAS_TOOLTIP, -
-  Atk::STATE_READ_ONLY, -
-  Atk::STATE_LAST_DEFINED -
- }
 
enum  Atk::CoordType {
-  Atk::XY_SCREEN, -
-  Atk::XY_WINDOW -
- }
 Specifies how xy coordinates are to be interpreted. More...
 
enum  Atk::Layer {
-  Atk::LAYER_INVALID, -
-  Atk::LAYER_BACKGROUND, -
-  Atk::LAYER_CANVAS, -
-  Atk::LAYER_WIDGET, -
-  Atk::LAYER_MDI, -
-  Atk::LAYER_POPUP, -
-  Atk::LAYER_OVERLAY, -
-  Atk::LAYER_WINDOW -
- }
 Describes the layer of a component. More...
 
enum  Atk::RelationType {
-  Atk::RELATION_NULL, -
-  Atk::RELATION_CONTROLLED_BY, -
-  Atk::RELATION_CONTROLLER_FOR, -
-  Atk::RELATION_LABEL_FOR, -
-  Atk::RELATION_LABELLED_BY, -
-  Atk::RELATION_MEMBER_OF, -
-  Atk::RELATION_NODE_CHILD_OF, -
-  Atk::RELATION_FLOWS_TO, -
-  Atk::RELATION_FLOWS_FROM, -
-  Atk::RELATION_SUBWINDOW_OF, -
-  Atk::RELATION_EMBEDS, -
-  Atk::RELATION_EMBEDDED_BY, -
-  Atk::RELATION_POPUP_FOR, -
-  Atk::RELATION_PARENT_WINDOW_OF, -
-  Atk::RELATION_DESCRIBED_BY, -
-  Atk::RELATION_DESCRIPTION_FOR, -
-  Atk::RELATION_NODE_PARENT_OF, -
-  Atk::RELATION_LAST_DEFINED -
- }
 Describes the type of the relation. More...
 
enum  Atk::BuiltinTextAttribute {
-  Atk::TEXT_ATTR_INVALID, -
-  Atk::TEXT_ATTR_LEFT_MARGIN, -
-  Atk::TEXT_ATTR_RIGHT_MARGIN, -
-  Atk::TEXT_ATTR_INDENT, -
-  Atk::TEXT_ATTR_INVISIBLE, -
-  Atk::TEXT_ATTR_EDITABLE, -
-  Atk::TEXT_ATTR_PIXELS_ABOVE_LINES, -
-  Atk::TEXT_ATTR_PIXELS_BELOW_LINES, -
-  Atk::TEXT_ATTR_PIXELS_INSIDE_WRAP, -
-  Atk::TEXT_ATTR_BG_FULL_HEIGHT, -
-  Atk::TEXT_ATTR_RISE, -
-  Atk::TEXT_ATTR_UNDERLINE, -
-  Atk::TEXT_ATTR_STRIKETHROUGH, -
-  Atk::TEXT_ATTR_SIZE, -
-  Atk::TEXT_ATTR_SCALE, -
-  Atk::TEXT_ATTR_WEIGHT, -
-  Atk::TEXT_ATTR_LANGUAGE, -
-  Atk::TEXT_ATTR_FAMILY_NAME, -
-  Atk::TEXT_ATTR_BG_COLOR, -
-  Atk::TEXT_ATTR_FG_COLOR, -
-  Atk::TEXT_ATTR_BG_STIPPLE, -
-  Atk::TEXT_ATTR_FG_STIPPLE, -
-  Atk::TEXT_ATTR_WRAP_MODE, -
-  Atk::TEXT_ATTR_DIRECTION, -
-  Atk::TEXT_ATTR_JUSTIFICATION, -
-  Atk::TEXT_ATTR_STRETCH, -
-  Atk::TEXT_ATTR_VARIANT, -
-  Atk::TEXT_ATTR_STYLE, -
-  Atk::TEXT_ATTR_LAST_DEFINED -
- }
 Describes the text attributes supported. More...
 
enum  Atk::TextBoundary {
-  Atk::TEXT_BOUNDARY_CHAR, -
-  Atk::TEXT_BOUNDARY_WORD_START, -
-  Atk::TEXT_BOUNDARY_WORD_END, -
-  Atk::TEXT_BOUNDARY_SENTENCE_START, -
-  Atk::TEXT_BOUNDARY_SENTENCE_END, -
-  Atk::TEXT_BOUNDARY_LINE_START, -
-  Atk::TEXT_BOUNDARY_LINE_END -
- }
 Text boundary types used for specifying boundaries for regions of text. More...
 
enum  Atk::TextClipType {
-  Atk::TEXT_CLIP_NONE, -
-  Atk::TEXT_CLIP_MIN, -
-  Atk::TEXT_CLIP_MAX, -
-  Atk::TEXT_CLIP_BOTH -
- }
 Describes the type of clipping required. More...
 
enum  Atk::TextGranularity {
-  Atk::TEXT_GRANULARITY_CHAR, -
-  Atk::TEXT_GRANULARITY_WORD, -
-  Atk::TEXT_GRANULARITY_SENTENCE, -
-  Atk::TEXT_GRANULARITY_LINE, -
-  Atk::TEXT_GRANULARITY_PARAGRAPH -
- }
 Text granularity types used for specifying the granularity of the region of text we are interested in. More...
 
-

Detailed Description

-

Enumeration Type Documentation

- -
-
- - - - -
enum Atk::BuiltinTextAttribute
-
- -

Describes the text attributes supported.

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Enumerator
TEXT_ATTR_INVALID  -

Invalid attribute, like bad spelling or grammar.

-
TEXT_ATTR_LEFT_MARGIN  -

The pixel width of the left margin.

-
TEXT_ATTR_RIGHT_MARGIN  -

The pixel width of the right margin.

-
TEXT_ATTR_INDENT  -

The number of pixels that the text is indented.

-
TEXT_ATTR_INVISIBLE  -

Either "true" or "false" indicating whether text is visible or not.

-
TEXT_ATTR_EDITABLE  -

Either "true" or "false" indicating whether text is editable or not.

-
TEXT_ATTR_PIXELS_ABOVE_LINES  -

Pixels of blank space to leave above each newline-terminated line.

-
TEXT_ATTR_PIXELS_BELOW_LINES  -

Pixels of blank space to leave below each newline-terminated line.

-
TEXT_ATTR_PIXELS_INSIDE_WRAP  -

Pixels of blank space to leave between wrapped lines inside the same newline-terminated line (paragraph).

-
TEXT_ATTR_BG_FULL_HEIGHT  -

"true" or "false" whether to make the background color for each character the height of the highest font used on the current line, or the height of the font used for the current character.

-
TEXT_ATTR_RISE  -

Number of pixels that the characters are risen above the baseline.

-
TEXT_ATTR_UNDERLINE  -

"none", "single", "double", "low", or "error".

-
TEXT_ATTR_STRIKETHROUGH  -

"true" or "false" whether the text is strikethrough.

-
TEXT_ATTR_SIZE  -

The size of the characters in points.

-

eg: 10.

-
TEXT_ATTR_SCALE  -

The scale of the characters.

-

The value is a string representation of a double.

-
TEXT_ATTR_WEIGHT  -

The weight of the characters.

-
TEXT_ATTR_LANGUAGE  -

The language used.

-
TEXT_ATTR_FAMILY_NAME  -

The font family name.

-
TEXT_ATTR_BG_COLOR  -

The background color.

-

The value is an RGB value of the format "%u,%u,%u".

-
TEXT_ATTR_FG_COLOR  -

The foreground color.

-

The value is an RGB value of the format "%u,%u,%u".

-
TEXT_ATTR_BG_STIPPLE  -

"true" if a Gdk::Bitmap is set for stippling the background color.

-
TEXT_ATTR_FG_STIPPLE  -

"true" if a Gdk::Bitmap is set for stippling the foreground color.

-
TEXT_ATTR_WRAP_MODE  -

The wrap mode of the text, if any.

-

Values are "none", "char", "word", or "word_char".

-
TEXT_ATTR_DIRECTION  -

The direction of the text, if set.

-

Values are "none", "ltr" or "rtl".

-
TEXT_ATTR_JUSTIFICATION  -

The justification of the text, if set.

-

Values are "left", "right", "center" or "fill".

-
TEXT_ATTR_STRETCH  -

The stretch of the text, if set.

-

Values are "ultra_condensed", "extra_condensed", "condensed", "semi_condensed", "normal", "semi_expanded", "expanded", "extra_expanded" or "ultra_expanded".

-
TEXT_ATTR_VARIANT  -

The capitalization variant of the text, if set.

-

Values are "normal" or "small_caps".

-
TEXT_ATTR_STYLE  -

The slant style of the text, if set.

-

Values are "normal", "oblique" or "italic".

-
TEXT_ATTR_LAST_DEFINED  -

Not a valid text attribute, used for finding end of enumeration.

-
- -
-
- -
-
- - - - -
enum Atk::CoordType
-
- -

Specifies how xy coordinates are to be interpreted.

-

Used by functions such as Atk::Component::get_position() and Atk::Text::get_character_extents()

- - - -
Enumerator
XY_SCREEN  -

Specifies xy coordinates relative to the screen.

-
XY_WINDOW  -

Specifies xy coordinates relative to the widget's top-level window.

-
- -
-
- -
-
- - - - -
enum Atk::Layer
-
- -

Describes the layer of a component.

-

These enumerated "layer values" are used when determining which UI rendering layer a component is drawn into, which can help in making determinations of when components occlude one another.

- - - - - - - - - -
Enumerator
LAYER_INVALID  -

The object does not have a layer.

-
LAYER_BACKGROUND  -

This layer is reserved for the desktop background.

-
LAYER_CANVAS  -

This layer is used for Canvas components.

-
LAYER_WIDGET  -

This layer is normally used for components.

-
LAYER_MDI  -

This layer is used for layered components.

-
LAYER_POPUP  -

This layer is used for popup components, such as menus.

-
LAYER_OVERLAY  -

This layer is reserved for future use.

-
LAYER_WINDOW  -

This layer is used for toplevel windows.

-
- -
-
- -
-
- - - - -
enum Atk::RelationType
-
- -

Describes the type of the relation.

- - - - - - - - - - - - - - - - - - - -
Enumerator
RELATION_NULL  -

Not used, represens "no relationship" or an error condition.

-
RELATION_CONTROLLED_BY  -

Indicates an object controlled by one or more target objects.

-
RELATION_CONTROLLER_FOR  -

Indicates an object is an controller for one or more target objects.

-
RELATION_LABEL_FOR  -

Indicates an object is a label for one or more target objects.

-
RELATION_LABELLED_BY  -

Indicates an object is labelled by one or more target objects.

-
RELATION_MEMBER_OF  -

Indicates an object is a member of a group of one or more target objects.

-
RELATION_NODE_CHILD_OF  -

Indicates an object is a cell in a treetable which is displayed because a cell in the same column is expanded and identifies that cell.

-
RELATION_FLOWS_TO  -

Indicates that the object has content that flows logically to another AtkObject in a sequential way, (for instance text-flow).

-
RELATION_FLOWS_FROM  -

Indicates that the object has content that flows logically from another AtkObject in a sequential way, (for instance text-flow).

-
RELATION_SUBWINDOW_OF  -

Indicates a subwindow attached to a component but otherwise has no connection in the UI heirarchy to that component.

-
RELATION_EMBEDS  -

Indicates that the object visually embeds another object's content, i.e.

-

this object's content flows around another's content.

-
RELATION_EMBEDDED_BY  -

Inverse of Atk::RELATION_EMBEDS, indicates that this object's content is visualy embedded in another object.

-
RELATION_POPUP_FOR  -

Indicates that an object is a popup for another object.

-
RELATION_PARENT_WINDOW_OF  -

Indicates that an object is a parent window of another object.

-
RELATION_DESCRIBED_BY  -

Indicates that another object provides descriptive information about this object; more verbose than ATK_RELATION_LABELLED_BY.

-
RELATION_DESCRIPTION_FOR  -

Indicates that an object provides descriptive information about another object; more verbose than ATK_RELATION_LABEL_FOR.

-
RELATION_NODE_PARENT_OF  -

Indicates an object is a cell in a treetable and is expanded to display other cells in the same column.

-
RELATION_LAST_DEFINED  -

Not used, this value indicates the end of the enumeration.

-
- -
-
- -
-
- - - - -
enum Atk::Role
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Enumerator
ROLE_INVALID  -
ROLE_ACCEL_LABEL  -
ROLE_ALERT  -
ROLE_ANIMATION  -
ROLE_ARROW  -
ROLE_CALENDAR  -
ROLE_CANVAS  -
ROLE_CHECK_BOX  -
ROLE_CHECK_MENU_ITEM  -
ROLE_COLOR_CHOOSER  -
ROLE_COLUMN_HEADER  -
ROLE_COMBO_BOX  -
ROLE_DATE_EDITOR  -
ROLE_DESKTOP_ICON  -
ROLE_DESKTOP_FRAME  -
ROLE_DIAL  -
ROLE_DIALOG  -
ROLE_DIRECTORY_PANE  -
ROLE_DRAWING_AREA  -
ROLE_FILE_CHOOSER  -
ROLE_FILLER  -
ROLE_FONT_CHOOSER  -
ROLE_FRAME  -
ROLE_GLASS_PANE  -
ROLE_HTML_CONTAINER  -
ROLE_ICON  -
ROLE_IMAGE  -
ROLE_INTERNAL_FRAME  -
ROLE_LABEL  -
ROLE_LAYERED_PANE  -
ROLE_LIST  -
ROLE_LIST_ITEM  -
ROLE_MENU  -
ROLE_MENU_BAR  -
ROLE_MENU_ITEM  -
ROLE_OPTION_PANE  -
ROLE_PAGE_TAB  -
ROLE_PAGE_TAB_LIST  -
ROLE_PANEL  -
ROLE_PASSWORD_TEXT  -
ROLE_POPUP_MENU  -
ROLE_PROGRESS_BAR  -
ROLE_PUSH_BUTTON  -
ROLE_RADIO_BUTTON  -
ROLE_RADIO_MENU_ITEM  -
ROLE_ROOT_PANE  -
ROLE_ROW_HEADER  -
ROLE_SCROLL_BAR  -
ROLE_SCROLL_PANE  -
ROLE_SEPARATOR  -
ROLE_SLIDER  -
ROLE_SPLIT_PANE  -
ROLE_SPIN_BUTTON  -
ROLE_STATUSBAR  -
ROLE_TABLE  -
ROLE_TABLE_CELL  -
ROLE_TABLE_COLUMN_HEADER  -
ROLE_TABLE_ROW_HEADER  -
ROLE_TEAR_OFF_MENU_ITEM  -
ROLE_TERMINAL  -
ROLE_TEXT  -
ROLE_TOGGLE_BUTTON  -
ROLE_TOOL_BAR  -
ROLE_TOOL_TIP  -
ROLE_TREE  -
ROLE_TREE_TABLE  -
ROLE_UNKNOWN  -
ROLE_VIEWPORT  -
ROLE_WINDOW  -
ROLE_HEADER  -
ROLE_FOOTER  -
ROLE_PARAGRAPH  -
ROLE_RULER  -
ROLE_APPLICATION  -
ROLE_AUTOCOMPLETE  -
ROLE_EDITBAR  -
ROLE_EMBEDDED  -
ROLE_ENTRY  -
ROLE_CHART  -
ROLE_CAPTION  -
ROLE_DOCUMENT_FRAME  -
ROLE_HEADING  -
ROLE_PAGE  -
ROLE_SECTION  -
ROLE_REDUNDANT_OBJECT  -
ROLE_FORM  -
ROLE_LINK  -
ROLE_INPUT_METHOD_WINDOW  -
ROLE_TABLE_ROW  -
ROLE_TREE_ITEM  -
ROLE_DOCUMENT_SPREADSHEET  -
ROLE_DOCUMENT_PRESENTATION  -
ROLE_DOCUMENT_TEXT  -
ROLE_DOCUMENT_WEB  -
ROLE_DOCUMENT_EMAIL  -
ROLE_COMMENT  -
ROLE_LIST_BOX  -
ROLE_GROUPING  -
ROLE_IMAGE_MAP  -
ROLE_NOTIFICATION  -
ROLE_INFO_BAR  -
ROLE_LEVEL_BAR  -
ROLE_TITLE_BAR  -
ROLE_BLOCK_QUOTE  -
ROLE_AUDIO  -
ROLE_VIDEO  -
ROLE_DEFINITION  -
ROLE_ARTICLE  -
ROLE_LANDMARK  -
ROLE_LOG  -
ROLE_MARQUEE  -
ROLE_MATH  -
ROLE_RATING  -
ROLE_TIMER  -
ROLE_DESCRIPTION_LIST  -
ROLE_DESCRIPTION_TERM  -
ROLE_DESCRIPTION_VALUE  -
ROLE_STATIC  -
ROLE_MATH_FRACTION  -
ROLE_MATH_ROOT  -
ROLE_SUBSCRIPT  -
ROLE_SUPERSCRIPT  -
ROLE_LAST_DEFINED  -
- -
-
- -
-
- - - - -
enum Atk::StateType
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Enumerator
STATE_INVALID  -
STATE_ACTIVE  -
STATE_ARMED  -
STATE_BUSY  -
STATE_CHECKED  -
STATE_DEFUNCT  -
STATE_EDITABLE  -
STATE_ENABLED  -
STATE_EXPANDABLE  -
STATE_EXPANDED  -
STATE_FOCUSABLE  -
STATE_FOCUSED  -
STATE_HORIZONTAL  -
STATE_ICONIFIED  -
STATE_MODAL  -
STATE_MULTI_LINE  -
STATE_MULTISELECTABLE  -
STATE_OPAQUE  -
STATE_PRESSED  -
STATE_RESIZABLE  -
STATE_SELECTABLE  -
STATE_SELECTED  -
STATE_SENSITIVE  -
STATE_SHOWING  -
STATE_SINGLE_LINE  -
STATE_STALE  -
STATE_TRANSIENT  -
STATE_VERTICAL  -
STATE_VISIBLE  -
STATE_MANAGES_DESCENDANTS  -
STATE_INDETERMINATE  -
STATE_TRUNCATED  -
STATE_REQUIRED  -
STATE_INVALID_ENTRY  -
STATE_SUPPORTS_AUTOCOMPLETION  -
STATE_SELECTABLE_TEXT  -
STATE_DEFAULT  -
STATE_ANIMATED  -
STATE_VISITED  -
STATE_CHECKABLE  -
STATE_HAS_POPUP  -
STATE_HAS_TOOLTIP  -
STATE_READ_ONLY  -
STATE_LAST_DEFINED  -
- -
-
- -
-
- - - - -
enum Atk::TextBoundary
-
- -

Text boundary types used for specifying boundaries for regions of text.

-

This enumerationis deprecated since 2.9.4 and should not be used. Use AtkTextGranularity with #atk_text_get_string_at_offset instead.

- - - - - - - - -
Enumerator
TEXT_BOUNDARY_CHAR  -

Boundary is the boundary between characters (including non-printing characters).

-
TEXT_BOUNDARY_WORD_START  -

Boundary is the start (i.e.

-

first character) of a word.

-
TEXT_BOUNDARY_WORD_END  -

Boundary is the end (i.e.

-

last character) of a word.

-
TEXT_BOUNDARY_SENTENCE_START  -

Boundary is the first character in a sentence.

-
TEXT_BOUNDARY_SENTENCE_END  -

Boundary is the last (terminal) character in a sentence; in languages which use "sentence stop" punctuation such as English, the boundary is thus the '.

-

', '?', or similar terminal punctuation character.

-
TEXT_BOUNDARY_LINE_START  -

Boundary is the initial character of the content or a character immediately following a newline, linefeed, or return character.

-
TEXT_BOUNDARY_LINE_END  -

Boundary is the linefeed, or return character.

-
- -
-
- -
-
- - - - -
enum Atk::TextClipType
-
- -

Describes the type of clipping required.

- - - - - -
Enumerator
TEXT_CLIP_NONE  -

No clipping to be done.

-
TEXT_CLIP_MIN  -

Text clipped by min coordinate is omitted.

-
TEXT_CLIP_MAX  -

Text clipped by max coordinate is omitted.

-
TEXT_CLIP_BOTH  -

Only text fully within mix/max bound is retained.

-
- -
-
- -
-
- - - - -
enum Atk::TextGranularity
-
- -

Text granularity types used for specifying the granularity of the region of text we are interested in.

- - - - - - -
Enumerator
TEXT_GRANULARITY_CHAR  -

Granularity is defined by the boundaries between characters (including non-printing characters).

-
TEXT_GRANULARITY_WORD  -

Granularity is defined by the boundaries of a word, starting at the beginning of the current word and finishing at the beginning of the following one, if present.

-
TEXT_GRANULARITY_SENTENCE  -

Granularity is defined by the boundaries of a sentence, starting at the beginning of the current sentence and finishing at the beginning of the following one, if present.

-
TEXT_GRANULARITY_LINE  -

Granularity is defined by the boundaries of a line, starting at the beginning of the current line and finishing at the beginning of the following one, if present.

-
TEXT_GRANULARITY_PARAGRAPH  -

Granularity is defined by the boundaries of a paragraph, starting at the beginning of the current paragraph and finishing at the beginning of the following one, if present.

-
- -
-
-
- - - - diff -Nru atkmm1.6-2.24.2/doc/reference/html/hierarchy.html atkmm1.6-2.28.0/doc/reference/html/hierarchy.html --- atkmm1.6-2.24.2/doc/reference/html/hierarchy.html 2015-11-29 20:05:33.323310564 +0000 +++ atkmm1.6-2.28.0/doc/reference/html/hierarchy.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,106 +0,0 @@ - - - - - - -atkmm: Class Hierarchy - - - - - - -
-
- - - - - - -
-
atkmm -  2.24.2 -
-
-
- - - - -
-
-
-
Class Hierarchy
-
-
-
-

Go to the graphical class hierarchy

-This inheritance list is sorted roughly, but not completely, alphabetically:
-
[detail level 12345]
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 CAtk::Attribute
 CAtk::AttributeTraits
 CAtk::RangeA given range or subrange, to be used with Atk::Value
 CAtk::TextAttribute
 Chash_load_check_resize_trigger_size_base
 Clu_counter_policy_base
 Csigc::trackable [external]
 CGlib::ObjectBase [external]
 CGlib::Interface [external]
 CAtk::ActionThe ATK interface provided by UI components which the user can activate/interact with, This should be implemented by instances of Atk::Object classes with which the user can interact directly, i.e
 CAtk::HyperlinkEncapsulates a link or set of links in a hypertext document
 CAtk::NoOpObjectAn Atk::NoOpObject is an Atk::Object which purports to implement all ATK interfaces
 CAtk::ComponentThe ATK interface provided by UI components which occupy a physical area on the screen
 CAtk::NoOpObjectAn Atk::NoOpObject is an Atk::Object which purports to implement all ATK interfaces
 CAtk::DocumentThe ATK interface which allows access to a DOM associated with on object
 CAtk::EditableText
 CAtk::NoOpObjectAn Atk::NoOpObject is an Atk::Object which purports to implement all ATK interfaces
 CAtk::Hypertext
 CAtk::NoOpObjectAn Atk::NoOpObject is an Atk::Object which purports to implement all ATK interfaces
 CAtk::ImageThe ATK Interface implemented by components which expose image or pixmap content on-screen
 CAtk::NoOpObjectAn Atk::NoOpObject is an Atk::Object which purports to implement all ATK interfaces
 CAtk::Implementor
 CAtk::SelectionThe ATK interface implemented by container objects whose Atk::Object children can be selected
 CAtk::NoOpObjectAn Atk::NoOpObject is an Atk::Object which purports to implement all ATK interfaces
 CAtk::StreamableContentThe ATK interface which provides access to streamable content
 CAtk::TableThe ATK interface implemented for UI components which contain tabular or row/column information
 CAtk::NoOpObjectAn Atk::NoOpObject is an Atk::Object which purports to implement all ATK interfaces
 CAtk::TextThe ATK interface implemented by components with text content
 CAtk::NoOpObjectAn Atk::NoOpObject is an Atk::Object which purports to implement all ATK interfaces
 CAtk::ValueThe ATK interface implemented by valuators and components which display or select a value from a bounded range of values
 CAtk::NoOpObjectAn Atk::NoOpObject is an Atk::Object which purports to implement all ATK interfaces
 CGlib::Object [external]
 CAtk::HyperlinkEncapsulates a link or set of links in a hypertext document
 CAtk::ObjectThe base object class for the Accessibility Toolkit API
 CAtk::NoOpObjectAn Atk::NoOpObject is an Atk::Object which purports to implement all ATK interfaces
 CAtk::ObjectAccessibleThis object class is derived from AtkObject and can be used as a basis implementing accessible objects
 CAtk::RelationAn Atk::Relation describes a relation between an object and one or more other objects
 CAtk::RelationSetA set of Atk::Relations, normally the set of AtkRelations which an Atk::Object has
 CAtk::StateSetAn AtkStateSet determines a component's state set
-
-
- - - - diff -Nru atkmm1.6-2.24.2/doc/reference/html/index.html atkmm1.6-2.28.0/doc/reference/html/index.html --- atkmm1.6-2.24.2/doc/reference/html/index.html 2015-11-29 20:05:33.291311172 +0000 +++ atkmm1.6-2.28.0/doc/reference/html/index.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,63 +0,0 @@ - - - - - - -atkmm: atkmm Reference Manual - - - - - - -
-
- - - - - - -
-
atkmm -  2.24.2 -
-
-
- - - -
-
-
-
atkmm Reference Manual
-
-
-

-Description

-

atkmm is the official C++ interface for the ATK accessibility toolkit library. It may be used, for instance, by user interfaces implemented with gtkmm.

-

-Basic Usage

-

Include the atkmm header:

#include <atkmm.h>
-

This includes every header installed by atkmm, so can slow down compilation, but suffices for this simple example. Assuming that your program source file is program.cc, compile it with:

g++ program.cc -o program `pkg-config --cflags --libs atkmm-1.6`
-

Alternatively, if using autoconf, use the following in configure.ac:

PKG_CHECK_MODULES([ATKMM], [atkmm-1.6])
-

Then use the generated ATKMM_CFLAGS and ATKMM_LIBS variables in the project Makefile.am files. For example:

program_CPPFLAGS = $(ATKMM_CFLAGS)
-
program_LDADD = $(ATKMM_LIBS)
-
- - - - Binary files /tmp/tmpOzhFOD/5A0TTRaIcC/atkmm1.6-2.24.2/doc/reference/html/inherit_graph_0.png and /tmp/tmpOzhFOD/Bg2TspT7RQ/atkmm1.6-2.28.0/doc/reference/html/inherit_graph_0.png differ Binary files /tmp/tmpOzhFOD/5A0TTRaIcC/atkmm1.6-2.24.2/doc/reference/html/inherit_graph_1.png and /tmp/tmpOzhFOD/Bg2TspT7RQ/atkmm1.6-2.28.0/doc/reference/html/inherit_graph_1.png differ Binary files /tmp/tmpOzhFOD/5A0TTRaIcC/atkmm1.6-2.24.2/doc/reference/html/inherit_graph_2.png and /tmp/tmpOzhFOD/Bg2TspT7RQ/atkmm1.6-2.28.0/doc/reference/html/inherit_graph_2.png differ Binary files /tmp/tmpOzhFOD/5A0TTRaIcC/atkmm1.6-2.24.2/doc/reference/html/inherit_graph_3.png and /tmp/tmpOzhFOD/Bg2TspT7RQ/atkmm1.6-2.28.0/doc/reference/html/inherit_graph_3.png differ Binary files /tmp/tmpOzhFOD/5A0TTRaIcC/atkmm1.6-2.24.2/doc/reference/html/inherit_graph_4.png and /tmp/tmpOzhFOD/Bg2TspT7RQ/atkmm1.6-2.28.0/doc/reference/html/inherit_graph_4.png differ Binary files /tmp/tmpOzhFOD/5A0TTRaIcC/atkmm1.6-2.24.2/doc/reference/html/inherit_graph_5.png and /tmp/tmpOzhFOD/Bg2TspT7RQ/atkmm1.6-2.28.0/doc/reference/html/inherit_graph_5.png differ Binary files /tmp/tmpOzhFOD/5A0TTRaIcC/atkmm1.6-2.24.2/doc/reference/html/inherit_graph_6.png and /tmp/tmpOzhFOD/Bg2TspT7RQ/atkmm1.6-2.28.0/doc/reference/html/inherit_graph_6.png differ diff -Nru atkmm1.6-2.24.2/doc/reference/html/inherits.html atkmm1.6-2.28.0/doc/reference/html/inherits.html --- atkmm1.6-2.24.2/doc/reference/html/inherits.html 2015-11-29 20:05:33.339310261 +0000 +++ atkmm1.6-2.28.0/doc/reference/html/inherits.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,93 +0,0 @@ - - - - - - -atkmm: Class Hierarchy - - - - - - -
-
- - - - - - -
-
atkmm -  2.24.2 -
-
-
- - - - -
-
-
-
Class Hierarchy
-
-
- - - - - - - - -
- - -
- - -
- - -
- - -
- - -
- - -
- - -
-
- - - - diff -Nru atkmm1.6-2.24.2/doc/reference/html/jquery.js atkmm1.6-2.28.0/doc/reference/html/jquery.js --- atkmm1.6-2.24.2/doc/reference/html/jquery.js 2015-11-29 20:05:32.467326786 +0000 +++ atkmm1.6-2.28.0/doc/reference/html/jquery.js 1970-01-01 00:00:00.000000000 +0000 @@ -1,68 +0,0 @@ -/*! - * jQuery JavaScript Library v1.7.1 - * http://jquery.com/ - * - * Copyright 2011, John Resig - * Dual licensed under the MIT or GPL Version 2 licenses. - * http://jquery.org/license - * - * Includes Sizzle.js - * http://sizzlejs.com/ - * Copyright 2011, The Dojo Foundation - * Released under the MIT, BSD, and GPL Licenses. - * - * Date: Mon Nov 21 21:11:03 2011 -0500 - */ -(function(bb,L){var av=bb.document,bu=bb.navigator,bl=bb.location;var b=(function(){var bF=function(b0,b1){return new bF.fn.init(b0,b1,bD)},bU=bb.jQuery,bH=bb.$,bD,bY=/^(?:[^#<]*(<[\w\W]+>)[^>]*$|#([\w\-]*)$)/,bM=/\S/,bI=/^\s+/,bE=/\s+$/,bA=/^<(\w+)\s*\/?>(?:<\/\1>)?$/,bN=/^[\],:{}\s]*$/,bW=/\\(?:["\\\/bfnrt]|u[0-9a-fA-F]{4})/g,bP=/"[^"\\\n\r]*"|true|false|null|-?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?/g,bJ=/(?:^|:|,)(?:\s*\[)+/g,by=/(webkit)[ \/]([\w.]+)/,bR=/(opera)(?:.*version)?[ \/]([\w.]+)/,bQ=/(msie) ([\w.]+)/,bS=/(mozilla)(?:.*? rv:([\w.]+))?/,bB=/-([a-z]|[0-9])/ig,bZ=/^-ms-/,bT=function(b0,b1){return(b1+"").toUpperCase()},bX=bu.userAgent,bV,bC,e,bL=Object.prototype.toString,bG=Object.prototype.hasOwnProperty,bz=Array.prototype.push,bK=Array.prototype.slice,bO=String.prototype.trim,bv=Array.prototype.indexOf,bx={};bF.fn=bF.prototype={constructor:bF,init:function(b0,b4,b3){var b2,b5,b1,b6;if(!b0){return this}if(b0.nodeType){this.context=this[0]=b0;this.length=1;return this}if(b0==="body"&&!b4&&av.body){this.context=av;this[0]=av.body;this.selector=b0;this.length=1;return this}if(typeof b0==="string"){if(b0.charAt(0)==="<"&&b0.charAt(b0.length-1)===">"&&b0.length>=3){b2=[null,b0,null]}else{b2=bY.exec(b0)}if(b2&&(b2[1]||!b4)){if(b2[1]){b4=b4 instanceof bF?b4[0]:b4;b6=(b4?b4.ownerDocument||b4:av);b1=bA.exec(b0);if(b1){if(bF.isPlainObject(b4)){b0=[av.createElement(b1[1])];bF.fn.attr.call(b0,b4,true)}else{b0=[b6.createElement(b1[1])]}}else{b1=bF.buildFragment([b2[1]],[b6]);b0=(b1.cacheable?bF.clone(b1.fragment):b1.fragment).childNodes}return bF.merge(this,b0)}else{b5=av.getElementById(b2[2]);if(b5&&b5.parentNode){if(b5.id!==b2[2]){return b3.find(b0)}this.length=1;this[0]=b5}this.context=av;this.selector=b0;return this}}else{if(!b4||b4.jquery){return(b4||b3).find(b0)}else{return this.constructor(b4).find(b0)}}}else{if(bF.isFunction(b0)){return b3.ready(b0)}}if(b0.selector!==L){this.selector=b0.selector;this.context=b0.context}return bF.makeArray(b0,this)},selector:"",jquery:"1.7.1",length:0,size:function(){return this.length},toArray:function(){return bK.call(this,0)},get:function(b0){return b0==null?this.toArray():(b0<0?this[this.length+b0]:this[b0])},pushStack:function(b1,b3,b0){var b2=this.constructor();if(bF.isArray(b1)){bz.apply(b2,b1)}else{bF.merge(b2,b1)}b2.prevObject=this;b2.context=this.context;if(b3==="find"){b2.selector=this.selector+(this.selector?" ":"")+b0}else{if(b3){b2.selector=this.selector+"."+b3+"("+b0+")"}}return b2},each:function(b1,b0){return bF.each(this,b1,b0)},ready:function(b0){bF.bindReady();bC.add(b0);return this},eq:function(b0){b0=+b0;return b0===-1?this.slice(b0):this.slice(b0,b0+1)},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},slice:function(){return this.pushStack(bK.apply(this,arguments),"slice",bK.call(arguments).join(","))},map:function(b0){return this.pushStack(bF.map(this,function(b2,b1){return b0.call(b2,b1,b2)}))},end:function(){return this.prevObject||this.constructor(null)},push:bz,sort:[].sort,splice:[].splice};bF.fn.init.prototype=bF.fn;bF.extend=bF.fn.extend=function(){var b9,b2,b0,b1,b6,b7,b5=arguments[0]||{},b4=1,b3=arguments.length,b8=false;if(typeof b5==="boolean"){b8=b5;b5=arguments[1]||{};b4=2}if(typeof b5!=="object"&&!bF.isFunction(b5)){b5={}}if(b3===b4){b5=this;--b4}for(;b40){return}bC.fireWith(av,[bF]);if(bF.fn.trigger){bF(av).trigger("ready").off("ready")}}},bindReady:function(){if(bC){return}bC=bF.Callbacks("once memory");if(av.readyState==="complete"){return setTimeout(bF.ready,1)}if(av.addEventListener){av.addEventListener("DOMContentLoaded",e,false);bb.addEventListener("load",bF.ready,false)}else{if(av.attachEvent){av.attachEvent("onreadystatechange",e);bb.attachEvent("onload",bF.ready);var b0=false;try{b0=bb.frameElement==null}catch(b1){}if(av.documentElement.doScroll&&b0){bw()}}}},isFunction:function(b0){return bF.type(b0)==="function"},isArray:Array.isArray||function(b0){return bF.type(b0)==="array"},isWindow:function(b0){return b0&&typeof b0==="object"&&"setInterval" in b0},isNumeric:function(b0){return !isNaN(parseFloat(b0))&&isFinite(b0)},type:function(b0){return b0==null?String(b0):bx[bL.call(b0)]||"object"},isPlainObject:function(b2){if(!b2||bF.type(b2)!=="object"||b2.nodeType||bF.isWindow(b2)){return false}try{if(b2.constructor&&!bG.call(b2,"constructor")&&!bG.call(b2.constructor.prototype,"isPrototypeOf")){return false}}catch(b1){return false}var b0;for(b0 in b2){}return b0===L||bG.call(b2,b0)},isEmptyObject:function(b1){for(var b0 in b1){return false}return true},error:function(b0){throw new Error(b0)},parseJSON:function(b0){if(typeof b0!=="string"||!b0){return null}b0=bF.trim(b0);if(bb.JSON&&bb.JSON.parse){return bb.JSON.parse(b0)}if(bN.test(b0.replace(bW,"@").replace(bP,"]").replace(bJ,""))){return(new Function("return "+b0))()}bF.error("Invalid JSON: "+b0)},parseXML:function(b2){var b0,b1;try{if(bb.DOMParser){b1=new DOMParser();b0=b1.parseFromString(b2,"text/xml")}else{b0=new ActiveXObject("Microsoft.XMLDOM");b0.async="false";b0.loadXML(b2)}}catch(b3){b0=L}if(!b0||!b0.documentElement||b0.getElementsByTagName("parsererror").length){bF.error("Invalid XML: "+b2)}return b0},noop:function(){},globalEval:function(b0){if(b0&&bM.test(b0)){(bb.execScript||function(b1){bb["eval"].call(bb,b1)})(b0)}},camelCase:function(b0){return b0.replace(bZ,"ms-").replace(bB,bT)},nodeName:function(b1,b0){return b1.nodeName&&b1.nodeName.toUpperCase()===b0.toUpperCase()},each:function(b3,b6,b2){var b1,b4=0,b5=b3.length,b0=b5===L||bF.isFunction(b3);if(b2){if(b0){for(b1 in b3){if(b6.apply(b3[b1],b2)===false){break}}}else{for(;b40&&b0[0]&&b0[b1-1])||b1===0||bF.isArray(b0));if(b3){for(;b21?aJ.call(arguments,0):bG;if(!(--bw)){bC.resolveWith(bC,bx)}}}function bz(bF){return function(bG){bB[bF]=arguments.length>1?aJ.call(arguments,0):bG;bC.notifyWith(bE,bB)}}if(e>1){for(;bv
a";bI=bv.getElementsByTagName("*");bF=bv.getElementsByTagName("a")[0];if(!bI||!bI.length||!bF){return{}}bG=av.createElement("select");bx=bG.appendChild(av.createElement("option"));bE=bv.getElementsByTagName("input")[0];bJ={leadingWhitespace:(bv.firstChild.nodeType===3),tbody:!bv.getElementsByTagName("tbody").length,htmlSerialize:!!bv.getElementsByTagName("link").length,style:/top/.test(bF.getAttribute("style")),hrefNormalized:(bF.getAttribute("href")==="/a"),opacity:/^0.55/.test(bF.style.opacity),cssFloat:!!bF.style.cssFloat,checkOn:(bE.value==="on"),optSelected:bx.selected,getSetAttribute:bv.className!=="t",enctype:!!av.createElement("form").enctype,html5Clone:av.createElement("nav").cloneNode(true).outerHTML!=="<:nav>",submitBubbles:true,changeBubbles:true,focusinBubbles:false,deleteExpando:true,noCloneEvent:true,inlineBlockNeedsLayout:false,shrinkWrapBlocks:false,reliableMarginRight:true};bE.checked=true;bJ.noCloneChecked=bE.cloneNode(true).checked;bG.disabled=true;bJ.optDisabled=!bx.disabled;try{delete bv.test}catch(bC){bJ.deleteExpando=false}if(!bv.addEventListener&&bv.attachEvent&&bv.fireEvent){bv.attachEvent("onclick",function(){bJ.noCloneEvent=false});bv.cloneNode(true).fireEvent("onclick")}bE=av.createElement("input");bE.value="t";bE.setAttribute("type","radio");bJ.radioValue=bE.value==="t";bE.setAttribute("checked","checked");bv.appendChild(bE);bD=av.createDocumentFragment();bD.appendChild(bv.lastChild);bJ.checkClone=bD.cloneNode(true).cloneNode(true).lastChild.checked;bJ.appendChecked=bE.checked;bD.removeChild(bE);bD.appendChild(bv);bv.innerHTML="";if(bb.getComputedStyle){bA=av.createElement("div");bA.style.width="0";bA.style.marginRight="0";bv.style.width="2px";bv.appendChild(bA);bJ.reliableMarginRight=(parseInt((bb.getComputedStyle(bA,null)||{marginRight:0}).marginRight,10)||0)===0}if(bv.attachEvent){for(by in {submit:1,change:1,focusin:1}){bB="on"+by;bw=(bB in bv);if(!bw){bv.setAttribute(bB,"return;");bw=(typeof bv[bB]==="function")}bJ[by+"Bubbles"]=bw}}bD.removeChild(bv);bD=bG=bx=bA=bv=bE=null;b(function(){var bM,bU,bV,bT,bN,bO,bL,bS,bR,e,bP,bQ=av.getElementsByTagName("body")[0];if(!bQ){return}bL=1;bS="position:absolute;top:0;left:0;width:1px;height:1px;margin:0;";bR="visibility:hidden;border:0;";e="style='"+bS+"border:5px solid #000;padding:0;'";bP="
";bM=av.createElement("div");bM.style.cssText=bR+"width:0;height:0;position:static;top:0;margin-top:"+bL+"px";bQ.insertBefore(bM,bQ.firstChild);bv=av.createElement("div");bM.appendChild(bv);bv.innerHTML="
t
";bz=bv.getElementsByTagName("td");bw=(bz[0].offsetHeight===0);bz[0].style.display="";bz[1].style.display="none";bJ.reliableHiddenOffsets=bw&&(bz[0].offsetHeight===0);bv.innerHTML="";bv.style.width=bv.style.paddingLeft="1px";b.boxModel=bJ.boxModel=bv.offsetWidth===2;if(typeof bv.style.zoom!=="undefined"){bv.style.display="inline";bv.style.zoom=1;bJ.inlineBlockNeedsLayout=(bv.offsetWidth===2);bv.style.display="";bv.innerHTML="
";bJ.shrinkWrapBlocks=(bv.offsetWidth!==2)}bv.style.cssText=bS+bR;bv.innerHTML=bP;bU=bv.firstChild;bV=bU.firstChild;bN=bU.nextSibling.firstChild.firstChild;bO={doesNotAddBorder:(bV.offsetTop!==5),doesAddBorderForTableAndCells:(bN.offsetTop===5)};bV.style.position="fixed";bV.style.top="20px";bO.fixedPosition=(bV.offsetTop===20||bV.offsetTop===15);bV.style.position=bV.style.top="";bU.style.overflow="hidden";bU.style.position="relative";bO.subtractsBorderForOverflowNotVisible=(bV.offsetTop===-5);bO.doesNotIncludeMarginInBodyOffset=(bQ.offsetTop!==bL);bQ.removeChild(bM);bv=bM=null;b.extend(bJ,bO)});return bJ})();var aS=/^(?:\{.*\}|\[.*\])$/,aA=/([A-Z])/g;b.extend({cache:{},uuid:0,expando:"jQuery"+(b.fn.jquery+Math.random()).replace(/\D/g,""),noData:{embed:true,object:"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000",applet:true},hasData:function(e){e=e.nodeType?b.cache[e[b.expando]]:e[b.expando];return !!e&&!S(e)},data:function(bx,bv,bz,by){if(!b.acceptData(bx)){return}var bG,bA,bD,bE=b.expando,bC=typeof bv==="string",bF=bx.nodeType,e=bF?b.cache:bx,bw=bF?bx[bE]:bx[bE]&&bE,bB=bv==="events";if((!bw||!e[bw]||(!bB&&!by&&!e[bw].data))&&bC&&bz===L){return}if(!bw){if(bF){bx[bE]=bw=++b.uuid}else{bw=bE}}if(!e[bw]){e[bw]={};if(!bF){e[bw].toJSON=b.noop}}if(typeof bv==="object"||typeof bv==="function"){if(by){e[bw]=b.extend(e[bw],bv)}else{e[bw].data=b.extend(e[bw].data,bv)}}bG=bA=e[bw];if(!by){if(!bA.data){bA.data={}}bA=bA.data}if(bz!==L){bA[b.camelCase(bv)]=bz}if(bB&&!bA[bv]){return bG.events}if(bC){bD=bA[bv];if(bD==null){bD=bA[b.camelCase(bv)]}}else{bD=bA}return bD},removeData:function(bx,bv,by){if(!b.acceptData(bx)){return}var bB,bA,bz,bC=b.expando,bD=bx.nodeType,e=bD?b.cache:bx,bw=bD?bx[bC]:bC;if(!e[bw]){return}if(bv){bB=by?e[bw]:e[bw].data;if(bB){if(!b.isArray(bv)){if(bv in bB){bv=[bv]}else{bv=b.camelCase(bv);if(bv in bB){bv=[bv]}else{bv=bv.split(" ")}}}for(bA=0,bz=bv.length;bA-1){return true}}return false},val:function(bx){var e,bv,by,bw=this[0];if(!arguments.length){if(bw){e=b.valHooks[bw.nodeName.toLowerCase()]||b.valHooks[bw.type];if(e&&"get" in e&&(bv=e.get(bw,"value"))!==L){return bv}bv=bw.value;return typeof bv==="string"?bv.replace(aU,""):bv==null?"":bv}return}by=b.isFunction(bx);return this.each(function(bA){var bz=b(this),bB;if(this.nodeType!==1){return}if(by){bB=bx.call(this,bA,bz.val())}else{bB=bx}if(bB==null){bB=""}else{if(typeof bB==="number"){bB+=""}else{if(b.isArray(bB)){bB=b.map(bB,function(bC){return bC==null?"":bC+""})}}}e=b.valHooks[this.nodeName.toLowerCase()]||b.valHooks[this.type];if(!e||!("set" in e)||e.set(this,bB,"value")===L){this.value=bB}})}});b.extend({valHooks:{option:{get:function(e){var bv=e.attributes.value;return !bv||bv.specified?e.value:e.text}},select:{get:function(e){var bA,bv,bz,bx,by=e.selectedIndex,bB=[],bC=e.options,bw=e.type==="select-one";if(by<0){return null}bv=bw?by:0;bz=bw?by+1:bC.length;for(;bv=0});if(!e.length){bv.selectedIndex=-1}return e}}},attrFn:{val:true,css:true,html:true,text:true,data:true,width:true,height:true,offset:true},attr:function(bA,bx,bB,bz){var bw,e,by,bv=bA.nodeType;if(!bA||bv===3||bv===8||bv===2){return}if(bz&&bx in b.attrFn){return b(bA)[bx](bB)}if(typeof bA.getAttribute==="undefined"){return b.prop(bA,bx,bB)}by=bv!==1||!b.isXMLDoc(bA);if(by){bx=bx.toLowerCase();e=b.attrHooks[bx]||(ao.test(bx)?aY:be)}if(bB!==L){if(bB===null){b.removeAttr(bA,bx);return}else{if(e&&"set" in e&&by&&(bw=e.set(bA,bB,bx))!==L){return bw}else{bA.setAttribute(bx,""+bB);return bB}}}else{if(e&&"get" in e&&by&&(bw=e.get(bA,bx))!==null){return bw}else{bw=bA.getAttribute(bx);return bw===null?L:bw}}},removeAttr:function(bx,bz){var by,bA,bv,e,bw=0;if(bz&&bx.nodeType===1){bA=bz.toLowerCase().split(af);e=bA.length;for(;bw=0)}}})});var bd=/^(?:textarea|input|select)$/i,n=/^([^\.]*)?(?:\.(.+))?$/,J=/\bhover(\.\S+)?\b/,aO=/^key/,bf=/^(?:mouse|contextmenu)|click/,T=/^(?:focusinfocus|focusoutblur)$/,U=/^(\w*)(?:#([\w\-]+))?(?:\.([\w\-]+))?$/,Y=function(e){var bv=U.exec(e);if(bv){bv[1]=(bv[1]||"").toLowerCase();bv[3]=bv[3]&&new RegExp("(?:^|\\s)"+bv[3]+"(?:\\s|$)")}return bv},j=function(bw,e){var bv=bw.attributes||{};return((!e[1]||bw.nodeName.toLowerCase()===e[1])&&(!e[2]||(bv.id||{}).value===e[2])&&(!e[3]||e[3].test((bv["class"]||{}).value)))},bt=function(e){return b.event.special.hover?e:e.replace(J,"mouseenter$1 mouseleave$1")};b.event={add:function(bx,bC,bJ,bA,by){var bD,bB,bK,bI,bH,bF,e,bG,bv,bz,bw,bE;if(bx.nodeType===3||bx.nodeType===8||!bC||!bJ||!(bD=b._data(bx))){return}if(bJ.handler){bv=bJ;bJ=bv.handler}if(!bJ.guid){bJ.guid=b.guid++}bK=bD.events;if(!bK){bD.events=bK={}}bB=bD.handle;if(!bB){bD.handle=bB=function(bL){return typeof b!=="undefined"&&(!bL||b.event.triggered!==bL.type)?b.event.dispatch.apply(bB.elem,arguments):L};bB.elem=bx}bC=b.trim(bt(bC)).split(" ");for(bI=0;bI=0){bG=bG.slice(0,-1);bw=true}if(bG.indexOf(".")>=0){bx=bG.split(".");bG=bx.shift();bx.sort()}if((!bA||b.event.customEvent[bG])&&!b.event.global[bG]){return}bv=typeof bv==="object"?bv[b.expando]?bv:new b.Event(bG,bv):new b.Event(bG);bv.type=bG;bv.isTrigger=true;bv.exclusive=bw;bv.namespace=bx.join(".");bv.namespace_re=bv.namespace?new RegExp("(^|\\.)"+bx.join("\\.(?:.*\\.)?")+"(\\.|$)"):null;by=bG.indexOf(":")<0?"on"+bG:"";if(!bA){e=b.cache;for(bC in e){if(e[bC].events&&e[bC].events[bG]){b.event.trigger(bv,bD,e[bC].handle.elem,true)}}return}bv.result=L;if(!bv.target){bv.target=bA}bD=bD!=null?b.makeArray(bD):[];bD.unshift(bv);bF=b.event.special[bG]||{};if(bF.trigger&&bF.trigger.apply(bA,bD)===false){return}bB=[[bA,bF.bindType||bG]];if(!bJ&&!bF.noBubble&&!b.isWindow(bA)){bI=bF.delegateType||bG;bH=T.test(bI+bG)?bA:bA.parentNode;bz=null;for(;bH;bH=bH.parentNode){bB.push([bH,bI]);bz=bH}if(bz&&bz===bA.ownerDocument){bB.push([bz.defaultView||bz.parentWindow||bb,bI])}}for(bC=0;bCbA){bH.push({elem:this,matches:bz.slice(bA)})}for(bC=0;bC0?this.on(e,null,bx,bw):this.trigger(e)};if(b.attrFn){b.attrFn[e]=true}if(aO.test(e)){b.event.fixHooks[e]=b.event.keyHooks}if(bf.test(e)){b.event.fixHooks[e]=b.event.mouseHooks}}); -/*! - * Sizzle CSS Selector Engine - * Copyright 2011, The Dojo Foundation - * Released under the MIT, BSD, and GPL Licenses. - * More information: http://sizzlejs.com/ - */ -(function(){var bH=/((?:\((?:\([^()]+\)|[^()]+)+\)|\[(?:\[[^\[\]]*\]|['"][^'"]*['"]|[^\[\]'"]+)+\]|\\.|[^ >+~,(\[\\]+)+|[>+~])(\s*,\s*)?((?:.|\r|\n)*)/g,bC="sizcache"+(Math.random()+"").replace(".",""),bI=0,bL=Object.prototype.toString,bB=false,bA=true,bK=/\\/g,bO=/\r\n/g,bQ=/\W/;[0,0].sort(function(){bA=false;return 0});var by=function(bV,e,bY,bZ){bY=bY||[];e=e||av;var b1=e;if(e.nodeType!==1&&e.nodeType!==9){return[]}if(!bV||typeof bV!=="string"){return bY}var bS,b3,b6,bR,b2,b5,b4,bX,bU=true,bT=by.isXML(e),bW=[],b0=bV;do{bH.exec("");bS=bH.exec(b0);if(bS){b0=bS[3];bW.push(bS[1]);if(bS[2]){bR=bS[3];break}}}while(bS);if(bW.length>1&&bD.exec(bV)){if(bW.length===2&&bE.relative[bW[0]]){b3=bM(bW[0]+bW[1],e,bZ)}else{b3=bE.relative[bW[0]]?[e]:by(bW.shift(),e);while(bW.length){bV=bW.shift();if(bE.relative[bV]){bV+=bW.shift()}b3=bM(bV,b3,bZ)}}}else{if(!bZ&&bW.length>1&&e.nodeType===9&&!bT&&bE.match.ID.test(bW[0])&&!bE.match.ID.test(bW[bW.length-1])){b2=by.find(bW.shift(),e,bT);e=b2.expr?by.filter(b2.expr,b2.set)[0]:b2.set[0]}if(e){b2=bZ?{expr:bW.pop(),set:bF(bZ)}:by.find(bW.pop(),bW.length===1&&(bW[0]==="~"||bW[0]==="+")&&e.parentNode?e.parentNode:e,bT);b3=b2.expr?by.filter(b2.expr,b2.set):b2.set;if(bW.length>0){b6=bF(b3)}else{bU=false}while(bW.length){b5=bW.pop();b4=b5;if(!bE.relative[b5]){b5=""}else{b4=bW.pop()}if(b4==null){b4=e}bE.relative[b5](b6,b4,bT)}}else{b6=bW=[]}}if(!b6){b6=b3}if(!b6){by.error(b5||bV)}if(bL.call(b6)==="[object Array]"){if(!bU){bY.push.apply(bY,b6)}else{if(e&&e.nodeType===1){for(bX=0;b6[bX]!=null;bX++){if(b6[bX]&&(b6[bX]===true||b6[bX].nodeType===1&&by.contains(e,b6[bX]))){bY.push(b3[bX])}}}else{for(bX=0;b6[bX]!=null;bX++){if(b6[bX]&&b6[bX].nodeType===1){bY.push(b3[bX])}}}}}else{bF(b6,bY)}if(bR){by(bR,b1,bY,bZ);by.uniqueSort(bY)}return bY};by.uniqueSort=function(bR){if(bJ){bB=bA;bR.sort(bJ);if(bB){for(var e=1;e0};by.find=function(bX,e,bY){var bW,bS,bU,bT,bV,bR;if(!bX){return[]}for(bS=0,bU=bE.order.length;bS":function(bW,bR){var bV,bU=typeof bR==="string",bS=0,e=bW.length;if(bU&&!bQ.test(bR)){bR=bR.toLowerCase();for(;bS=0)){if(!bS){e.push(bV)}}else{if(bS){bR[bU]=false}}}}return false},ID:function(e){return e[1].replace(bK,"")},TAG:function(bR,e){return bR[1].replace(bK,"").toLowerCase()},CHILD:function(e){if(e[1]==="nth"){if(!e[2]){by.error(e[0])}e[2]=e[2].replace(/^\+|\s*/g,"");var bR=/(-?)(\d*)(?:n([+\-]?\d*))?/.exec(e[2]==="even"&&"2n"||e[2]==="odd"&&"2n+1"||!/\D/.test(e[2])&&"0n+"+e[2]||e[2]);e[2]=(bR[1]+(bR[2]||1))-0;e[3]=bR[3]-0}else{if(e[2]){by.error(e[0])}}e[0]=bI++;return e},ATTR:function(bU,bR,bS,e,bV,bW){var bT=bU[1]=bU[1].replace(bK,"");if(!bW&&bE.attrMap[bT]){bU[1]=bE.attrMap[bT]}bU[4]=(bU[4]||bU[5]||"").replace(bK,"");if(bU[2]==="~="){bU[4]=" "+bU[4]+" "}return bU},PSEUDO:function(bU,bR,bS,e,bV){if(bU[1]==="not"){if((bH.exec(bU[3])||"").length>1||/^\w/.test(bU[3])){bU[3]=by(bU[3],null,null,bR)}else{var bT=by.filter(bU[3],bR,bS,true^bV);if(!bS){e.push.apply(e,bT)}return false}}else{if(bE.match.POS.test(bU[0])||bE.match.CHILD.test(bU[0])){return true}}return bU},POS:function(e){e.unshift(true);return e}},filters:{enabled:function(e){return e.disabled===false&&e.type!=="hidden"},disabled:function(e){return e.disabled===true},checked:function(e){return e.checked===true},selected:function(e){if(e.parentNode){e.parentNode.selectedIndex}return e.selected===true},parent:function(e){return !!e.firstChild},empty:function(e){return !e.firstChild},has:function(bS,bR,e){return !!by(e[3],bS).length},header:function(e){return(/h\d/i).test(e.nodeName)},text:function(bS){var e=bS.getAttribute("type"),bR=bS.type;return bS.nodeName.toLowerCase()==="input"&&"text"===bR&&(e===bR||e===null)},radio:function(e){return e.nodeName.toLowerCase()==="input"&&"radio"===e.type},checkbox:function(e){return e.nodeName.toLowerCase()==="input"&&"checkbox"===e.type},file:function(e){return e.nodeName.toLowerCase()==="input"&&"file"===e.type},password:function(e){return e.nodeName.toLowerCase()==="input"&&"password"===e.type},submit:function(bR){var e=bR.nodeName.toLowerCase();return(e==="input"||e==="button")&&"submit"===bR.type},image:function(e){return e.nodeName.toLowerCase()==="input"&&"image"===e.type},reset:function(bR){var e=bR.nodeName.toLowerCase();return(e==="input"||e==="button")&&"reset"===bR.type},button:function(bR){var e=bR.nodeName.toLowerCase();return e==="input"&&"button"===bR.type||e==="button"},input:function(e){return(/input|select|textarea|button/i).test(e.nodeName)},focus:function(e){return e===e.ownerDocument.activeElement}},setFilters:{first:function(bR,e){return e===0},last:function(bS,bR,e,bT){return bR===bT.length-1},even:function(bR,e){return e%2===0},odd:function(bR,e){return e%2===1},lt:function(bS,bR,e){return bRe[3]-0},nth:function(bS,bR,e){return e[3]-0===bR},eq:function(bS,bR,e){return e[3]-0===bR}},filter:{PSEUDO:function(bS,bX,bW,bY){var e=bX[1],bR=bE.filters[e];if(bR){return bR(bS,bW,bX,bY)}else{if(e==="contains"){return(bS.textContent||bS.innerText||bw([bS])||"").indexOf(bX[3])>=0}else{if(e==="not"){var bT=bX[3];for(var bV=0,bU=bT.length;bV=0)}}},ID:function(bR,e){return bR.nodeType===1&&bR.getAttribute("id")===e},TAG:function(bR,e){return(e==="*"&&bR.nodeType===1)||!!bR.nodeName&&bR.nodeName.toLowerCase()===e},CLASS:function(bR,e){return(" "+(bR.className||bR.getAttribute("class"))+" ").indexOf(e)>-1},ATTR:function(bV,bT){var bS=bT[1],e=by.attr?by.attr(bV,bS):bE.attrHandle[bS]?bE.attrHandle[bS](bV):bV[bS]!=null?bV[bS]:bV.getAttribute(bS),bW=e+"",bU=bT[2],bR=bT[4];return e==null?bU==="!=":!bU&&by.attr?e!=null:bU==="="?bW===bR:bU==="*="?bW.indexOf(bR)>=0:bU==="~="?(" "+bW+" ").indexOf(bR)>=0:!bR?bW&&e!==false:bU==="!="?bW!==bR:bU==="^="?bW.indexOf(bR)===0:bU==="$="?bW.substr(bW.length-bR.length)===bR:bU==="|="?bW===bR||bW.substr(0,bR.length+1)===bR+"-":false},POS:function(bU,bR,bS,bV){var e=bR[2],bT=bE.setFilters[e];if(bT){return bT(bU,bS,bR,bV)}}}};var bD=bE.match.POS,bx=function(bR,e){return"\\"+(e-0+1)};for(var bz in bE.match){bE.match[bz]=new RegExp(bE.match[bz].source+(/(?![^\[]*\])(?![^\(]*\))/.source));bE.leftMatch[bz]=new RegExp(/(^(?:.|\r|\n)*?)/.source+bE.match[bz].source.replace(/\\(\d+)/g,bx))}var bF=function(bR,e){bR=Array.prototype.slice.call(bR,0);if(e){e.push.apply(e,bR);return e}return bR};try{Array.prototype.slice.call(av.documentElement.childNodes,0)[0].nodeType}catch(bP){bF=function(bU,bT){var bS=0,bR=bT||[];if(bL.call(bU)==="[object Array]"){Array.prototype.push.apply(bR,bU)}else{if(typeof bU.length==="number"){for(var e=bU.length;bS";e.insertBefore(bR,e.firstChild);if(av.getElementById(bS)){bE.find.ID=function(bU,bV,bW){if(typeof bV.getElementById!=="undefined"&&!bW){var bT=bV.getElementById(bU[1]);return bT?bT.id===bU[1]||typeof bT.getAttributeNode!=="undefined"&&bT.getAttributeNode("id").nodeValue===bU[1]?[bT]:L:[]}};bE.filter.ID=function(bV,bT){var bU=typeof bV.getAttributeNode!=="undefined"&&bV.getAttributeNode("id");return bV.nodeType===1&&bU&&bU.nodeValue===bT}}e.removeChild(bR);e=bR=null})();(function(){var e=av.createElement("div");e.appendChild(av.createComment(""));if(e.getElementsByTagName("*").length>0){bE.find.TAG=function(bR,bV){var bU=bV.getElementsByTagName(bR[1]);if(bR[1]==="*"){var bT=[];for(var bS=0;bU[bS];bS++){if(bU[bS].nodeType===1){bT.push(bU[bS])}}bU=bT}return bU}}e.innerHTML="";if(e.firstChild&&typeof e.firstChild.getAttribute!=="undefined"&&e.firstChild.getAttribute("href")!=="#"){bE.attrHandle.href=function(bR){return bR.getAttribute("href",2)}}e=null})();if(av.querySelectorAll){(function(){var e=by,bT=av.createElement("div"),bS="__sizzle__";bT.innerHTML="

";if(bT.querySelectorAll&&bT.querySelectorAll(".TEST").length===0){return}by=function(b4,bV,bZ,b3){bV=bV||av;if(!b3&&!by.isXML(bV)){var b2=/^(\w+$)|^\.([\w\-]+$)|^#([\w\-]+$)/.exec(b4);if(b2&&(bV.nodeType===1||bV.nodeType===9)){if(b2[1]){return bF(bV.getElementsByTagName(b4),bZ)}else{if(b2[2]&&bE.find.CLASS&&bV.getElementsByClassName){return bF(bV.getElementsByClassName(b2[2]),bZ)}}}if(bV.nodeType===9){if(b4==="body"&&bV.body){return bF([bV.body],bZ)}else{if(b2&&b2[3]){var bY=bV.getElementById(b2[3]);if(bY&&bY.parentNode){if(bY.id===b2[3]){return bF([bY],bZ)}}else{return bF([],bZ)}}}try{return bF(bV.querySelectorAll(b4),bZ)}catch(b0){}}else{if(bV.nodeType===1&&bV.nodeName.toLowerCase()!=="object"){var bW=bV,bX=bV.getAttribute("id"),bU=bX||bS,b6=bV.parentNode,b5=/^\s*[+~]/.test(b4);if(!bX){bV.setAttribute("id",bU)}else{bU=bU.replace(/'/g,"\\$&")}if(b5&&b6){bV=bV.parentNode}try{if(!b5||b6){return bF(bV.querySelectorAll("[id='"+bU+"'] "+b4),bZ)}}catch(b1){}finally{if(!bX){bW.removeAttribute("id")}}}}}return e(b4,bV,bZ,b3)};for(var bR in e){by[bR]=e[bR]}bT=null})()}(function(){var e=av.documentElement,bS=e.matchesSelector||e.mozMatchesSelector||e.webkitMatchesSelector||e.msMatchesSelector;if(bS){var bU=!bS.call(av.createElement("div"),"div"),bR=false;try{bS.call(av.documentElement,"[test!='']:sizzle")}catch(bT){bR=true}by.matchesSelector=function(bW,bY){bY=bY.replace(/\=\s*([^'"\]]*)\s*\]/g,"='$1']");if(!by.isXML(bW)){try{if(bR||!bE.match.PSEUDO.test(bY)&&!/!=/.test(bY)){var bV=bS.call(bW,bY);if(bV||!bU||bW.document&&bW.document.nodeType!==11){return bV}}}catch(bX){}}return by(bY,null,null,[bW]).length>0}}})();(function(){var e=av.createElement("div");e.innerHTML="
";if(!e.getElementsByClassName||e.getElementsByClassName("e").length===0){return}e.lastChild.className="e";if(e.getElementsByClassName("e").length===1){return}bE.order.splice(1,0,"CLASS");bE.find.CLASS=function(bR,bS,bT){if(typeof bS.getElementsByClassName!=="undefined"&&!bT){return bS.getElementsByClassName(bR[1])}};e=null})();function bv(bR,bW,bV,bZ,bX,bY){for(var bT=0,bS=bZ.length;bT0){bU=e;break}}}e=e[bR]}bZ[bT]=bU}}}if(av.documentElement.contains){by.contains=function(bR,e){return bR!==e&&(bR.contains?bR.contains(e):true)}}else{if(av.documentElement.compareDocumentPosition){by.contains=function(bR,e){return !!(bR.compareDocumentPosition(e)&16)}}else{by.contains=function(){return false}}}by.isXML=function(e){var bR=(e?e.ownerDocument||e:0).documentElement;return bR?bR.nodeName!=="HTML":false};var bM=function(bS,e,bW){var bV,bX=[],bU="",bY=e.nodeType?[e]:e;while((bV=bE.match.PSEUDO.exec(bS))){bU+=bV[0];bS=bS.replace(bE.match.PSEUDO,"")}bS=bE.relative[bS]?bS+"*":bS;for(var bT=0,bR=bY.length;bT0){for(bB=bA;bB=0:b.filter(e,this).length>0:this.filter(e).length>0)},closest:function(by,bx){var bv=[],bw,e,bz=this[0];if(b.isArray(by)){var bB=1;while(bz&&bz.ownerDocument&&bz!==bx){for(bw=0;bw-1:b.find.matchesSelector(bz,by)){bv.push(bz);break}else{bz=bz.parentNode;if(!bz||!bz.ownerDocument||bz===bx||bz.nodeType===11){break}}}}bv=bv.length>1?b.unique(bv):bv;return this.pushStack(bv,"closest",by)},index:function(e){if(!e){return(this[0]&&this[0].parentNode)?this.prevAll().length:-1}if(typeof e==="string"){return b.inArray(this[0],b(e))}return b.inArray(e.jquery?e[0]:e,this)},add:function(e,bv){var bx=typeof e==="string"?b(e,bv):b.makeArray(e&&e.nodeType?[e]:e),bw=b.merge(this.get(),bx);return this.pushStack(C(bx[0])||C(bw[0])?bw:b.unique(bw))},andSelf:function(){return this.add(this.prevObject)}});function C(e){return !e||!e.parentNode||e.parentNode.nodeType===11}b.each({parent:function(bv){var e=bv.parentNode;return e&&e.nodeType!==11?e:null},parents:function(e){return b.dir(e,"parentNode")},parentsUntil:function(bv,e,bw){return b.dir(bv,"parentNode",bw)},next:function(e){return b.nth(e,2,"nextSibling")},prev:function(e){return b.nth(e,2,"previousSibling")},nextAll:function(e){return b.dir(e,"nextSibling")},prevAll:function(e){return b.dir(e,"previousSibling")},nextUntil:function(bv,e,bw){return b.dir(bv,"nextSibling",bw)},prevUntil:function(bv,e,bw){return b.dir(bv,"previousSibling",bw)},siblings:function(e){return b.sibling(e.parentNode.firstChild,e)},children:function(e){return b.sibling(e.firstChild)},contents:function(e){return b.nodeName(e,"iframe")?e.contentDocument||e.contentWindow.document:b.makeArray(e.childNodes)}},function(e,bv){b.fn[e]=function(by,bw){var bx=b.map(this,bv,by);if(!ab.test(e)){bw=by}if(bw&&typeof bw==="string"){bx=b.filter(bw,bx)}bx=this.length>1&&!ay[e]?b.unique(bx):bx;if((this.length>1||a9.test(bw))&&aq.test(e)){bx=bx.reverse()}return this.pushStack(bx,e,P.call(arguments).join(","))}});b.extend({filter:function(bw,e,bv){if(bv){bw=":not("+bw+")"}return e.length===1?b.find.matchesSelector(e[0],bw)?[e[0]]:[]:b.find.matches(bw,e)},dir:function(bw,bv,by){var e=[],bx=bw[bv];while(bx&&bx.nodeType!==9&&(by===L||bx.nodeType!==1||!b(bx).is(by))){if(bx.nodeType===1){e.push(bx)}bx=bx[bv]}return e},nth:function(by,e,bw,bx){e=e||1;var bv=0;for(;by;by=by[bw]){if(by.nodeType===1&&++bv===e){break}}return by},sibling:function(bw,bv){var e=[];for(;bw;bw=bw.nextSibling){if(bw.nodeType===1&&bw!==bv){e.push(bw)}}return e}});function aG(bx,bw,e){bw=bw||0;if(b.isFunction(bw)){return b.grep(bx,function(bz,by){var bA=!!bw.call(bz,by,bz);return bA===e})}else{if(bw.nodeType){return b.grep(bx,function(bz,by){return(bz===bw)===e})}else{if(typeof bw==="string"){var bv=b.grep(bx,function(by){return by.nodeType===1});if(bp.test(bw)){return b.filter(bw,bv,!e)}else{bw=b.filter(bw,bv)}}}}return b.grep(bx,function(bz,by){return(b.inArray(bz,bw)>=0)===e})}function a(e){var bw=aR.split("|"),bv=e.createDocumentFragment();if(bv.createElement){while(bw.length){bv.createElement(bw.pop())}}return bv}var aR="abbr|article|aside|audio|canvas|datalist|details|figcaption|figure|footer|header|hgroup|mark|meter|nav|output|progress|section|summary|time|video",ag=/ jQuery\d+="(?:\d+|null)"/g,ar=/^\s+/,R=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/ig,d=/<([\w:]+)/,w=/",""],legend:[1,"
","
"],thead:[1,"","
"],tr:[2,"","
"],td:[3,"","
"],col:[2,"","
"],area:[1,"",""],_default:[0,"",""]},ac=a(av);ax.optgroup=ax.option;ax.tbody=ax.tfoot=ax.colgroup=ax.caption=ax.thead;ax.th=ax.td;if(!b.support.htmlSerialize){ax._default=[1,"div
","
"]}b.fn.extend({text:function(e){if(b.isFunction(e)){return this.each(function(bw){var bv=b(this);bv.text(e.call(this,bw,bv.text()))})}if(typeof e!=="object"&&e!==L){return this.empty().append((this[0]&&this[0].ownerDocument||av).createTextNode(e))}return b.text(this)},wrapAll:function(e){if(b.isFunction(e)){return this.each(function(bw){b(this).wrapAll(e.call(this,bw))})}if(this[0]){var bv=b(e,this[0].ownerDocument).eq(0).clone(true);if(this[0].parentNode){bv.insertBefore(this[0])}bv.map(function(){var bw=this;while(bw.firstChild&&bw.firstChild.nodeType===1){bw=bw.firstChild}return bw}).append(this)}return this},wrapInner:function(e){if(b.isFunction(e)){return this.each(function(bv){b(this).wrapInner(e.call(this,bv))})}return this.each(function(){var bv=b(this),bw=bv.contents();if(bw.length){bw.wrapAll(e)}else{bv.append(e)}})},wrap:function(e){var bv=b.isFunction(e);return this.each(function(bw){b(this).wrapAll(bv?e.call(this,bw):e)})},unwrap:function(){return this.parent().each(function(){if(!b.nodeName(this,"body")){b(this).replaceWith(this.childNodes)}}).end()},append:function(){return this.domManip(arguments,true,function(e){if(this.nodeType===1){this.appendChild(e)}})},prepend:function(){return this.domManip(arguments,true,function(e){if(this.nodeType===1){this.insertBefore(e,this.firstChild)}})},before:function(){if(this[0]&&this[0].parentNode){return this.domManip(arguments,false,function(bv){this.parentNode.insertBefore(bv,this)})}else{if(arguments.length){var e=b.clean(arguments);e.push.apply(e,this.toArray());return this.pushStack(e,"before",arguments)}}},after:function(){if(this[0]&&this[0].parentNode){return this.domManip(arguments,false,function(bv){this.parentNode.insertBefore(bv,this.nextSibling)})}else{if(arguments.length){var e=this.pushStack(this,"after",arguments);e.push.apply(e,b.clean(arguments));return e}}},remove:function(e,bx){for(var bv=0,bw;(bw=this[bv])!=null;bv++){if(!e||b.filter(e,[bw]).length){if(!bx&&bw.nodeType===1){b.cleanData(bw.getElementsByTagName("*"));b.cleanData([bw])}if(bw.parentNode){bw.parentNode.removeChild(bw)}}}return this},empty:function(){for(var e=0,bv;(bv=this[e])!=null;e++){if(bv.nodeType===1){b.cleanData(bv.getElementsByTagName("*"))}while(bv.firstChild){bv.removeChild(bv.firstChild)}}return this},clone:function(bv,e){bv=bv==null?false:bv;e=e==null?bv:e;return this.map(function(){return b.clone(this,bv,e)})},html:function(bx){if(bx===L){return this[0]&&this[0].nodeType===1?this[0].innerHTML.replace(ag,""):null}else{if(typeof bx==="string"&&!ae.test(bx)&&(b.support.leadingWhitespace||!ar.test(bx))&&!ax[(d.exec(bx)||["",""])[1].toLowerCase()]){bx=bx.replace(R,"<$1>");try{for(var bw=0,bv=this.length;bw1&&bw0?this.clone(true):this).get();b(bC[bA])[bv](by);bz=bz.concat(by)}return this.pushStack(bz,e,bC.selector)}}});function bg(e){if(typeof e.getElementsByTagName!=="undefined"){return e.getElementsByTagName("*")}else{if(typeof e.querySelectorAll!=="undefined"){return e.querySelectorAll("*")}else{return[]}}}function az(e){if(e.type==="checkbox"||e.type==="radio"){e.defaultChecked=e.checked}}function E(e){var bv=(e.nodeName||"").toLowerCase();if(bv==="input"){az(e)}else{if(bv!=="script"&&typeof e.getElementsByTagName!=="undefined"){b.grep(e.getElementsByTagName("input"),az)}}}function al(e){var bv=av.createElement("div");ac.appendChild(bv);bv.innerHTML=e.outerHTML;return bv.firstChild}b.extend({clone:function(by,bA,bw){var e,bv,bx,bz=b.support.html5Clone||!ah.test("<"+by.nodeName)?by.cloneNode(true):al(by);if((!b.support.noCloneEvent||!b.support.noCloneChecked)&&(by.nodeType===1||by.nodeType===11)&&!b.isXMLDoc(by)){ai(by,bz);e=bg(by);bv=bg(bz);for(bx=0;e[bx];++bx){if(bv[bx]){ai(e[bx],bv[bx])}}}if(bA){t(by,bz);if(bw){e=bg(by);bv=bg(bz);for(bx=0;e[bx];++bx){t(e[bx],bv[bx])}}}e=bv=null;return bz},clean:function(bw,by,bH,bA){var bF;by=by||av;if(typeof by.createElement==="undefined"){by=by.ownerDocument||by[0]&&by[0].ownerDocument||av}var bI=[],bB;for(var bE=0,bz;(bz=bw[bE])!=null;bE++){if(typeof bz==="number"){bz+=""}if(!bz){continue}if(typeof bz==="string"){if(!W.test(bz)){bz=by.createTextNode(bz)}else{bz=bz.replace(R,"<$1>");var bK=(d.exec(bz)||["",""])[1].toLowerCase(),bx=ax[bK]||ax._default,bD=bx[0],bv=by.createElement("div");if(by===av){ac.appendChild(bv)}else{a(by).appendChild(bv)}bv.innerHTML=bx[1]+bz+bx[2];while(bD--){bv=bv.lastChild}if(!b.support.tbody){var e=w.test(bz),bC=bK==="table"&&!e?bv.firstChild&&bv.firstChild.childNodes:bx[1]===""&&!e?bv.childNodes:[];for(bB=bC.length-1;bB>=0;--bB){if(b.nodeName(bC[bB],"tbody")&&!bC[bB].childNodes.length){bC[bB].parentNode.removeChild(bC[bB])}}}if(!b.support.leadingWhitespace&&ar.test(bz)){bv.insertBefore(by.createTextNode(ar.exec(bz)[0]),bv.firstChild)}bz=bv.childNodes}}var bG;if(!b.support.appendChecked){if(bz[0]&&typeof(bG=bz.length)==="number"){for(bB=0;bB=0){return bx+"px"}}else{return bx}}}});if(!b.support.opacity){b.cssHooks.opacity={get:function(bv,e){return au.test((e&&bv.currentStyle?bv.currentStyle.filter:bv.style.filter)||"")?(parseFloat(RegExp.$1)/100)+"":e?"1":""},set:function(by,bz){var bx=by.style,bv=by.currentStyle,e=b.isNumeric(bz)?"alpha(opacity="+bz*100+")":"",bw=bv&&bv.filter||bx.filter||"";bx.zoom=1;if(bz>=1&&b.trim(bw.replace(ak,""))===""){bx.removeAttribute("filter");if(bv&&!bv.filter){return}}bx.filter=ak.test(bw)?bw.replace(ak,e):bw+" "+e}}}b(function(){if(!b.support.reliableMarginRight){b.cssHooks.marginRight={get:function(bw,bv){var e;b.swap(bw,{display:"inline-block"},function(){if(bv){e=Z(bw,"margin-right","marginRight")}else{e=bw.style.marginRight}});return e}}}});if(av.defaultView&&av.defaultView.getComputedStyle){aI=function(by,bw){var bv,bx,e;bw=bw.replace(z,"-$1").toLowerCase();if((bx=by.ownerDocument.defaultView)&&(e=bx.getComputedStyle(by,null))){bv=e.getPropertyValue(bw);if(bv===""&&!b.contains(by.ownerDocument.documentElement,by)){bv=b.style(by,bw)}}return bv}}if(av.documentElement.currentStyle){aX=function(bz,bw){var bA,e,by,bv=bz.currentStyle&&bz.currentStyle[bw],bx=bz.style;if(bv===null&&bx&&(by=bx[bw])){bv=by}if(!bc.test(bv)&&bn.test(bv)){bA=bx.left;e=bz.runtimeStyle&&bz.runtimeStyle.left;if(e){bz.runtimeStyle.left=bz.currentStyle.left}bx.left=bw==="fontSize"?"1em":(bv||0);bv=bx.pixelLeft+"px";bx.left=bA;if(e){bz.runtimeStyle.left=e}}return bv===""?"auto":bv}}Z=aI||aX;function p(by,bw,bv){var bA=bw==="width"?by.offsetWidth:by.offsetHeight,bz=bw==="width"?an:a1,bx=0,e=bz.length;if(bA>0){if(bv!=="border"){for(;bx)<[^<]*)*<\/script>/gi,q=/^(?:select|textarea)/i,h=/\s+/,br=/([?&])_=[^&]*/,K=/^([\w\+\.\-]+:)(?:\/\/([^\/?#:]*)(?::(\d+))?)?/,A=b.fn.load,aa={},r={},aE,s,aV=["*/"]+["*"];try{aE=bl.href}catch(aw){aE=av.createElement("a");aE.href="";aE=aE.href}s=K.exec(aE.toLowerCase())||[];function f(e){return function(by,bA){if(typeof by!=="string"){bA=by;by="*"}if(b.isFunction(bA)){var bx=by.toLowerCase().split(h),bw=0,bz=bx.length,bv,bB,bC;for(;bw=0){var e=bw.slice(by,bw.length);bw=bw.slice(0,by)}var bx="GET";if(bz){if(b.isFunction(bz)){bA=bz;bz=L}else{if(typeof bz==="object"){bz=b.param(bz,b.ajaxSettings.traditional);bx="POST"}}}var bv=this;b.ajax({url:bw,type:bx,dataType:"html",data:bz,complete:function(bC,bB,bD){bD=bC.responseText;if(bC.isResolved()){bC.done(function(bE){bD=bE});bv.html(e?b("
").append(bD.replace(a6,"")).find(e):bD)}if(bA){bv.each(bA,[bD,bB,bC])}}});return this},serialize:function(){return b.param(this.serializeArray())},serializeArray:function(){return this.map(function(){return this.elements?b.makeArray(this.elements):this}).filter(function(){return this.name&&!this.disabled&&(this.checked||q.test(this.nodeName)||aZ.test(this.type))}).map(function(e,bv){var bw=b(this).val();return bw==null?null:b.isArray(bw)?b.map(bw,function(by,bx){return{name:bv.name,value:by.replace(bs,"\r\n")}}):{name:bv.name,value:bw.replace(bs,"\r\n")}}).get()}});b.each("ajaxStart ajaxStop ajaxComplete ajaxError ajaxSuccess ajaxSend".split(" "),function(e,bv){b.fn[bv]=function(bw){return this.on(bv,bw)}});b.each(["get","post"],function(e,bv){b[bv]=function(bw,by,bz,bx){if(b.isFunction(by)){bx=bx||bz;bz=by;by=L}return b.ajax({type:bv,url:bw,data:by,success:bz,dataType:bx})}});b.extend({getScript:function(e,bv){return b.get(e,L,bv,"script")},getJSON:function(e,bv,bw){return b.get(e,bv,bw,"json")},ajaxSetup:function(bv,e){if(e){am(bv,b.ajaxSettings)}else{e=bv;bv=b.ajaxSettings}am(bv,e);return bv},ajaxSettings:{url:aE,isLocal:aM.test(s[1]),global:true,type:"GET",contentType:"application/x-www-form-urlencoded",processData:true,async:true,accepts:{xml:"application/xml, text/xml",html:"text/html",text:"text/plain",json:"application/json, text/javascript","*":aV},contents:{xml:/xml/,html:/html/,json:/json/},responseFields:{xml:"responseXML",text:"responseText"},converters:{"* text":bb.String,"text html":true,"text json":b.parseJSON,"text xml":b.parseXML},flatOptions:{context:true,url:true}},ajaxPrefilter:f(aa),ajaxTransport:f(r),ajax:function(bz,bx){if(typeof bz==="object"){bx=bz;bz=L}bx=bx||{};var bD=b.ajaxSetup({},bx),bS=bD.context||bD,bG=bS!==bD&&(bS.nodeType||bS instanceof b)?b(bS):b.event,bR=b.Deferred(),bN=b.Callbacks("once memory"),bB=bD.statusCode||{},bC,bH={},bO={},bQ,by,bL,bE,bI,bA=0,bw,bK,bJ={readyState:0,setRequestHeader:function(bT,bU){if(!bA){var e=bT.toLowerCase();bT=bO[e]=bO[e]||bT;bH[bT]=bU}return this},getAllResponseHeaders:function(){return bA===2?bQ:null},getResponseHeader:function(bT){var e;if(bA===2){if(!by){by={};while((e=aD.exec(bQ))){by[e[1].toLowerCase()]=e[2]}}e=by[bT.toLowerCase()]}return e===L?null:e},overrideMimeType:function(e){if(!bA){bD.mimeType=e}return this},abort:function(e){e=e||"abort";if(bL){bL.abort(e)}bF(0,e);return this}};function bF(bZ,bU,b0,bW){if(bA===2){return}bA=2;if(bE){clearTimeout(bE)}bL=L;bQ=bW||"";bJ.readyState=bZ>0?4:0;var bT,b4,b3,bX=bU,bY=b0?bj(bD,bJ,b0):L,bV,b2;if(bZ>=200&&bZ<300||bZ===304){if(bD.ifModified){if((bV=bJ.getResponseHeader("Last-Modified"))){b.lastModified[bC]=bV}if((b2=bJ.getResponseHeader("Etag"))){b.etag[bC]=b2}}if(bZ===304){bX="notmodified";bT=true}else{try{b4=G(bD,bY);bX="success";bT=true}catch(b1){bX="parsererror";b3=b1}}}else{b3=bX;if(!bX||bZ){bX="error";if(bZ<0){bZ=0}}}bJ.status=bZ;bJ.statusText=""+(bU||bX);if(bT){bR.resolveWith(bS,[b4,bX,bJ])}else{bR.rejectWith(bS,[bJ,bX,b3])}bJ.statusCode(bB);bB=L;if(bw){bG.trigger("ajax"+(bT?"Success":"Error"),[bJ,bD,bT?b4:b3])}bN.fireWith(bS,[bJ,bX]);if(bw){bG.trigger("ajaxComplete",[bJ,bD]);if(!(--b.active)){b.event.trigger("ajaxStop")}}}bR.promise(bJ);bJ.success=bJ.done;bJ.error=bJ.fail;bJ.complete=bN.add;bJ.statusCode=function(bT){if(bT){var e;if(bA<2){for(e in bT){bB[e]=[bB[e],bT[e]]}}else{e=bT[bJ.status];bJ.then(e,e)}}return this};bD.url=((bz||bD.url)+"").replace(bq,"").replace(c,s[1]+"//");bD.dataTypes=b.trim(bD.dataType||"*").toLowerCase().split(h);if(bD.crossDomain==null){bI=K.exec(bD.url.toLowerCase());bD.crossDomain=!!(bI&&(bI[1]!=s[1]||bI[2]!=s[2]||(bI[3]||(bI[1]==="http:"?80:443))!=(s[3]||(s[1]==="http:"?80:443))))}if(bD.data&&bD.processData&&typeof bD.data!=="string"){bD.data=b.param(bD.data,bD.traditional)}aW(aa,bD,bx,bJ);if(bA===2){return false}bw=bD.global;bD.type=bD.type.toUpperCase();bD.hasContent=!aQ.test(bD.type);if(bw&&b.active++===0){b.event.trigger("ajaxStart")}if(!bD.hasContent){if(bD.data){bD.url+=(M.test(bD.url)?"&":"?")+bD.data;delete bD.data}bC=bD.url;if(bD.cache===false){var bv=b.now(),bP=bD.url.replace(br,"$1_="+bv);bD.url=bP+((bP===bD.url)?(M.test(bD.url)?"&":"?")+"_="+bv:"")}}if(bD.data&&bD.hasContent&&bD.contentType!==false||bx.contentType){bJ.setRequestHeader("Content-Type",bD.contentType)}if(bD.ifModified){bC=bC||bD.url;if(b.lastModified[bC]){bJ.setRequestHeader("If-Modified-Since",b.lastModified[bC])}if(b.etag[bC]){bJ.setRequestHeader("If-None-Match",b.etag[bC])}}bJ.setRequestHeader("Accept",bD.dataTypes[0]&&bD.accepts[bD.dataTypes[0]]?bD.accepts[bD.dataTypes[0]]+(bD.dataTypes[0]!=="*"?", "+aV+"; q=0.01":""):bD.accepts["*"]);for(bK in bD.headers){bJ.setRequestHeader(bK,bD.headers[bK])}if(bD.beforeSend&&(bD.beforeSend.call(bS,bJ,bD)===false||bA===2)){bJ.abort();return false}for(bK in {success:1,error:1,complete:1}){bJ[bK](bD[bK])}bL=aW(r,bD,bx,bJ);if(!bL){bF(-1,"No Transport")}else{bJ.readyState=1;if(bw){bG.trigger("ajaxSend",[bJ,bD])}if(bD.async&&bD.timeout>0){bE=setTimeout(function(){bJ.abort("timeout")},bD.timeout)}try{bA=1;bL.send(bH,bF)}catch(bM){if(bA<2){bF(-1,bM)}else{throw bM}}}return bJ},param:function(e,bw){var bv=[],by=function(bz,bA){bA=b.isFunction(bA)?bA():bA;bv[bv.length]=encodeURIComponent(bz)+"="+encodeURIComponent(bA)};if(bw===L){bw=b.ajaxSettings.traditional}if(b.isArray(e)||(e.jquery&&!b.isPlainObject(e))){b.each(e,function(){by(this.name,this.value)})}else{for(var bx in e){v(bx,e[bx],bw,by)}}return bv.join("&").replace(k,"+")}});function v(bw,by,bv,bx){if(b.isArray(by)){b.each(by,function(bA,bz){if(bv||ap.test(bw)){bx(bw,bz)}else{v(bw+"["+(typeof bz==="object"||b.isArray(bz)?bA:"")+"]",bz,bv,bx)}})}else{if(!bv&&by!=null&&typeof by==="object"){for(var e in by){v(bw+"["+e+"]",by[e],bv,bx)}}else{bx(bw,by)}}}b.extend({active:0,lastModified:{},etag:{}});function bj(bD,bC,bz){var bv=bD.contents,bB=bD.dataTypes,bw=bD.responseFields,by,bA,bx,e;for(bA in bw){if(bA in bz){bC[bw[bA]]=bz[bA]}}while(bB[0]==="*"){bB.shift();if(by===L){by=bD.mimeType||bC.getResponseHeader("content-type")}}if(by){for(bA in bv){if(bv[bA]&&bv[bA].test(by)){bB.unshift(bA);break}}}if(bB[0] in bz){bx=bB[0]}else{for(bA in bz){if(!bB[0]||bD.converters[bA+" "+bB[0]]){bx=bA;break}if(!e){e=bA}}bx=bx||e}if(bx){if(bx!==bB[0]){bB.unshift(bx)}return bz[bx]}}function G(bH,bz){if(bH.dataFilter){bz=bH.dataFilter(bz,bH.dataType)}var bD=bH.dataTypes,bG={},bA,bE,bw=bD.length,bB,bC=bD[0],bx,by,bF,bv,e;for(bA=1;bA=bw.duration+this.startTime){this.now=this.end;this.pos=this.state=1;this.update();bw.animatedProperties[this.prop]=true;for(bA in bw.animatedProperties){if(bw.animatedProperties[bA]!==true){e=false}}if(e){if(bw.overflow!=null&&!b.support.shrinkWrapBlocks){b.each(["","X","Y"],function(bC,bD){bz.style["overflow"+bD]=bw.overflow[bC]})}if(bw.hide){b(bz).hide()}if(bw.hide||bw.show){for(bA in bw.animatedProperties){b.style(bz,bA,bw.orig[bA]);b.removeData(bz,"fxshow"+bA,true);b.removeData(bz,"toggle"+bA,true)}}bv=bw.complete;if(bv){bw.complete=false;bv.call(bz)}}return false}else{if(bw.duration==Infinity){this.now=bx}else{bB=bx-this.startTime;this.state=bB/bw.duration;this.pos=b.easing[bw.animatedProperties[this.prop]](this.state,bB,0,1,bw.duration);this.now=this.start+((this.end-this.start)*this.pos)}this.update()}return true}};b.extend(b.fx,{tick:function(){var bw,bv=b.timers,e=0;for(;e").appendTo(e),bw=bv.css("display");bv.remove();if(bw==="none"||bw===""){if(!a8){a8=av.createElement("iframe");a8.frameBorder=a8.width=a8.height=0}e.appendChild(a8);if(!m||!a8.createElement){m=(a8.contentWindow||a8.contentDocument).document;m.write((av.compatMode==="CSS1Compat"?"":"")+"");m.close()}bv=m.createElement(bx);m.body.appendChild(bv);bw=b.css(bv,"display");e.removeChild(a8)}Q[bx]=bw}return Q[bx]}var V=/^t(?:able|d|h)$/i,ad=/^(?:body|html)$/i;if("getBoundingClientRect" in av.documentElement){b.fn.offset=function(bI){var by=this[0],bB;if(bI){return this.each(function(e){b.offset.setOffset(this,bI,e)})}if(!by||!by.ownerDocument){return null}if(by===by.ownerDocument.body){return b.offset.bodyOffset(by)}try{bB=by.getBoundingClientRect()}catch(bF){}var bH=by.ownerDocument,bw=bH.documentElement;if(!bB||!b.contains(bw,by)){return bB?{top:bB.top,left:bB.left}:{top:0,left:0}}var bC=bH.body,bD=aK(bH),bA=bw.clientTop||bC.clientTop||0,bE=bw.clientLeft||bC.clientLeft||0,bv=bD.pageYOffset||b.support.boxModel&&bw.scrollTop||bC.scrollTop,bz=bD.pageXOffset||b.support.boxModel&&bw.scrollLeft||bC.scrollLeft,bG=bB.top+bv-bA,bx=bB.left+bz-bE;return{top:bG,left:bx}}}else{b.fn.offset=function(bF){var bz=this[0];if(bF){return this.each(function(bG){b.offset.setOffset(this,bF,bG)})}if(!bz||!bz.ownerDocument){return null}if(bz===bz.ownerDocument.body){return b.offset.bodyOffset(bz)}var bC,bw=bz.offsetParent,bv=bz,bE=bz.ownerDocument,bx=bE.documentElement,bA=bE.body,bB=bE.defaultView,e=bB?bB.getComputedStyle(bz,null):bz.currentStyle,bD=bz.offsetTop,by=bz.offsetLeft;while((bz=bz.parentNode)&&bz!==bA&&bz!==bx){if(b.support.fixedPosition&&e.position==="fixed"){break}bC=bB?bB.getComputedStyle(bz,null):bz.currentStyle;bD-=bz.scrollTop;by-=bz.scrollLeft;if(bz===bw){bD+=bz.offsetTop;by+=bz.offsetLeft;if(b.support.doesNotAddBorder&&!(b.support.doesAddBorderForTableAndCells&&V.test(bz.nodeName))){bD+=parseFloat(bC.borderTopWidth)||0;by+=parseFloat(bC.borderLeftWidth)||0}bv=bw;bw=bz.offsetParent}if(b.support.subtractsBorderForOverflowNotVisible&&bC.overflow!=="visible"){bD+=parseFloat(bC.borderTopWidth)||0;by+=parseFloat(bC.borderLeftWidth)||0}e=bC}if(e.position==="relative"||e.position==="static"){bD+=bA.offsetTop;by+=bA.offsetLeft}if(b.support.fixedPosition&&e.position==="fixed"){bD+=Math.max(bx.scrollTop,bA.scrollTop);by+=Math.max(bx.scrollLeft,bA.scrollLeft)}return{top:bD,left:by}}}b.offset={bodyOffset:function(e){var bw=e.offsetTop,bv=e.offsetLeft;if(b.support.doesNotIncludeMarginInBodyOffset){bw+=parseFloat(b.css(e,"marginTop"))||0;bv+=parseFloat(b.css(e,"marginLeft"))||0}return{top:bw,left:bv}},setOffset:function(bx,bG,bA){var bB=b.css(bx,"position");if(bB==="static"){bx.style.position="relative"}var bz=b(bx),bv=bz.offset(),e=b.css(bx,"top"),bE=b.css(bx,"left"),bF=(bB==="absolute"||bB==="fixed")&&b.inArray("auto",[e,bE])>-1,bD={},bC={},bw,by;if(bF){bC=bz.position();bw=bC.top;by=bC.left}else{bw=parseFloat(e)||0;by=parseFloat(bE)||0}if(b.isFunction(bG)){bG=bG.call(bx,bA,bv)}if(bG.top!=null){bD.top=(bG.top-bv.top)+bw}if(bG.left!=null){bD.left=(bG.left-bv.left)+by}if("using" in bG){bG.using.call(bx,bD)}else{bz.css(bD)}}};b.fn.extend({position:function(){if(!this[0]){return null}var bw=this[0],bv=this.offsetParent(),bx=this.offset(),e=ad.test(bv[0].nodeName)?{top:0,left:0}:bv.offset();bx.top-=parseFloat(b.css(bw,"marginTop"))||0;bx.left-=parseFloat(b.css(bw,"marginLeft"))||0;e.top+=parseFloat(b.css(bv[0],"borderTopWidth"))||0;e.left+=parseFloat(b.css(bv[0],"borderLeftWidth"))||0;return{top:bx.top-e.top,left:bx.left-e.left}},offsetParent:function(){return this.map(function(){var e=this.offsetParent||av.body;while(e&&(!ad.test(e.nodeName)&&b.css(e,"position")==="static")){e=e.offsetParent}return e})}});b.each(["Left","Top"],function(bv,e){var bw="scroll"+e;b.fn[bw]=function(bz){var bx,by;if(bz===L){bx=this[0];if(!bx){return null}by=aK(bx);return by?("pageXOffset" in by)?by[bv?"pageYOffset":"pageXOffset"]:b.support.boxModel&&by.document.documentElement[bw]||by.document.body[bw]:bx[bw]}return this.each(function(){by=aK(this);if(by){by.scrollTo(!bv?bz:b(by).scrollLeft(),bv?bz:b(by).scrollTop())}else{this[bw]=bz}})}});function aK(e){return b.isWindow(e)?e:e.nodeType===9?e.defaultView||e.parentWindow:false}b.each(["Height","Width"],function(bv,e){var bw=e.toLowerCase();b.fn["inner"+e]=function(){var bx=this[0];return bx?bx.style?parseFloat(b.css(bx,bw,"padding")):this[bw]():null};b.fn["outer"+e]=function(by){var bx=this[0];return bx?bx.style?parseFloat(b.css(bx,bw,by?"margin":"border")):this[bw]():null};b.fn[bw]=function(bz){var bA=this[0];if(!bA){return bz==null?null:this}if(b.isFunction(bz)){return this.each(function(bE){var bD=b(this);bD[bw](bz.call(this,bE,bD[bw]()))})}if(b.isWindow(bA)){var bB=bA.document.documentElement["client"+e],bx=bA.document.body;return bA.document.compatMode==="CSS1Compat"&&bB||bx&&bx["client"+e]||bB}else{if(bA.nodeType===9){return Math.max(bA.documentElement["client"+e],bA.body["scroll"+e],bA.documentElement["scroll"+e],bA.body["offset"+e],bA.documentElement["offset"+e])}else{if(bz===L){var bC=b.css(bA,bw),by=parseFloat(bC);return b.isNumeric(by)?by:bC}else{return this.css(bw,typeof bz==="string"?bz:bz+"px")}}}}});bb.jQuery=bb.$=b;if(typeof define==="function"&&define.amd&&define.amd.jQuery){define("jquery",[],function(){return b})}})(window);/*! - * jQuery UI 1.8.18 - * - * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) - * Dual licensed under the MIT or GPL Version 2 licenses. - * http://jquery.org/license - * - * http://docs.jquery.com/UI - */ -(function(a,d){a.ui=a.ui||{};if(a.ui.version){return}a.extend(a.ui,{version:"1.8.18",keyCode:{ALT:18,BACKSPACE:8,CAPS_LOCK:20,COMMA:188,COMMAND:91,COMMAND_LEFT:91,COMMAND_RIGHT:93,CONTROL:17,DELETE:46,DOWN:40,END:35,ENTER:13,ESCAPE:27,HOME:36,INSERT:45,LEFT:37,MENU:93,NUMPAD_ADD:107,NUMPAD_DECIMAL:110,NUMPAD_DIVIDE:111,NUMPAD_ENTER:108,NUMPAD_MULTIPLY:106,NUMPAD_SUBTRACT:109,PAGE_DOWN:34,PAGE_UP:33,PERIOD:190,RIGHT:39,SHIFT:16,SPACE:32,TAB:9,UP:38,WINDOWS:91}});a.fn.extend({propAttr:a.fn.prop||a.fn.attr,_focus:a.fn.focus,focus:function(e,f){return typeof e==="number"?this.each(function(){var g=this;setTimeout(function(){a(g).focus();if(f){f.call(g)}},e)}):this._focus.apply(this,arguments)},scrollParent:function(){var e;if((a.browser.msie&&(/(static|relative)/).test(this.css("position")))||(/absolute/).test(this.css("position"))){e=this.parents().filter(function(){return(/(relative|absolute|fixed)/).test(a.curCSS(this,"position",1))&&(/(auto|scroll)/).test(a.curCSS(this,"overflow",1)+a.curCSS(this,"overflow-y",1)+a.curCSS(this,"overflow-x",1))}).eq(0)}else{e=this.parents().filter(function(){return(/(auto|scroll)/).test(a.curCSS(this,"overflow",1)+a.curCSS(this,"overflow-y",1)+a.curCSS(this,"overflow-x",1))}).eq(0)}return(/fixed/).test(this.css("position"))||!e.length?a(document):e},zIndex:function(h){if(h!==d){return this.css("zIndex",h)}if(this.length){var f=a(this[0]),e,g;while(f.length&&f[0]!==document){e=f.css("position");if(e==="absolute"||e==="relative"||e==="fixed"){g=parseInt(f.css("zIndex"),10);if(!isNaN(g)&&g!==0){return g}}f=f.parent()}}return 0},disableSelection:function(){return this.bind((a.support.selectstart?"selectstart":"mousedown")+".ui-disableSelection",function(e){e.preventDefault()})},enableSelection:function(){return this.unbind(".ui-disableSelection")}});a.each(["Width","Height"],function(g,e){var f=e==="Width"?["Left","Right"]:["Top","Bottom"],h=e.toLowerCase(),k={innerWidth:a.fn.innerWidth,innerHeight:a.fn.innerHeight,outerWidth:a.fn.outerWidth,outerHeight:a.fn.outerHeight};function j(m,l,i,n){a.each(f,function(){l-=parseFloat(a.curCSS(m,"padding"+this,true))||0;if(i){l-=parseFloat(a.curCSS(m,"border"+this+"Width",true))||0}if(n){l-=parseFloat(a.curCSS(m,"margin"+this,true))||0}});return l}a.fn["inner"+e]=function(i){if(i===d){return k["inner"+e].call(this)}return this.each(function(){a(this).css(h,j(this,i)+"px")})};a.fn["outer"+e]=function(i,l){if(typeof i!=="number"){return k["outer"+e].call(this,i)}return this.each(function(){a(this).css(h,j(this,i,true,l)+"px")})}});function c(g,e){var j=g.nodeName.toLowerCase();if("area"===j){var i=g.parentNode,h=i.name,f;if(!g.href||!h||i.nodeName.toLowerCase()!=="map"){return false}f=a("img[usemap=#"+h+"]")[0];return !!f&&b(f)}return(/input|select|textarea|button|object/.test(j)?!g.disabled:"a"==j?g.href||e:e)&&b(g)}function b(e){return !a(e).parents().andSelf().filter(function(){return a.curCSS(this,"visibility")==="hidden"||a.expr.filters.hidden(this)}).length}a.extend(a.expr[":"],{data:function(g,f,e){return !!a.data(g,e[3])},focusable:function(e){return c(e,!isNaN(a.attr(e,"tabindex")))},tabbable:function(g){var e=a.attr(g,"tabindex"),f=isNaN(e);return(f||e>=0)&&c(g,!f)}});a(function(){var e=document.body,f=e.appendChild(f=document.createElement("div"));f.offsetHeight;a.extend(f.style,{minHeight:"100px",height:"auto",padding:0,borderWidth:0});a.support.minHeight=f.offsetHeight===100;a.support.selectstart="onselectstart" in f;e.removeChild(f).style.display="none"});a.extend(a.ui,{plugin:{add:function(f,g,j){var h=a.ui[f].prototype;for(var e in j){h.plugins[e]=h.plugins[e]||[];h.plugins[e].push([g,j[e]])}},call:function(e,g,f){var j=e.plugins[g];if(!j||!e.element[0].parentNode){return}for(var h=0;h0){return true}h[e]=1;g=(h[e]>0);h[e]=0;return g},isOverAxis:function(f,e,g){return(f>e)&&(f<(e+g))},isOver:function(j,f,i,h,e,g){return a.ui.isOverAxis(j,i,e)&&a.ui.isOverAxis(f,h,g)}})})(jQuery);/*! - * jQuery UI Widget 1.8.18 - * - * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) - * Dual licensed under the MIT or GPL Version 2 licenses. - * http://jquery.org/license - * - * http://docs.jquery.com/UI/Widget - */ -(function(b,d){if(b.cleanData){var c=b.cleanData;b.cleanData=function(f){for(var g=0,h;(h=f[g])!=null;g++){try{b(h).triggerHandler("remove")}catch(j){}}c(f)}}else{var a=b.fn.remove;b.fn.remove=function(e,f){return this.each(function(){if(!f){if(!e||b.filter(e,[this]).length){b("*",this).add([this]).each(function(){try{b(this).triggerHandler("remove")}catch(g){}})}}return a.call(b(this),e,f)})}}b.widget=function(f,h,e){var g=f.split(".")[0],j;f=f.split(".")[1];j=g+"-"+f;if(!e){e=h;h=b.Widget}b.expr[":"][j]=function(k){return !!b.data(k,f)};b[g]=b[g]||{};b[g][f]=function(k,l){if(arguments.length){this._createWidget(k,l)}};var i=new h();i.options=b.extend(true,{},i.options);b[g][f].prototype=b.extend(true,i,{namespace:g,widgetName:f,widgetEventPrefix:b[g][f].prototype.widgetEventPrefix||f,widgetBaseClass:j},e);b.widget.bridge(f,b[g][f])};b.widget.bridge=function(f,e){b.fn[f]=function(i){var g=typeof i==="string",h=Array.prototype.slice.call(arguments,1),j=this;i=!g&&h.length?b.extend.apply(null,[true,i].concat(h)):i;if(g&&i.charAt(0)==="_"){return j}if(g){this.each(function(){var k=b.data(this,f),l=k&&b.isFunction(k[i])?k[i].apply(k,h):k;if(l!==k&&l!==d){j=l;return false}})}else{this.each(function(){var k=b.data(this,f);if(k){k.option(i||{})._init()}else{b.data(this,f,new e(i,this))}})}return j}};b.Widget=function(e,f){if(arguments.length){this._createWidget(e,f)}};b.Widget.prototype={widgetName:"widget",widgetEventPrefix:"",options:{disabled:false},_createWidget:function(f,g){b.data(g,this.widgetName,this);this.element=b(g);this.options=b.extend(true,{},this.options,this._getCreateOptions(),f);var e=this;this.element.bind("remove."+this.widgetName,function(){e.destroy()});this._create();this._trigger("create");this._init()},_getCreateOptions:function(){return b.metadata&&b.metadata.get(this.element[0])[this.widgetName]},_create:function(){},_init:function(){},destroy:function(){this.element.unbind("."+this.widgetName).removeData(this.widgetName);this.widget().unbind("."+this.widgetName).removeAttr("aria-disabled").removeClass(this.widgetBaseClass+"-disabled ui-state-disabled")},widget:function(){return this.element},option:function(f,g){var e=f;if(arguments.length===0){return b.extend({},this.options)}if(typeof f==="string"){if(g===d){return this.options[f]}e={};e[f]=g}this._setOptions(e);return this},_setOptions:function(f){var e=this;b.each(f,function(g,h){e._setOption(g,h)});return this},_setOption:function(e,f){this.options[e]=f;if(e==="disabled"){this.widget()[f?"addClass":"removeClass"](this.widgetBaseClass+"-disabled ui-state-disabled").attr("aria-disabled",f)}return this},enable:function(){return this._setOption("disabled",false)},disable:function(){return this._setOption("disabled",true)},_trigger:function(e,f,g){var j,i,h=this.options[e];g=g||{};f=b.Event(f);f.type=(e===this.widgetEventPrefix?e:this.widgetEventPrefix+e).toLowerCase();f.target=this.element[0];i=f.originalEvent;if(i){for(j in i){if(!(j in f)){f[j]=i[j]}}}this.element.trigger(f,g);return !(b.isFunction(h)&&h.call(this.element[0],f,g)===false||f.isDefaultPrevented())}}})(jQuery);/*! - * jQuery UI Mouse 1.8.18 - * - * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) - * Dual licensed under the MIT or GPL Version 2 licenses. - * http://jquery.org/license - * - * http://docs.jquery.com/UI/Mouse - * - * Depends: - * jquery.ui.widget.js - */ -(function(b,c){var a=false;b(document).mouseup(function(d){a=false});b.widget("ui.mouse",{options:{cancel:":input,option",distance:1,delay:0},_mouseInit:function(){var d=this;this.element.bind("mousedown."+this.widgetName,function(e){return d._mouseDown(e)}).bind("click."+this.widgetName,function(e){if(true===b.data(e.target,d.widgetName+".preventClickEvent")){b.removeData(e.target,d.widgetName+".preventClickEvent");e.stopImmediatePropagation();return false}});this.started=false},_mouseDestroy:function(){this.element.unbind("."+this.widgetName)},_mouseDown:function(f){if(a){return}(this._mouseStarted&&this._mouseUp(f));this._mouseDownEvent=f;var e=this,g=(f.which==1),d=(typeof this.options.cancel=="string"&&f.target.nodeName?b(f.target).closest(this.options.cancel).length:false);if(!g||d||!this._mouseCapture(f)){return true}this.mouseDelayMet=!this.options.delay;if(!this.mouseDelayMet){this._mouseDelayTimer=setTimeout(function(){e.mouseDelayMet=true},this.options.delay)}if(this._mouseDistanceMet(f)&&this._mouseDelayMet(f)){this._mouseStarted=(this._mouseStart(f)!==false);if(!this._mouseStarted){f.preventDefault();return true}}if(true===b.data(f.target,this.widgetName+".preventClickEvent")){b.removeData(f.target,this.widgetName+".preventClickEvent")}this._mouseMoveDelegate=function(h){return e._mouseMove(h)};this._mouseUpDelegate=function(h){return e._mouseUp(h)};b(document).bind("mousemove."+this.widgetName,this._mouseMoveDelegate).bind("mouseup."+this.widgetName,this._mouseUpDelegate);f.preventDefault();a=true;return true},_mouseMove:function(d){if(b.browser.msie&&!(document.documentMode>=9)&&!d.button){return this._mouseUp(d)}if(this._mouseStarted){this._mouseDrag(d);return d.preventDefault()}if(this._mouseDistanceMet(d)&&this._mouseDelayMet(d)){this._mouseStarted=(this._mouseStart(this._mouseDownEvent,d)!==false);(this._mouseStarted?this._mouseDrag(d):this._mouseUp(d))}return !this._mouseStarted},_mouseUp:function(d){b(document).unbind("mousemove."+this.widgetName,this._mouseMoveDelegate).unbind("mouseup."+this.widgetName,this._mouseUpDelegate);if(this._mouseStarted){this._mouseStarted=false;if(d.target==this._mouseDownEvent.target){b.data(d.target,this.widgetName+".preventClickEvent",true)}this._mouseStop(d)}return false},_mouseDistanceMet:function(d){return(Math.max(Math.abs(this._mouseDownEvent.pageX-d.pageX),Math.abs(this._mouseDownEvent.pageY-d.pageY))>=this.options.distance)},_mouseDelayMet:function(d){return this.mouseDelayMet},_mouseStart:function(d){},_mouseDrag:function(d){},_mouseStop:function(d){},_mouseCapture:function(d){return true}})})(jQuery);(function(c,d){c.widget("ui.resizable",c.ui.mouse,{widgetEventPrefix:"resize",options:{alsoResize:false,animate:false,animateDuration:"slow",animateEasing:"swing",aspectRatio:false,autoHide:false,containment:false,ghost:false,grid:false,handles:"e,s,se",helper:false,maxHeight:null,maxWidth:null,minHeight:10,minWidth:10,zIndex:1000},_create:function(){var f=this,k=this.options;this.element.addClass("ui-resizable");c.extend(this,{_aspectRatio:!!(k.aspectRatio),aspectRatio:k.aspectRatio,originalElement:this.element,_proportionallyResizeElements:[],_helper:k.helper||k.ghost||k.animate?k.helper||"ui-resizable-helper":null});if(this.element[0].nodeName.match(/canvas|textarea|input|select|button|img/i)){this.element.wrap(c('
').css({position:this.element.css("position"),width:this.element.outerWidth(),height:this.element.outerHeight(),top:this.element.css("top"),left:this.element.css("left")}));this.element=this.element.parent().data("resizable",this.element.data("resizable"));this.elementIsWrapper=true;this.element.css({marginLeft:this.originalElement.css("marginLeft"),marginTop:this.originalElement.css("marginTop"),marginRight:this.originalElement.css("marginRight"),marginBottom:this.originalElement.css("marginBottom")});this.originalElement.css({marginLeft:0,marginTop:0,marginRight:0,marginBottom:0});this.originalResizeStyle=this.originalElement.css("resize");this.originalElement.css("resize","none");this._proportionallyResizeElements.push(this.originalElement.css({position:"static",zoom:1,display:"block"}));this.originalElement.css({margin:this.originalElement.css("margin")});this._proportionallyResize()}this.handles=k.handles||(!c(".ui-resizable-handle",this.element).length?"e,s,se":{n:".ui-resizable-n",e:".ui-resizable-e",s:".ui-resizable-s",w:".ui-resizable-w",se:".ui-resizable-se",sw:".ui-resizable-sw",ne:".ui-resizable-ne",nw:".ui-resizable-nw"});if(this.handles.constructor==String){if(this.handles=="all"){this.handles="n,e,s,w,se,sw,ne,nw"}var l=this.handles.split(",");this.handles={};for(var g=0;g
');if(/sw|se|ne|nw/.test(j)){h.css({zIndex:++k.zIndex})}if("se"==j){h.addClass("ui-icon ui-icon-gripsmall-diagonal-se")}this.handles[j]=".ui-resizable-"+j;this.element.append(h)}}this._renderAxis=function(q){q=q||this.element;for(var n in this.handles){if(this.handles[n].constructor==String){this.handles[n]=c(this.handles[n],this.element).show()}if(this.elementIsWrapper&&this.originalElement[0].nodeName.match(/textarea|input|select|button/i)){var o=c(this.handles[n],this.element),p=0;p=/sw|ne|nw|se|n|s/.test(n)?o.outerHeight():o.outerWidth();var m=["padding",/ne|nw|n/.test(n)?"Top":/se|sw|s/.test(n)?"Bottom":/^e$/.test(n)?"Right":"Left"].join("");q.css(m,p);this._proportionallyResize()}if(!c(this.handles[n]).length){continue}}};this._renderAxis(this.element);this._handles=c(".ui-resizable-handle",this.element).disableSelection();this._handles.mouseover(function(){if(!f.resizing){if(this.className){var i=this.className.match(/ui-resizable-(se|sw|ne|nw|n|e|s|w)/i)}f.axis=i&&i[1]?i[1]:"se"}});if(k.autoHide){this._handles.hide();c(this.element).addClass("ui-resizable-autohide").hover(function(){if(k.disabled){return}c(this).removeClass("ui-resizable-autohide");f._handles.show()},function(){if(k.disabled){return}if(!f.resizing){c(this).addClass("ui-resizable-autohide");f._handles.hide()}})}this._mouseInit()},destroy:function(){this._mouseDestroy();var e=function(g){c(g).removeClass("ui-resizable ui-resizable-disabled ui-resizable-resizing").removeData("resizable").unbind(".resizable").find(".ui-resizable-handle").remove()};if(this.elementIsWrapper){e(this.element);var f=this.element;f.after(this.originalElement.css({position:f.css("position"),width:f.outerWidth(),height:f.outerHeight(),top:f.css("top"),left:f.css("left")})).remove()}this.originalElement.css("resize",this.originalResizeStyle);e(this.originalElement);return this},_mouseCapture:function(f){var g=false;for(var e in this.handles){if(c(this.handles[e])[0]==f.target){g=true}}return !this.options.disabled&&g},_mouseStart:function(g){var j=this.options,f=this.element.position(),e=this.element;this.resizing=true;this.documentScroll={top:c(document).scrollTop(),left:c(document).scrollLeft()};if(e.is(".ui-draggable")||(/absolute/).test(e.css("position"))){e.css({position:"absolute",top:f.top,left:f.left})}this._renderProxy();var k=b(this.helper.css("left")),h=b(this.helper.css("top"));if(j.containment){k+=c(j.containment).scrollLeft()||0;h+=c(j.containment).scrollTop()||0}this.offset=this.helper.offset();this.position={left:k,top:h};this.size=this._helper?{width:e.outerWidth(),height:e.outerHeight()}:{width:e.width(),height:e.height()};this.originalSize=this._helper?{width:e.outerWidth(),height:e.outerHeight()}:{width:e.width(),height:e.height()};this.originalPosition={left:k,top:h};this.sizeDiff={width:e.outerWidth()-e.width(),height:e.outerHeight()-e.height()};this.originalMousePosition={left:g.pageX,top:g.pageY};this.aspectRatio=(typeof j.aspectRatio=="number")?j.aspectRatio:((this.originalSize.width/this.originalSize.height)||1);var i=c(".ui-resizable-"+this.axis).css("cursor");c("body").css("cursor",i=="auto"?this.axis+"-resize":i);e.addClass("ui-resizable-resizing");this._propagate("start",g);return true},_mouseDrag:function(e){var h=this.helper,g=this.options,m={},q=this,j=this.originalMousePosition,n=this.axis;var r=(e.pageX-j.left)||0,p=(e.pageY-j.top)||0;var i=this._change[n];if(!i){return false}var l=i.apply(this,[e,r,p]),k=c.browser.msie&&c.browser.version<7,f=this.sizeDiff;this._updateVirtualBoundaries(e.shiftKey);if(this._aspectRatio||e.shiftKey){l=this._updateRatio(l,e)}l=this._respectSize(l,e);this._propagate("resize",e);h.css({top:this.position.top+"px",left:this.position.left+"px",width:this.size.width+"px",height:this.size.height+"px"});if(!this._helper&&this._proportionallyResizeElements.length){this._proportionallyResize()}this._updateCache(l);this._trigger("resize",e,this.ui());return false},_mouseStop:function(h){this.resizing=false;var i=this.options,m=this;if(this._helper){var g=this._proportionallyResizeElements,e=g.length&&(/textarea/i).test(g[0].nodeName),f=e&&c.ui.hasScroll(g[0],"left")?0:m.sizeDiff.height,k=e?0:m.sizeDiff.width;var n={width:(m.helper.width()-k),height:(m.helper.height()-f)},j=(parseInt(m.element.css("left"),10)+(m.position.left-m.originalPosition.left))||null,l=(parseInt(m.element.css("top"),10)+(m.position.top-m.originalPosition.top))||null;if(!i.animate){this.element.css(c.extend(n,{top:l,left:j}))}m.helper.height(m.size.height);m.helper.width(m.size.width);if(this._helper&&!i.animate){this._proportionallyResize()}}c("body").css("cursor","auto");this.element.removeClass("ui-resizable-resizing");this._propagate("stop",h);if(this._helper){this.helper.remove()}return false},_updateVirtualBoundaries:function(g){var j=this.options,i,h,f,k,e;e={minWidth:a(j.minWidth)?j.minWidth:0,maxWidth:a(j.maxWidth)?j.maxWidth:Infinity,minHeight:a(j.minHeight)?j.minHeight:0,maxHeight:a(j.maxHeight)?j.maxHeight:Infinity};if(this._aspectRatio||g){i=e.minHeight*this.aspectRatio;f=e.minWidth/this.aspectRatio;h=e.maxHeight*this.aspectRatio;k=e.maxWidth/this.aspectRatio;if(i>e.minWidth){e.minWidth=i}if(f>e.minHeight){e.minHeight=f}if(hl.width),s=a(l.height)&&i.minHeight&&(i.minHeight>l.height);if(h){l.width=i.minWidth}if(s){l.height=i.minHeight}if(t){l.width=i.maxWidth}if(m){l.height=i.maxHeight}var f=this.originalPosition.left+this.originalSize.width,p=this.position.top+this.size.height;var k=/sw|nw|w/.test(q),e=/nw|ne|n/.test(q);if(h&&k){l.left=f-i.minWidth}if(t&&k){l.left=f-i.maxWidth}if(s&&e){l.top=p-i.minHeight}if(m&&e){l.top=p-i.maxHeight}var n=!l.width&&!l.height;if(n&&!l.left&&l.top){l.top=null}else{if(n&&!l.top&&l.left){l.left=null}}return l},_proportionallyResize:function(){var k=this.options;if(!this._proportionallyResizeElements.length){return}var g=this.helper||this.element;for(var f=0;f');var e=c.browser.msie&&c.browser.version<7,g=(e?1:0),h=(e?2:-1);this.helper.addClass(this._helper).css({width:this.element.outerWidth()+h,height:this.element.outerHeight()+h,position:"absolute",left:this.elementOffset.left-g+"px",top:this.elementOffset.top-g+"px",zIndex:++i.zIndex});this.helper.appendTo("body").disableSelection()}else{this.helper=this.element}},_change:{e:function(g,f,e){return{width:this.originalSize.width+f}},w:function(h,f,e){var j=this.options,g=this.originalSize,i=this.originalPosition;return{left:i.left+f,width:g.width-f}},n:function(h,f,e){var j=this.options,g=this.originalSize,i=this.originalPosition;return{top:i.top+e,height:g.height-e}},s:function(g,f,e){return{height:this.originalSize.height+e}},se:function(g,f,e){return c.extend(this._change.s.apply(this,arguments),this._change.e.apply(this,[g,f,e]))},sw:function(g,f,e){return c.extend(this._change.s.apply(this,arguments),this._change.w.apply(this,[g,f,e]))},ne:function(g,f,e){return c.extend(this._change.n.apply(this,arguments),this._change.e.apply(this,[g,f,e]))},nw:function(g,f,e){return c.extend(this._change.n.apply(this,arguments),this._change.w.apply(this,[g,f,e]))}},_propagate:function(f,e){c.ui.plugin.call(this,f,[e,this.ui()]);(f!="resize"&&this._trigger(f,e,this.ui()))},plugins:{},ui:function(){return{originalElement:this.originalElement,element:this.element,helper:this.helper,position:this.position,size:this.size,originalSize:this.originalSize,originalPosition:this.originalPosition}}});c.extend(c.ui.resizable,{version:"1.8.18"});c.ui.plugin.add("resizable","alsoResize",{start:function(f,g){var e=c(this).data("resizable"),i=e.options;var h=function(j){c(j).each(function(){var k=c(this);k.data("resizable-alsoresize",{width:parseInt(k.width(),10),height:parseInt(k.height(),10),left:parseInt(k.css("left"),10),top:parseInt(k.css("top"),10)})})};if(typeof(i.alsoResize)=="object"&&!i.alsoResize.parentNode){if(i.alsoResize.length){i.alsoResize=i.alsoResize[0];h(i.alsoResize)}else{c.each(i.alsoResize,function(j){h(j)})}}else{h(i.alsoResize)}},resize:function(g,i){var f=c(this).data("resizable"),j=f.options,h=f.originalSize,l=f.originalPosition;var k={height:(f.size.height-h.height)||0,width:(f.size.width-h.width)||0,top:(f.position.top-l.top)||0,left:(f.position.left-l.left)||0},e=function(m,n){c(m).each(function(){var q=c(this),r=c(this).data("resizable-alsoresize"),p={},o=n&&n.length?n:q.parents(i.originalElement[0]).length?["width","height"]:["width","height","top","left"];c.each(o,function(s,u){var t=(r[u]||0)+(k[u]||0);if(t&&t>=0){p[u]=t||null}});q.css(p)})};if(typeof(j.alsoResize)=="object"&&!j.alsoResize.nodeType){c.each(j.alsoResize,function(m,n){e(m,n)})}else{e(j.alsoResize)}},stop:function(e,f){c(this).removeData("resizable-alsoresize")}});c.ui.plugin.add("resizable","animate",{stop:function(i,n){var p=c(this).data("resizable"),j=p.options;var h=p._proportionallyResizeElements,e=h.length&&(/textarea/i).test(h[0].nodeName),f=e&&c.ui.hasScroll(h[0],"left")?0:p.sizeDiff.height,l=e?0:p.sizeDiff.width;var g={width:(p.size.width-l),height:(p.size.height-f)},k=(parseInt(p.element.css("left"),10)+(p.position.left-p.originalPosition.left))||null,m=(parseInt(p.element.css("top"),10)+(p.position.top-p.originalPosition.top))||null;p.element.animate(c.extend(g,m&&k?{top:m,left:k}:{}),{duration:j.animateDuration,easing:j.animateEasing,step:function(){var o={width:parseInt(p.element.css("width"),10),height:parseInt(p.element.css("height"),10),top:parseInt(p.element.css("top"),10),left:parseInt(p.element.css("left"),10)};if(h&&h.length){c(h[0]).css({width:o.width,height:o.height})}p._updateCache(o);p._propagate("resize",i)}})}});c.ui.plugin.add("resizable","containment",{start:function(f,r){var t=c(this).data("resizable"),j=t.options,l=t.element;var g=j.containment,k=(g instanceof c)?g.get(0):(/parent/.test(g))?l.parent().get(0):g;if(!k){return}t.containerElement=c(k);if(/document/.test(g)||g==document){t.containerOffset={left:0,top:0};t.containerPosition={left:0,top:0};t.parentData={element:c(document),left:0,top:0,width:c(document).width(),height:c(document).height()||document.body.parentNode.scrollHeight}}else{var n=c(k),i=[];c(["Top","Right","Left","Bottom"]).each(function(p,o){i[p]=b(n.css("padding"+o))});t.containerOffset=n.offset();t.containerPosition=n.position();t.containerSize={height:(n.innerHeight()-i[3]),width:(n.innerWidth()-i[1])};var q=t.containerOffset,e=t.containerSize.height,m=t.containerSize.width,h=(c.ui.hasScroll(k,"left")?k.scrollWidth:m),s=(c.ui.hasScroll(k)?k.scrollHeight:e);t.parentData={element:k,left:q.left,top:q.top,width:h,height:s}}},resize:function(g,q){var t=c(this).data("resizable"),i=t.options,f=t.containerSize,p=t.containerOffset,m=t.size,n=t.position,r=t._aspectRatio||g.shiftKey,e={top:0,left:0},h=t.containerElement;if(h[0]!=document&&(/static/).test(h.css("position"))){e=p}if(n.left<(t._helper?p.left:0)){t.size.width=t.size.width+(t._helper?(t.position.left-p.left):(t.position.left-e.left));if(r){t.size.height=t.size.width/i.aspectRatio}t.position.left=i.helper?p.left:0}if(n.top<(t._helper?p.top:0)){t.size.height=t.size.height+(t._helper?(t.position.top-p.top):t.position.top);if(r){t.size.width=t.size.height*i.aspectRatio}t.position.top=t._helper?p.top:0}t.offset.left=t.parentData.left+t.position.left;t.offset.top=t.parentData.top+t.position.top;var l=Math.abs((t._helper?t.offset.left-e.left:(t.offset.left-e.left))+t.sizeDiff.width),s=Math.abs((t._helper?t.offset.top-e.top:(t.offset.top-p.top))+t.sizeDiff.height);var k=t.containerElement.get(0)==t.element.parent().get(0),j=/relative|absolute/.test(t.containerElement.css("position"));if(k&&j){l-=t.parentData.left}if(l+t.size.width>=t.parentData.width){t.size.width=t.parentData.width-l;if(r){t.size.height=t.size.width/t.aspectRatio}}if(s+t.size.height>=t.parentData.height){t.size.height=t.parentData.height-s;if(r){t.size.width=t.size.height*t.aspectRatio}}},stop:function(f,n){var q=c(this).data("resizable"),g=q.options,l=q.position,m=q.containerOffset,e=q.containerPosition,i=q.containerElement;var j=c(q.helper),r=j.offset(),p=j.outerWidth()-q.sizeDiff.width,k=j.outerHeight()-q.sizeDiff.height;if(q._helper&&!g.animate&&(/relative/).test(i.css("position"))){c(this).css({left:r.left-e.left-m.left,width:p,height:k})}if(q._helper&&!g.animate&&(/static/).test(i.css("position"))){c(this).css({left:r.left-e.left-m.left,width:p,height:k})}}});c.ui.plugin.add("resizable","ghost",{start:function(g,h){var e=c(this).data("resizable"),i=e.options,f=e.size;e.ghost=e.originalElement.clone();e.ghost.css({opacity:0.25,display:"block",position:"relative",height:f.height,width:f.width,margin:0,left:0,top:0}).addClass("ui-resizable-ghost").addClass(typeof i.ghost=="string"?i.ghost:"");e.ghost.appendTo(e.helper)},resize:function(f,g){var e=c(this).data("resizable"),h=e.options;if(e.ghost){e.ghost.css({position:"relative",height:e.size.height,width:e.size.width})}},stop:function(f,g){var e=c(this).data("resizable"),h=e.options;if(e.ghost&&e.helper){e.helper.get(0).removeChild(e.ghost.get(0))}}});c.ui.plugin.add("resizable","grid",{resize:function(e,m){var p=c(this).data("resizable"),h=p.options,k=p.size,i=p.originalSize,j=p.originalPosition,n=p.axis,l=h._aspectRatio||e.shiftKey;h.grid=typeof h.grid=="number"?[h.grid,h.grid]:h.grid;var g=Math.round((k.width-i.width)/(h.grid[0]||1))*(h.grid[0]||1),f=Math.round((k.height-i.height)/(h.grid[1]||1))*(h.grid[1]||1);if(/^(se|s|e)$/.test(n)){p.size.width=i.width+g;p.size.height=i.height+f}else{if(/^(ne)$/.test(n)){p.size.width=i.width+g;p.size.height=i.height+f;p.position.top=j.top-f}else{if(/^(sw)$/.test(n)){p.size.width=i.width+g;p.size.height=i.height+f;p.position.left=j.left-g}else{p.size.width=i.width+g;p.size.height=i.height+f;p.position.top=j.top-f;p.position.left=j.left-g}}}}});var b=function(e){return parseInt(e,10)||0};var a=function(e){return !isNaN(parseInt(e,10))}})(jQuery);/*! - * jQuery hashchange event - v1.3 - 7/21/2010 - * http://benalman.com/projects/jquery-hashchange-plugin/ - * - * Copyright (c) 2010 "Cowboy" Ben Alman - * Dual licensed under the MIT and GPL licenses. - * http://benalman.com/about/license/ - */ -(function($,e,b){var c="hashchange",h=document,f,g=$.event.special,i=h.documentMode,d="on"+c in e&&(i===b||i>7);function a(j){j=j||location.href;return"#"+j.replace(/^[^#]*#?(.*)$/,"$1")}$.fn[c]=function(j){return j?this.bind(c,j):this.trigger(c)};$.fn[c].delay=50;g[c]=$.extend(g[c],{setup:function(){if(d){return false}$(f.start)},teardown:function(){if(d){return false}$(f.stop)}});f=(function(){var j={},p,m=a(),k=function(q){return q},l=k,o=k;j.start=function(){p||n()};j.stop=function(){p&&clearTimeout(p);p=b};function n(){var r=a(),q=o(m);if(r!==m){l(m=r,q);$(e).trigger(c)}else{if(q!==m){location.href=location.href.replace(/#.*/,"")+q}}p=setTimeout(n,$.fn[c].delay)}$.browser.msie&&!d&&(function(){var q,r;j.start=function(){if(!q){r=$.fn[c].src;r=r&&r+a();q=$('