Annotation of embedaddon/mtr/autom4te.cache/traces.0, revision 1.1.1.1

1.1       misho       1: m4trace:/usr/local/share/aclocal/gtk-2.0.m4:8: -1- AC_DEFUN([AM_PATH_GTK_2_0], [dnl 
                      2: dnl Get the cflags and libraries from pkg-config
                      3: dnl
                      4: AC_ARG_ENABLE(gtktest, [  --disable-gtktest       do not try to compile and run a test GTK+ program],
                      5:                    , enable_gtktest=yes)
                      6: 
                      7:   pkg_config_args=gtk+-2.0
                      8:   for module in . $4
                      9:   do
                     10:       case "$module" in
                     11:          gthread) 
                     12:              pkg_config_args="$pkg_config_args gthread-2.0"
                     13:          ;;
                     14:       esac
                     15:   done
                     16: 
                     17:   no_gtk=""
                     18: 
                     19:   AC_REQUIRE([PKG_PROG_PKG_CONFIG])
                     20:   PKG_PROG_PKG_CONFIG([0.7])
                     21: 
                     22:   min_gtk_version=ifelse([$1], ,2.0.0,$1)
                     23:   AC_MSG_CHECKING(for GTK+ - version >= $min_gtk_version)
                     24: 
                     25:   if test x$PKG_CONFIG != xno ; then
                     26:     ## don't try to run the test against uninstalled libtool libs
                     27:     if $PKG_CONFIG --uninstalled $pkg_config_args; then
                     28:          echo "Will use uninstalled version of GTK+ found in PKG_CONFIG_PATH"
                     29:          enable_gtktest=no
                     30:     fi
                     31: 
                     32:     if $PKG_CONFIG --atleast-version $min_gtk_version $pkg_config_args; then
                     33:          :
                     34:     else
                     35:          no_gtk=yes
                     36:     fi
                     37:   fi
                     38: 
                     39:   if test x"$no_gtk" = x ; then
                     40:     GTK_CFLAGS=`$PKG_CONFIG $pkg_config_args --cflags`
                     41:     GTK_LIBS=`$PKG_CONFIG $pkg_config_args --libs`
                     42:     gtk_config_major_version=`$PKG_CONFIG --modversion gtk+-2.0 | \
                     43:            sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\1/'`
                     44:     gtk_config_minor_version=`$PKG_CONFIG --modversion gtk+-2.0 | \
                     45:            sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\2/'`
                     46:     gtk_config_micro_version=`$PKG_CONFIG --modversion gtk+-2.0 | \
                     47:            sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\3/'`
                     48:     if test "x$enable_gtktest" = "xyes" ; then
                     49:       ac_save_CFLAGS="$CFLAGS"
                     50:       ac_save_LIBS="$LIBS"
                     51:       CFLAGS="$CFLAGS $GTK_CFLAGS"
                     52:       LIBS="$GTK_LIBS $LIBS"
                     53: dnl
                     54: dnl Now check if the installed GTK+ is sufficiently new. (Also sanity
                     55: dnl checks the results of pkg-config to some extent)
                     56: dnl
                     57:       rm -f conf.gtktest
                     58:       AC_TRY_RUN([
                     59: #include <gtk/gtk.h>
                     60: #include <stdio.h>
                     61: #include <stdlib.h>
                     62: 
                     63: int 
                     64: main ()
                     65: {
                     66:   int major, minor, micro;
                     67:   char *tmp_version;
                     68: 
                     69:   fclose (fopen ("conf.gtktest", "w"));
                     70: 
                     71:   /* HP/UX 9 (%@#!) writes to sscanf strings */
                     72:   tmp_version = g_strdup("$min_gtk_version");
                     73:   if (sscanf(tmp_version, "%d.%d.%d", &major, &minor, &micro) != 3) {
                     74:      printf("%s, bad version string\n", "$min_gtk_version");
                     75:      exit(1);
                     76:    }
                     77: 
                     78:   if ((gtk_major_version != $gtk_config_major_version) ||
                     79:       (gtk_minor_version != $gtk_config_minor_version) ||
                     80:       (gtk_micro_version != $gtk_config_micro_version))
                     81:     {
                     82:       printf("\n*** 'pkg-config --modversion gtk+-2.0' returned %d.%d.%d, but GTK+ (%d.%d.%d)\n", 
                     83:              $gtk_config_major_version, $gtk_config_minor_version, $gtk_config_micro_version,
                     84:              gtk_major_version, gtk_minor_version, gtk_micro_version);
                     85:       printf ("*** was found! If pkg-config was correct, then it is best\n");
                     86:       printf ("*** to remove the old version of GTK+. You may also be able to fix the error\n");
                     87:       printf("*** by modifying your LD_LIBRARY_PATH enviroment variable, or by editing\n");
                     88:       printf("*** /etc/ld.so.conf. Make sure you have run ldconfig if that is\n");
                     89:       printf("*** required on your system.\n");
                     90:       printf("*** If pkg-config was wrong, set the environment variable PKG_CONFIG_PATH\n");
                     91:       printf("*** to point to the correct configuration files\n");
                     92:     } 
                     93:   else if ((gtk_major_version != GTK_MAJOR_VERSION) ||
                     94:           (gtk_minor_version != GTK_MINOR_VERSION) ||
                     95:            (gtk_micro_version != GTK_MICRO_VERSION))
                     96:     {
                     97:       printf("*** GTK+ header files (version %d.%d.%d) do not match\n",
                     98:             GTK_MAJOR_VERSION, GTK_MINOR_VERSION, GTK_MICRO_VERSION);
                     99:       printf("*** library (version %d.%d.%d)\n",
                    100:             gtk_major_version, gtk_minor_version, gtk_micro_version);
                    101:     }
                    102:   else
                    103:     {
                    104:       if ((gtk_major_version > major) ||
                    105:         ((gtk_major_version == major) && (gtk_minor_version > minor)) ||
                    106:         ((gtk_major_version == major) && (gtk_minor_version == minor) && (gtk_micro_version >= micro)))
                    107:       {
                    108:         return 0;
                    109:        }
                    110:      else
                    111:       {
                    112:         printf("\n*** An old version of GTK+ (%d.%d.%d) was found.\n",
                    113:                gtk_major_version, gtk_minor_version, gtk_micro_version);
                    114:         printf("*** You need a version of GTK+ newer than %d.%d.%d. The latest version of\n",
                    115:               major, minor, micro);
                    116:         printf("*** GTK+ is always available from ftp://ftp.gtk.org.\n");
                    117:         printf("***\n");
                    118:         printf("*** If you have already installed a sufficiently new version, this error\n");
                    119:         printf("*** probably means that the wrong copy of the pkg-config shell script is\n");
                    120:         printf("*** being found. The easiest way to fix this is to remove the old version\n");
                    121:         printf("*** of GTK+, but you can also set the PKG_CONFIG environment to point to the\n");
                    122:         printf("*** correct copy of pkg-config. (In this case, you will have to\n");
                    123:         printf("*** modify your LD_LIBRARY_PATH enviroment variable, or edit /etc/ld.so.conf\n");
                    124:         printf("*** so that the correct libraries are found at run-time))\n");
                    125:       }
                    126:     }
                    127:   return 1;
                    128: }
                    129: ],, no_gtk=yes,[echo $ac_n "cross compiling; assumed OK... $ac_c"])
                    130:        CFLAGS="$ac_save_CFLAGS"
                    131:        LIBS="$ac_save_LIBS"
                    132:      fi
                    133:   fi
                    134:   if test "x$no_gtk" = x ; then
                    135:      AC_MSG_RESULT(yes (version $gtk_config_major_version.$gtk_config_minor_version.$gtk_config_micro_version))
                    136:      ifelse([$2], , :, [$2])     
                    137:   else
                    138:      AC_MSG_RESULT(no)
                    139:      if test "$PKG_CONFIG" = "no" ; then
                    140:        echo "*** A new enough version of pkg-config was not found."
                    141:        echo "*** See http://pkgconfig.sourceforge.net"
                    142:      else
                    143:        if test -f conf.gtktest ; then
                    144:         :
                    145:        else
                    146:           echo "*** Could not run GTK+ test program, checking why..."
                    147:          ac_save_CFLAGS="$CFLAGS"
                    148:          ac_save_LIBS="$LIBS"
                    149:           CFLAGS="$CFLAGS $GTK_CFLAGS"
                    150:           LIBS="$LIBS $GTK_LIBS"
                    151:           AC_TRY_LINK([
                    152: #include <gtk/gtk.h>
                    153: #include <stdio.h>
                    154: ],      [ return ((gtk_major_version) || (gtk_minor_version) || (gtk_micro_version)); ],
                    155:         [ echo "*** The test program compiled, but did not run. This usually means"
                    156:           echo "*** that the run-time linker is not finding GTK+ or finding the wrong"
                    157:           echo "*** version of GTK+. If it is not finding GTK+, you'll need to set your"
                    158:           echo "*** LD_LIBRARY_PATH environment variable, or edit /etc/ld.so.conf to point"
                    159:           echo "*** to the installed location  Also, make sure you have run ldconfig if that"
                    160:           echo "*** is required on your system"
                    161:          echo "***"
                    162:           echo "*** If you have an old version installed, it is best to remove it, although"
                    163:           echo "*** you may also be able to get things to work by modifying LD_LIBRARY_PATH" ],
                    164:         [ echo "*** The test program failed to compile or link. See the file config.log for the"
                    165:           echo "*** exact error that occured. This usually means GTK+ is incorrectly installed."])
                    166:           CFLAGS="$ac_save_CFLAGS"
                    167:           LIBS="$ac_save_LIBS"
                    168:        fi
                    169:      fi
                    170:      GTK_CFLAGS=""
                    171:      GTK_LIBS=""
                    172:      ifelse([$3], , :, [$3])
                    173:   fi
                    174:   AC_SUBST(GTK_CFLAGS)
                    175:   AC_SUBST(GTK_LIBS)
                    176:   rm -f conf.gtktest
                    177: ])
                    178: m4trace:/usr/local/share/aclocal/pkg.m4:27: -1- AC_DEFUN([PKG_PROG_PKG_CONFIG], [m4_pattern_forbid([^_?PKG_[A-Z_]+$])
                    179: m4_pattern_allow([^PKG_CONFIG(_(PATH|LIBDIR|SYSROOT_DIR|ALLOW_SYSTEM_(CFLAGS|LIBS)))?$])
                    180: m4_pattern_allow([^PKG_CONFIG_(DISABLE_UNINSTALLED|TOP_BUILD_DIR|DEBUG_SPEW)$])
                    181: AC_ARG_VAR([PKG_CONFIG], [path to pkg-config utility])
                    182: AC_ARG_VAR([PKG_CONFIG_PATH], [directories to add to pkg-config's search path])
                    183: AC_ARG_VAR([PKG_CONFIG_LIBDIR], [path overriding pkg-config's built-in search path])
                    184: 
                    185: if test "x$ac_cv_env_PKG_CONFIG_set" != "xset"; then
                    186:        AC_PATH_TOOL([PKG_CONFIG], [pkg-config])
                    187: fi
                    188: if test -n "$PKG_CONFIG"; then
                    189:        _pkg_min_version=m4_default([$1], [0.9.0])
                    190:        AC_MSG_CHECKING([pkg-config is at least version $_pkg_min_version])
                    191:        if $PKG_CONFIG --atleast-pkgconfig-version $_pkg_min_version; then
                    192:                AC_MSG_RESULT([yes])
                    193:        else
                    194:                AC_MSG_RESULT([no])
                    195:                PKG_CONFIG=""
                    196:        fi
                    197: fi[]dnl
                    198: ])
                    199: m4trace:/usr/local/share/aclocal/pkg.m4:60: -1- AC_DEFUN([PKG_CHECK_EXISTS], [AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl
                    200: if test -n "$PKG_CONFIG" && \
                    201:     AC_RUN_LOG([$PKG_CONFIG --exists --print-errors "$1"]); then
                    202:   m4_default([$2], [:])
                    203: m4_ifvaln([$3], [else
                    204:   $3])dnl
                    205: fi])
                    206: m4trace:/usr/local/share/aclocal/pkg.m4:86: -1- AC_DEFUN([_PKG_SHORT_ERRORS_SUPPORTED], [AC_REQUIRE([PKG_PROG_PKG_CONFIG])
                    207: if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then
                    208:         _pkg_short_errors_supported=yes
                    209: else
                    210:         _pkg_short_errors_supported=no
                    211: fi[]dnl
                    212: ])
                    213: m4trace:/usr/local/share/aclocal/pkg.m4:106: -1- AC_DEFUN([PKG_CHECK_MODULES], [AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl
                    214: AC_ARG_VAR([$1][_CFLAGS], [C compiler flags for $1, overriding pkg-config])dnl
                    215: AC_ARG_VAR([$1][_LIBS], [linker flags for $1, overriding pkg-config])dnl
                    216: 
                    217: pkg_failed=no
                    218: AC_MSG_CHECKING([for $1])
                    219: 
                    220: _PKG_CONFIG([$1][_CFLAGS], [cflags], [$2])
                    221: _PKG_CONFIG([$1][_LIBS], [libs], [$2])
                    222: 
                    223: m4_define([_PKG_TEXT], [Alternatively, you may set the environment variables $1[]_CFLAGS
                    224: and $1[]_LIBS to avoid the need to call pkg-config.
                    225: See the pkg-config man page for more details.])
                    226: 
                    227: if test $pkg_failed = yes; then
                    228:        AC_MSG_RESULT([no])
                    229:         _PKG_SHORT_ERRORS_SUPPORTED
                    230:         if test $_pkg_short_errors_supported = yes; then
                    231:                $1[]_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "$2" 2>&1`
                    232:         else 
                    233:                $1[]_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "$2" 2>&1`
                    234:         fi
                    235:        # Put the nasty error message in config.log where it belongs
                    236:        echo "$$1[]_PKG_ERRORS" >&AS_MESSAGE_LOG_FD
                    237: 
                    238:        m4_default([$4], [AC_MSG_ERROR(
                    239: [Package requirements ($2) were not met:
                    240: 
                    241: $$1_PKG_ERRORS
                    242: 
                    243: Consider adjusting the PKG_CONFIG_PATH environment variable if you
                    244: installed software in a non-standard prefix.
                    245: 
                    246: _PKG_TEXT])[]dnl
                    247:         ])
                    248: elif test $pkg_failed = untried; then
                    249:        AC_MSG_RESULT([no])
                    250:        m4_default([$4], [AC_MSG_FAILURE(
                    251: [The pkg-config script could not be found or is too old.  Make sure it
                    252: is in your PATH or set the PKG_CONFIG environment variable to the full
                    253: path to pkg-config.
                    254: 
                    255: _PKG_TEXT
                    256: 
                    257: To get pkg-config, see <http://pkg-config.freedesktop.org/>.])[]dnl
                    258:         ])
                    259: else
                    260:        $1[]_CFLAGS=$pkg_cv_[]$1[]_CFLAGS
                    261:        $1[]_LIBS=$pkg_cv_[]$1[]_LIBS
                    262:         AC_MSG_RESULT([yes])
                    263:        $3
                    264: fi[]dnl
                    265: ])
                    266: m4trace:/usr/local/share/aclocal/pkg.m4:168: -1- AC_DEFUN([PKG_INSTALLDIR], [m4_pushdef([pkg_default], [m4_default([$1], ['${libdir}/pkgconfig'])])
                    267: m4_pushdef([pkg_description],
                    268:     [pkg-config installation directory @<:@]pkg_default[@:>@])
                    269: AC_ARG_WITH([pkgconfigdir],
                    270:     [AS_HELP_STRING([--with-pkgconfigdir], pkg_description)],,
                    271:     [with_pkgconfigdir=]pkg_default)
                    272: AC_SUBST([pkgconfigdir], [$with_pkgconfigdir])
                    273: m4_popdef([pkg_default])
                    274: m4_popdef([pkg_description])
                    275: ])
                    276: m4trace:/usr/local/share/aclocal/pkg.m4:188: -1- AC_DEFUN([PKG_NOARCH_INSTALLDIR], [m4_pushdef([pkg_default], [m4_default([$1], ['${datadir}/pkgconfig'])])
                    277: m4_pushdef([pkg_description],
                    278:     [pkg-config arch-independent installation directory @<:@]pkg_default[@:>@])
                    279: AC_ARG_WITH([noarch-pkgconfigdir],
                    280:     [AS_HELP_STRING([--with-noarch-pkgconfigdir], pkg_description)],,
                    281:     [with_noarch_pkgconfigdir=]pkg_default)
                    282: AC_SUBST([noarch_pkgconfigdir], [$with_noarch_pkgconfigdir])
                    283: m4_popdef([pkg_default])
                    284: m4_popdef([pkg_description])
                    285: ])
                    286: m4trace:/usr/local/share/aclocal/pkg.m4:205: -1- AC_DEFUN([PKG_CHECK_VAR], [AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl
                    287: AC_ARG_VAR([$1], [value of $3 for $2, overriding pkg-config])dnl
                    288: 
                    289: _PKG_CONFIG([$1], [variable="][$3]["], [$2])
                    290: AS_VAR_COPY([$1], [pkg_cv_][$1])
                    291: 
                    292: AS_VAR_IF([$1], [""], [$5], [$4])dnl
                    293: ])
                    294: m4trace:/usr/local/share/aclocal/pkg.m4:224: -1- AC_DEFUN([PKG_WITH_MODULES], [
                    295: m4_pushdef([with_arg], m4_tolower([$1]))
                    296: 
                    297: m4_pushdef([description],
                    298:            [m4_default([$5], [build with ]with_arg[ support])])
                    299: 
                    300: m4_pushdef([def_arg], [m4_default([$6], [auto])])
                    301: m4_pushdef([def_action_if_found], [AS_TR_SH([with_]with_arg)=yes])
                    302: m4_pushdef([def_action_if_not_found], [AS_TR_SH([with_]with_arg)=no])
                    303: 
                    304: m4_case(def_arg,
                    305:             [yes],[m4_pushdef([with_without], [--without-]with_arg)],
                    306:             [m4_pushdef([with_without],[--with-]with_arg)])
                    307: 
                    308: AC_ARG_WITH(with_arg,
                    309:      AS_HELP_STRING(with_without, description[ @<:@default=]def_arg[@:>@]),,
                    310:     [AS_TR_SH([with_]with_arg)=def_arg])
                    311: 
                    312: AS_CASE([$AS_TR_SH([with_]with_arg)],
                    313:             [yes],[PKG_CHECK_MODULES([$1],[$2],$3,$4)],
                    314:             [auto],[PKG_CHECK_MODULES([$1],[$2],
                    315:                                         [m4_n([def_action_if_found]) $3],
                    316:                                         [m4_n([def_action_if_not_found]) $4])])
                    317: 
                    318: m4_popdef([with_arg])
                    319: m4_popdef([description])
                    320: m4_popdef([def_arg])
                    321: 
                    322: ])
                    323: m4trace:/usr/local/share/aclocal/pkg.m4:264: -1- AC_DEFUN([PKG_HAVE_WITH_MODULES], [
                    324: PKG_WITH_MODULES([$1],[$2],,,[$3],[$4])
                    325: 
                    326: AM_CONDITIONAL([HAVE_][$1],
                    327:                [test "$AS_TR_SH([with_]m4_tolower([$1]))" = "yes"])
                    328: ])
                    329: m4trace:/usr/local/share/aclocal/pkg.m4:281: -1- AC_DEFUN([PKG_HAVE_DEFINE_WITH_MODULES], [
                    330: PKG_HAVE_WITH_MODULES([$1],[$2],[$3],[$4])
                    331: 
                    332: AS_IF([test "$AS_TR_SH([with_]m4_tolower([$1]))" = "yes"],
                    333:         [AC_DEFINE([HAVE_][$1], 1, [Enable ]m4_tolower([$1])[ support])])
                    334: ])
                    335: m4trace:/usr/local/share/aclocal-1.15/amversion.m4:14: -1- AC_DEFUN([AM_AUTOMAKE_VERSION], [am__api_version='1.15'
                    336: dnl Some users find AM_AUTOMAKE_VERSION and mistake it for a way to
                    337: dnl require some minimum version.  Point them to the right macro.
                    338: m4_if([$1], [1.15], [],
                    339:       [AC_FATAL([Do not call $0, use AM_INIT_AUTOMAKE([$1]).])])dnl
                    340: ])
                    341: m4trace:/usr/local/share/aclocal-1.15/amversion.m4:33: -1- AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION], [AM_AUTOMAKE_VERSION([1.15])dnl
                    342: m4_ifndef([AC_AUTOCONF_VERSION],
                    343:   [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl
                    344: _AM_AUTOCONF_VERSION(m4_defn([AC_AUTOCONF_VERSION]))])
                    345: m4trace:/usr/local/share/aclocal-1.15/auxdir.m4:47: -1- AC_DEFUN([AM_AUX_DIR_EXPAND], [AC_REQUIRE([AC_CONFIG_AUX_DIR_DEFAULT])dnl
                    346: # Expand $ac_aux_dir to an absolute path.
                    347: am_aux_dir=`cd "$ac_aux_dir" && pwd`
                    348: ])
                    349: m4trace:/usr/local/share/aclocal-1.15/cond.m4:12: -1- AC_DEFUN([AM_CONDITIONAL], [AC_PREREQ([2.52])dnl
                    350:  m4_if([$1], [TRUE],  [AC_FATAL([$0: invalid condition: $1])],
                    351:        [$1], [FALSE], [AC_FATAL([$0: invalid condition: $1])])dnl
                    352: AC_SUBST([$1_TRUE])dnl
                    353: AC_SUBST([$1_FALSE])dnl
                    354: _AM_SUBST_NOTMAKE([$1_TRUE])dnl
                    355: _AM_SUBST_NOTMAKE([$1_FALSE])dnl
                    356: m4_define([_AM_COND_VALUE_$1], [$2])dnl
                    357: if $2; then
                    358:   $1_TRUE=
                    359:   $1_FALSE='#'
                    360: else
                    361:   $1_TRUE='#'
                    362:   $1_FALSE=
                    363: fi
                    364: AC_CONFIG_COMMANDS_PRE(
                    365: [if test -z "${$1_TRUE}" && test -z "${$1_FALSE}"; then
                    366:   AC_MSG_ERROR([[conditional "$1" was never defined.
                    367: Usually this means the macro was only invoked conditionally.]])
                    368: fi])])
                    369: m4trace:/usr/local/share/aclocal-1.15/depend.m4:26: -1- AC_DEFUN([_AM_DEPENDENCIES], [AC_REQUIRE([AM_SET_DEPDIR])dnl
                    370: AC_REQUIRE([AM_OUTPUT_DEPENDENCY_COMMANDS])dnl
                    371: AC_REQUIRE([AM_MAKE_INCLUDE])dnl
                    372: AC_REQUIRE([AM_DEP_TRACK])dnl
                    373: 
                    374: m4_if([$1], [CC],   [depcc="$CC"   am_compiler_list=],
                    375:       [$1], [CXX],  [depcc="$CXX"  am_compiler_list=],
                    376:       [$1], [OBJC], [depcc="$OBJC" am_compiler_list='gcc3 gcc'],
                    377:       [$1], [OBJCXX], [depcc="$OBJCXX" am_compiler_list='gcc3 gcc'],
                    378:       [$1], [UPC],  [depcc="$UPC"  am_compiler_list=],
                    379:       [$1], [GCJ],  [depcc="$GCJ"  am_compiler_list='gcc3 gcc'],
                    380:                     [depcc="$$1"   am_compiler_list=])
                    381: 
                    382: AC_CACHE_CHECK([dependency style of $depcc],
                    383:                [am_cv_$1_dependencies_compiler_type],
                    384: [if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then
                    385:   # We make a subdir and do the tests there.  Otherwise we can end up
                    386:   # making bogus files that we don't know about and never remove.  For
                    387:   # instance it was reported that on HP-UX the gcc test will end up
                    388:   # making a dummy file named 'D' -- because '-MD' means "put the output
                    389:   # in D".
                    390:   rm -rf conftest.dir
                    391:   mkdir conftest.dir
                    392:   # Copy depcomp to subdir because otherwise we won't find it if we're
                    393:   # using a relative directory.
                    394:   cp "$am_depcomp" conftest.dir
                    395:   cd conftest.dir
                    396:   # We will build objects and dependencies in a subdirectory because
                    397:   # it helps to detect inapplicable dependency modes.  For instance
                    398:   # both Tru64's cc and ICC support -MD to output dependencies as a
                    399:   # side effect of compilation, but ICC will put the dependencies in
                    400:   # the current directory while Tru64 will put them in the object
                    401:   # directory.
                    402:   mkdir sub
                    403: 
                    404:   am_cv_$1_dependencies_compiler_type=none
                    405:   if test "$am_compiler_list" = ""; then
                    406:      am_compiler_list=`sed -n ['s/^#*\([a-zA-Z0-9]*\))$/\1/p'] < ./depcomp`
                    407:   fi
                    408:   am__universal=false
                    409:   m4_case([$1], [CC],
                    410:     [case " $depcc " in #(
                    411:      *\ -arch\ *\ -arch\ *) am__universal=true ;;
                    412:      esac],
                    413:     [CXX],
                    414:     [case " $depcc " in #(
                    415:      *\ -arch\ *\ -arch\ *) am__universal=true ;;
                    416:      esac])
                    417: 
                    418:   for depmode in $am_compiler_list; do
                    419:     # Setup a source with many dependencies, because some compilers
                    420:     # like to wrap large dependency lists on column 80 (with \), and
                    421:     # we should not choose a depcomp mode which is confused by this.
                    422:     #
                    423:     # We need to recreate these files for each test, as the compiler may
                    424:     # overwrite some of them when testing with obscure command lines.
                    425:     # This happens at least with the AIX C compiler.
                    426:     : > sub/conftest.c
                    427:     for i in 1 2 3 4 5 6; do
                    428:       echo '#include "conftst'$i'.h"' >> sub/conftest.c
                    429:       # Using ": > sub/conftst$i.h" creates only sub/conftst1.h with
                    430:       # Solaris 10 /bin/sh.
                    431:       echo '/* dummy */' > sub/conftst$i.h
                    432:     done
                    433:     echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf
                    434: 
                    435:     # We check with '-c' and '-o' for the sake of the "dashmstdout"
                    436:     # mode.  It turns out that the SunPro C++ compiler does not properly
                    437:     # handle '-M -o', and we need to detect this.  Also, some Intel
                    438:     # versions had trouble with output in subdirs.
                    439:     am__obj=sub/conftest.${OBJEXT-o}
                    440:     am__minus_obj="-o $am__obj"
                    441:     case $depmode in
                    442:     gcc)
                    443:       # This depmode causes a compiler race in universal mode.
                    444:       test "$am__universal" = false || continue
                    445:       ;;
                    446:     nosideeffect)
                    447:       # After this tag, mechanisms are not by side-effect, so they'll
                    448:       # only be used when explicitly requested.
                    449:       if test "x$enable_dependency_tracking" = xyes; then
                    450:        continue
                    451:       else
                    452:        break
                    453:       fi
                    454:       ;;
                    455:     msvc7 | msvc7msys | msvisualcpp | msvcmsys)
                    456:       # This compiler won't grok '-c -o', but also, the minuso test has
                    457:       # not run yet.  These depmodes are late enough in the game, and
                    458:       # so weak that their functioning should not be impacted.
                    459:       am__obj=conftest.${OBJEXT-o}
                    460:       am__minus_obj=
                    461:       ;;
                    462:     none) break ;;
                    463:     esac
                    464:     if depmode=$depmode \
                    465:        source=sub/conftest.c object=$am__obj \
                    466:        depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \
                    467:        $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \
                    468:          >/dev/null 2>conftest.err &&
                    469:        grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 &&
                    470:        grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 &&
                    471:        grep $am__obj sub/conftest.Po > /dev/null 2>&1 &&
                    472:        ${MAKE-make} -s -f confmf > /dev/null 2>&1; then
                    473:       # icc doesn't choke on unknown options, it will just issue warnings
                    474:       # or remarks (even with -Werror).  So we grep stderr for any message
                    475:       # that says an option was ignored or not supported.
                    476:       # When given -MP, icc 7.0 and 7.1 complain thusly:
                    477:       #   icc: Command line warning: ignoring option '-M'; no argument required
                    478:       # The diagnosis changed in icc 8.0:
                    479:       #   icc: Command line remark: option '-MP' not supported
                    480:       if (grep 'ignoring option' conftest.err ||
                    481:           grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else
                    482:         am_cv_$1_dependencies_compiler_type=$depmode
                    483:         break
                    484:       fi
                    485:     fi
                    486:   done
                    487: 
                    488:   cd ..
                    489:   rm -rf conftest.dir
                    490: else
                    491:   am_cv_$1_dependencies_compiler_type=none
                    492: fi
                    493: ])
                    494: AC_SUBST([$1DEPMODE], [depmode=$am_cv_$1_dependencies_compiler_type])
                    495: AM_CONDITIONAL([am__fastdep$1], [
                    496:   test "x$enable_dependency_tracking" != xno \
                    497:   && test "$am_cv_$1_dependencies_compiler_type" = gcc3])
                    498: ])
                    499: m4trace:/usr/local/share/aclocal-1.15/depend.m4:163: -1- AC_DEFUN([AM_SET_DEPDIR], [AC_REQUIRE([AM_SET_LEADING_DOT])dnl
                    500: AC_SUBST([DEPDIR], ["${am__leading_dot}deps"])dnl
                    501: ])
                    502: m4trace:/usr/local/share/aclocal-1.15/depend.m4:171: -1- AC_DEFUN([AM_DEP_TRACK], [AC_ARG_ENABLE([dependency-tracking], [dnl
                    503: AS_HELP_STRING(
                    504:   [--enable-dependency-tracking],
                    505:   [do not reject slow dependency extractors])
                    506: AS_HELP_STRING(
                    507:   [--disable-dependency-tracking],
                    508:   [speeds up one-time build])])
                    509: if test "x$enable_dependency_tracking" != xno; then
                    510:   am_depcomp="$ac_aux_dir/depcomp"
                    511:   AMDEPBACKSLASH='\'
                    512:   am__nodep='_no'
                    513: fi
                    514: AM_CONDITIONAL([AMDEP], [test "x$enable_dependency_tracking" != xno])
                    515: AC_SUBST([AMDEPBACKSLASH])dnl
                    516: _AM_SUBST_NOTMAKE([AMDEPBACKSLASH])dnl
                    517: AC_SUBST([am__nodep])dnl
                    518: _AM_SUBST_NOTMAKE([am__nodep])dnl
                    519: ])
                    520: m4trace:/usr/local/share/aclocal-1.15/depout.m4:12: -1- AC_DEFUN([_AM_OUTPUT_DEPENDENCY_COMMANDS], [{
                    521:   # Older Autoconf quotes --file arguments for eval, but not when files
                    522:   # are listed without --file.  Let's play safe and only enable the eval
                    523:   # if we detect the quoting.
                    524:   case $CONFIG_FILES in
                    525:   *\'*) eval set x "$CONFIG_FILES" ;;
                    526:   *)   set x $CONFIG_FILES ;;
                    527:   esac
                    528:   shift
                    529:   for mf
                    530:   do
                    531:     # Strip MF so we end up with the name of the file.
                    532:     mf=`echo "$mf" | sed -e 's/:.*$//'`
                    533:     # Check whether this is an Automake generated Makefile or not.
                    534:     # We used to match only the files named 'Makefile.in', but
                    535:     # some people rename them; so instead we look at the file content.
                    536:     # Grep'ing the first line is not enough: some people post-process
                    537:     # each Makefile.in and add a new line on top of each file to say so.
                    538:     # Grep'ing the whole file is not good either: AIX grep has a line
                    539:     # limit of 2048, but all sed's we know have understand at least 4000.
                    540:     if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then
                    541:       dirpart=`AS_DIRNAME("$mf")`
                    542:     else
                    543:       continue
                    544:     fi
                    545:     # Extract the definition of DEPDIR, am__include, and am__quote
                    546:     # from the Makefile without running 'make'.
                    547:     DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"`
                    548:     test -z "$DEPDIR" && continue
                    549:     am__include=`sed -n 's/^am__include = //p' < "$mf"`
                    550:     test -z "$am__include" && continue
                    551:     am__quote=`sed -n 's/^am__quote = //p' < "$mf"`
                    552:     # Find all dependency output files, they are included files with
                    553:     # $(DEPDIR) in their names.  We invoke sed twice because it is the
                    554:     # simplest approach to changing $(DEPDIR) to its actual value in the
                    555:     # expansion.
                    556:     for file in `sed -n "
                    557:       s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \
                    558:         sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g'`; do
                    559:       # Make sure the directory exists.
                    560:       test -f "$dirpart/$file" && continue
                    561:       fdir=`AS_DIRNAME(["$file"])`
                    562:       AS_MKDIR_P([$dirpart/$fdir])
                    563:       # echo "creating $dirpart/$file"
                    564:       echo '# dummy' > "$dirpart/$file"
                    565:     done
                    566:   done
                    567: }
                    568: ])
                    569: m4trace:/usr/local/share/aclocal-1.15/depout.m4:71: -1- AC_DEFUN([AM_OUTPUT_DEPENDENCY_COMMANDS], [AC_CONFIG_COMMANDS([depfiles],
                    570:      [test x"$AMDEP_TRUE" != x"" || _AM_OUTPUT_DEPENDENCY_COMMANDS],
                    571:      [AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir"])
                    572: ])
                    573: m4trace:/usr/local/share/aclocal-1.15/init.m4:29: -1- AC_DEFUN([AM_INIT_AUTOMAKE], [AC_PREREQ([2.65])dnl
                    574: dnl Autoconf wants to disallow AM_ names.  We explicitly allow
                    575: dnl the ones we care about.
                    576: m4_pattern_allow([^AM_[A-Z]+FLAGS$])dnl
                    577: AC_REQUIRE([AM_SET_CURRENT_AUTOMAKE_VERSION])dnl
                    578: AC_REQUIRE([AC_PROG_INSTALL])dnl
                    579: if test "`cd $srcdir && pwd`" != "`pwd`"; then
                    580:   # Use -I$(srcdir) only when $(srcdir) != ., so that make's output
                    581:   # is not polluted with repeated "-I."
                    582:   AC_SUBST([am__isrc], [' -I$(srcdir)'])_AM_SUBST_NOTMAKE([am__isrc])dnl
                    583:   # test to see if srcdir already configured
                    584:   if test -f $srcdir/config.status; then
                    585:     AC_MSG_ERROR([source directory already configured; run "make distclean" there first])
                    586:   fi
                    587: fi
                    588: 
                    589: # test whether we have cygpath
                    590: if test -z "$CYGPATH_W"; then
                    591:   if (cygpath --version) >/dev/null 2>/dev/null; then
                    592:     CYGPATH_W='cygpath -w'
                    593:   else
                    594:     CYGPATH_W=echo
                    595:   fi
                    596: fi
                    597: AC_SUBST([CYGPATH_W])
                    598: 
                    599: # Define the identity of the package.
                    600: dnl Distinguish between old-style and new-style calls.
                    601: m4_ifval([$2],
                    602: [AC_DIAGNOSE([obsolete],
                    603:              [$0: two- and three-arguments forms are deprecated.])
                    604: m4_ifval([$3], [_AM_SET_OPTION([no-define])])dnl
                    605:  AC_SUBST([PACKAGE], [$1])dnl
                    606:  AC_SUBST([VERSION], [$2])],
                    607: [_AM_SET_OPTIONS([$1])dnl
                    608: dnl Diagnose old-style AC_INIT with new-style AM_AUTOMAKE_INIT.
                    609: m4_if(
                    610:   m4_ifdef([AC_PACKAGE_NAME], [ok]):m4_ifdef([AC_PACKAGE_VERSION], [ok]),
                    611:   [ok:ok],,
                    612:   [m4_fatal([AC_INIT should be called with package and version arguments])])dnl
                    613:  AC_SUBST([PACKAGE], ['AC_PACKAGE_TARNAME'])dnl
                    614:  AC_SUBST([VERSION], ['AC_PACKAGE_VERSION'])])dnl
                    615: 
                    616: _AM_IF_OPTION([no-define],,
                    617: [AC_DEFINE_UNQUOTED([PACKAGE], ["$PACKAGE"], [Name of package])
                    618:  AC_DEFINE_UNQUOTED([VERSION], ["$VERSION"], [Version number of package])])dnl
                    619: 
                    620: # Some tools Automake needs.
                    621: AC_REQUIRE([AM_SANITY_CHECK])dnl
                    622: AC_REQUIRE([AC_ARG_PROGRAM])dnl
                    623: AM_MISSING_PROG([ACLOCAL], [aclocal-${am__api_version}])
                    624: AM_MISSING_PROG([AUTOCONF], [autoconf])
                    625: AM_MISSING_PROG([AUTOMAKE], [automake-${am__api_version}])
                    626: AM_MISSING_PROG([AUTOHEADER], [autoheader])
                    627: AM_MISSING_PROG([MAKEINFO], [makeinfo])
                    628: AC_REQUIRE([AM_PROG_INSTALL_SH])dnl
                    629: AC_REQUIRE([AM_PROG_INSTALL_STRIP])dnl
                    630: AC_REQUIRE([AC_PROG_MKDIR_P])dnl
                    631: # For better backward compatibility.  To be removed once Automake 1.9.x
                    632: # dies out for good.  For more background, see:
                    633: # <http://lists.gnu.org/archive/html/automake/2012-07/msg00001.html>
                    634: # <http://lists.gnu.org/archive/html/automake/2012-07/msg00014.html>
                    635: AC_SUBST([mkdir_p], ['$(MKDIR_P)'])
                    636: # We need awk for the "check" target (and possibly the TAP driver).  The
                    637: # system "awk" is bad on some platforms.
                    638: AC_REQUIRE([AC_PROG_AWK])dnl
                    639: AC_REQUIRE([AC_PROG_MAKE_SET])dnl
                    640: AC_REQUIRE([AM_SET_LEADING_DOT])dnl
                    641: _AM_IF_OPTION([tar-ustar], [_AM_PROG_TAR([ustar])],
                    642:              [_AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])],
                    643:                             [_AM_PROG_TAR([v7])])])
                    644: _AM_IF_OPTION([no-dependencies],,
                    645: [AC_PROVIDE_IFELSE([AC_PROG_CC],
                    646:                  [_AM_DEPENDENCIES([CC])],
                    647:                  [m4_define([AC_PROG_CC],
                    648:                             m4_defn([AC_PROG_CC])[_AM_DEPENDENCIES([CC])])])dnl
                    649: AC_PROVIDE_IFELSE([AC_PROG_CXX],
                    650:                  [_AM_DEPENDENCIES([CXX])],
                    651:                  [m4_define([AC_PROG_CXX],
                    652:                             m4_defn([AC_PROG_CXX])[_AM_DEPENDENCIES([CXX])])])dnl
                    653: AC_PROVIDE_IFELSE([AC_PROG_OBJC],
                    654:                  [_AM_DEPENDENCIES([OBJC])],
                    655:                  [m4_define([AC_PROG_OBJC],
                    656:                             m4_defn([AC_PROG_OBJC])[_AM_DEPENDENCIES([OBJC])])])dnl
                    657: AC_PROVIDE_IFELSE([AC_PROG_OBJCXX],
                    658:                  [_AM_DEPENDENCIES([OBJCXX])],
                    659:                  [m4_define([AC_PROG_OBJCXX],
                    660:                             m4_defn([AC_PROG_OBJCXX])[_AM_DEPENDENCIES([OBJCXX])])])dnl
                    661: ])
                    662: AC_REQUIRE([AM_SILENT_RULES])dnl
                    663: dnl The testsuite driver may need to know about EXEEXT, so add the
                    664: dnl 'am__EXEEXT' conditional if _AM_COMPILER_EXEEXT was seen.  This
                    665: dnl macro is hooked onto _AC_COMPILER_EXEEXT early, see below.
                    666: AC_CONFIG_COMMANDS_PRE(dnl
                    667: [m4_provide_if([_AM_COMPILER_EXEEXT],
                    668:   [AM_CONDITIONAL([am__EXEEXT], [test -n "$EXEEXT"])])])dnl
                    669: 
                    670: # POSIX will say in a future version that running "rm -f" with no argument
                    671: # is OK; and we want to be able to make that assumption in our Makefile
                    672: # recipes.  So use an aggressive probe to check that the usage we want is
                    673: # actually supported "in the wild" to an acceptable degree.
                    674: # See automake bug#10828.
                    675: # To make any issue more visible, cause the running configure to be aborted
                    676: # by default if the 'rm' program in use doesn't match our expectations; the
                    677: # user can still override this though.
                    678: if rm -f && rm -fr && rm -rf; then : OK; else
                    679:   cat >&2 <<'END'
                    680: Oops!
                    681: 
                    682: Your 'rm' program seems unable to run without file operands specified
                    683: on the command line, even when the '-f' option is present.  This is contrary
                    684: to the behaviour of most rm programs out there, and not conforming with
                    685: the upcoming POSIX standard: <http://austingroupbugs.net/view.php?id=542>
                    686: 
                    687: Please tell bug-automake@gnu.org about your system, including the value
                    688: of your $PATH and any error possibly output before this message.  This
                    689: can help us improve future automake versions.
                    690: 
                    691: END
                    692:   if test x"$ACCEPT_INFERIOR_RM_PROGRAM" = x"yes"; then
                    693:     echo 'Configuration will proceed anyway, since you have set the' >&2
                    694:     echo 'ACCEPT_INFERIOR_RM_PROGRAM variable to "yes"' >&2
                    695:     echo >&2
                    696:   else
                    697:     cat >&2 <<'END'
                    698: Aborting the configuration process, to ensure you take notice of the issue.
                    699: 
                    700: You can download and install GNU coreutils to get an 'rm' implementation
                    701: that behaves properly: <http://www.gnu.org/software/coreutils/>.
                    702: 
                    703: If you want to complete the configuration process using your problematic
                    704: 'rm' anyway, export the environment variable ACCEPT_INFERIOR_RM_PROGRAM
                    705: to "yes", and re-run configure.
                    706: 
                    707: END
                    708:     AC_MSG_ERROR([Your 'rm' program is bad, sorry.])
                    709:   fi
                    710: fi
                    711: dnl The trailing newline in this macro's definition is deliberate, for
                    712: dnl backward compatibility and to allow trailing 'dnl'-style comments
                    713: dnl after the AM_INIT_AUTOMAKE invocation. See automake bug#16841.
                    714: ])
                    715: m4trace:/usr/local/share/aclocal-1.15/init.m4:186: -1- AC_DEFUN([_AC_AM_CONFIG_HEADER_HOOK], [# Compute $1's index in $config_headers.
                    716: _am_arg=$1
                    717: _am_stamp_count=1
                    718: for _am_header in $config_headers :; do
                    719:   case $_am_header in
                    720:     $_am_arg | $_am_arg:* )
                    721:       break ;;
                    722:     * )
                    723:       _am_stamp_count=`expr $_am_stamp_count + 1` ;;
                    724:   esac
                    725: done
                    726: echo "timestamp for $_am_arg" >`AS_DIRNAME(["$_am_arg"])`/stamp-h[]$_am_stamp_count])
                    727: m4trace:/usr/local/share/aclocal-1.15/install-sh.m4:11: -1- AC_DEFUN([AM_PROG_INSTALL_SH], [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
                    728: if test x"${install_sh+set}" != xset; then
                    729:   case $am_aux_dir in
                    730:   *\ * | *\    *)
                    731:     install_sh="\${SHELL} '$am_aux_dir/install-sh'" ;;
                    732:   *)
                    733:     install_sh="\${SHELL} $am_aux_dir/install-sh"
                    734:   esac
                    735: fi
                    736: AC_SUBST([install_sh])])
                    737: m4trace:/usr/local/share/aclocal-1.15/lead-dot.m4:10: -1- AC_DEFUN([AM_SET_LEADING_DOT], [rm -rf .tst 2>/dev/null
                    738: mkdir .tst 2>/dev/null
                    739: if test -d .tst; then
                    740:   am__leading_dot=.
                    741: else
                    742:   am__leading_dot=_
                    743: fi
                    744: rmdir .tst 2>/dev/null
                    745: AC_SUBST([am__leading_dot])])
                    746: m4trace:/usr/local/share/aclocal-1.15/make.m4:12: -1- AC_DEFUN([AM_MAKE_INCLUDE], [am_make=${MAKE-make}
                    747: cat > confinc << 'END'
                    748: am__doit:
                    749:        @echo this is the am__doit target
                    750: .PHONY: am__doit
                    751: END
                    752: # If we don't find an include directive, just comment out the code.
                    753: AC_MSG_CHECKING([for style of include used by $am_make])
                    754: am__include="#"
                    755: am__quote=
                    756: _am_result=none
                    757: # First try GNU make style include.
                    758: echo "include confinc" > confmf
                    759: # Ignore all kinds of additional output from 'make'.
                    760: case `$am_make -s -f confmf 2> /dev/null` in #(
                    761: *the\ am__doit\ target*)
                    762:   am__include=include
                    763:   am__quote=
                    764:   _am_result=GNU
                    765:   ;;
                    766: esac
                    767: # Now try BSD make style include.
                    768: if test "$am__include" = "#"; then
                    769:    echo '.include "confinc"' > confmf
                    770:    case `$am_make -s -f confmf 2> /dev/null` in #(
                    771:    *the\ am__doit\ target*)
                    772:      am__include=.include
                    773:      am__quote="\""
                    774:      _am_result=BSD
                    775:      ;;
                    776:    esac
                    777: fi
                    778: AC_SUBST([am__include])
                    779: AC_SUBST([am__quote])
                    780: AC_MSG_RESULT([$_am_result])
                    781: rm -f confinc confmf
                    782: ])
                    783: m4trace:/usr/local/share/aclocal-1.15/missing.m4:11: -1- AC_DEFUN([AM_MISSING_PROG], [AC_REQUIRE([AM_MISSING_HAS_RUN])
                    784: $1=${$1-"${am_missing_run}$2"}
                    785: AC_SUBST($1)])
                    786: m4trace:/usr/local/share/aclocal-1.15/missing.m4:20: -1- AC_DEFUN([AM_MISSING_HAS_RUN], [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
                    787: AC_REQUIRE_AUX_FILE([missing])dnl
                    788: if test x"${MISSING+set}" != xset; then
                    789:   case $am_aux_dir in
                    790:   *\ * | *\    *)
                    791:     MISSING="\${SHELL} \"$am_aux_dir/missing\"" ;;
                    792:   *)
                    793:     MISSING="\${SHELL} $am_aux_dir/missing" ;;
                    794:   esac
                    795: fi
                    796: # Use eval to expand $SHELL
                    797: if eval "$MISSING --is-lightweight"; then
                    798:   am_missing_run="$MISSING "
                    799: else
                    800:   am_missing_run=
                    801:   AC_MSG_WARN(['missing' script is too old or missing])
                    802: fi
                    803: ])
                    804: m4trace:/usr/local/share/aclocal-1.15/options.m4:11: -1- AC_DEFUN([_AM_MANGLE_OPTION], [[_AM_OPTION_]m4_bpatsubst($1, [[^a-zA-Z0-9_]], [_])])
                    805: m4trace:/usr/local/share/aclocal-1.15/options.m4:17: -1- AC_DEFUN([_AM_SET_OPTION], [m4_define(_AM_MANGLE_OPTION([$1]), [1])])
                    806: m4trace:/usr/local/share/aclocal-1.15/options.m4:23: -1- AC_DEFUN([_AM_SET_OPTIONS], [m4_foreach_w([_AM_Option], [$1], [_AM_SET_OPTION(_AM_Option)])])
                    807: m4trace:/usr/local/share/aclocal-1.15/options.m4:29: -1- AC_DEFUN([_AM_IF_OPTION], [m4_ifset(_AM_MANGLE_OPTION([$1]), [$2], [$3])])
                    808: m4trace:/usr/local/share/aclocal-1.15/prog-cc-c-o.m4:12: -1- AC_DEFUN([_AM_PROG_CC_C_O], [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
                    809: AC_REQUIRE_AUX_FILE([compile])dnl
                    810: AC_LANG_PUSH([C])dnl
                    811: AC_CACHE_CHECK(
                    812:   [whether $CC understands -c and -o together],
                    813:   [am_cv_prog_cc_c_o],
                    814:   [AC_LANG_CONFTEST([AC_LANG_PROGRAM([])])
                    815:   # Make sure it works both with $CC and with simple cc.
                    816:   # Following AC_PROG_CC_C_O, we do the test twice because some
                    817:   # compilers refuse to overwrite an existing .o file with -o,
                    818:   # though they will create one.
                    819:   am_cv_prog_cc_c_o=yes
                    820:   for am_i in 1 2; do
                    821:     if AM_RUN_LOG([$CC -c conftest.$ac_ext -o conftest2.$ac_objext]) \
                    822:          && test -f conftest2.$ac_objext; then
                    823:       : OK
                    824:     else
                    825:       am_cv_prog_cc_c_o=no
                    826:       break
                    827:     fi
                    828:   done
                    829:   rm -f core conftest*
                    830:   unset am_i])
                    831: if test "$am_cv_prog_cc_c_o" != yes; then
                    832:    # Losing compiler, so override with the script.
                    833:    # FIXME: It is wrong to rewrite CC.
                    834:    # But if we don't then we get into trouble of one sort or another.
                    835:    # A longer-term fix would be to have automake use am__CC in this case,
                    836:    # and then we could set am__CC="\$(top_srcdir)/compile \$(CC)"
                    837:    CC="$am_aux_dir/compile $CC"
                    838: fi
                    839: AC_LANG_POP([C])])
                    840: m4trace:/usr/local/share/aclocal-1.15/prog-cc-c-o.m4:47: -1- AC_DEFUN_ONCE([AM_PROG_CC_C_O], [AC_REQUIRE([AC_PROG_CC])])
                    841: m4trace:/usr/local/share/aclocal-1.15/runlog.m4:12: -1- AC_DEFUN([AM_RUN_LOG], [{ echo "$as_me:$LINENO: $1" >&AS_MESSAGE_LOG_FD
                    842:    ($1) >&AS_MESSAGE_LOG_FD 2>&AS_MESSAGE_LOG_FD
                    843:    ac_status=$?
                    844:    echo "$as_me:$LINENO: \$? = $ac_status" >&AS_MESSAGE_LOG_FD
                    845:    (exit $ac_status); }])
                    846: m4trace:/usr/local/share/aclocal-1.15/sanity.m4:11: -1- AC_DEFUN([AM_SANITY_CHECK], [AC_MSG_CHECKING([whether build environment is sane])
                    847: # Reject unsafe characters in $srcdir or the absolute working directory
                    848: # name.  Accept space and tab only in the latter.
                    849: am_lf='
                    850: '
                    851: case `pwd` in
                    852:   *[[\\\"\#\$\&\'\`$am_lf]]*)
                    853:     AC_MSG_ERROR([unsafe absolute working directory name]);;
                    854: esac
                    855: case $srcdir in
                    856:   *[[\\\"\#\$\&\'\`$am_lf\ \   ]]*)
                    857:     AC_MSG_ERROR([unsafe srcdir value: '$srcdir']);;
                    858: esac
                    859: 
                    860: # Do 'set' in a subshell so we don't clobber the current shell's
                    861: # arguments.  Must try -L first in case configure is actually a
                    862: # symlink; some systems play weird games with the mod time of symlinks
                    863: # (eg FreeBSD returns the mod time of the symlink's containing
                    864: # directory).
                    865: if (
                    866:    am_has_slept=no
                    867:    for am_try in 1 2; do
                    868:      echo "timestamp, slept: $am_has_slept" > conftest.file
                    869:      set X `ls -Lt "$srcdir/configure" conftest.file 2> /dev/null`
                    870:      if test "$[*]" = "X"; then
                    871:        # -L didn't work.
                    872:        set X `ls -t "$srcdir/configure" conftest.file`
                    873:      fi
                    874:      if test "$[*]" != "X $srcdir/configure conftest.file" \
                    875:        && test "$[*]" != "X conftest.file $srcdir/configure"; then
                    876: 
                    877:        # If neither matched, then we have a broken ls.  This can happen
                    878:        # if, for instance, CONFIG_SHELL is bash and it inherits a
                    879:        # broken ls alias from the environment.  This has actually
                    880:        # happened.  Such a system could not be considered "sane".
                    881:        AC_MSG_ERROR([ls -t appears to fail.  Make sure there is not a broken
                    882:   alias in your environment])
                    883:      fi
                    884:      if test "$[2]" = conftest.file || test $am_try -eq 2; then
                    885:        break
                    886:      fi
                    887:      # Just in case.
                    888:      sleep 1
                    889:      am_has_slept=yes
                    890:    done
                    891:    test "$[2]" = conftest.file
                    892:    )
                    893: then
                    894:    # Ok.
                    895:    :
                    896: else
                    897:    AC_MSG_ERROR([newly created file is older than distributed files!
                    898: Check your system clock])
                    899: fi
                    900: AC_MSG_RESULT([yes])
                    901: # If we didn't sleep, we still need to ensure time stamps of config.status and
                    902: # generated files are strictly newer.
                    903: am_sleep_pid=
                    904: if grep 'slept: no' conftest.file >/dev/null 2>&1; then
                    905:   ( sleep 1 ) &
                    906:   am_sleep_pid=$!
                    907: fi
                    908: AC_CONFIG_COMMANDS_PRE(
                    909:   [AC_MSG_CHECKING([that generated files are newer than configure])
                    910:    if test -n "$am_sleep_pid"; then
                    911:      # Hide warnings about reused PIDs.
                    912:      wait $am_sleep_pid 2>/dev/null
                    913:    fi
                    914:    AC_MSG_RESULT([done])])
                    915: rm -f conftest.file
                    916: ])
                    917: m4trace:/usr/local/share/aclocal-1.15/silent.m4:12: -1- AC_DEFUN([AM_SILENT_RULES], [AC_ARG_ENABLE([silent-rules], [dnl
                    918: AS_HELP_STRING(
                    919:   [--enable-silent-rules],
                    920:   [less verbose build output (undo: "make V=1")])
                    921: AS_HELP_STRING(
                    922:   [--disable-silent-rules],
                    923:   [verbose build output (undo: "make V=0")])dnl
                    924: ])
                    925: case $enable_silent_rules in @%:@ (((
                    926:   yes) AM_DEFAULT_VERBOSITY=0;;
                    927:    no) AM_DEFAULT_VERBOSITY=1;;
                    928:     *) AM_DEFAULT_VERBOSITY=m4_if([$1], [yes], [0], [1]);;
                    929: esac
                    930: dnl
                    931: dnl A few 'make' implementations (e.g., NonStop OS and NextStep)
                    932: dnl do not support nested variable expansions.
                    933: dnl See automake bug#9928 and bug#10237.
                    934: am_make=${MAKE-make}
                    935: AC_CACHE_CHECK([whether $am_make supports nested variables],
                    936:    [am_cv_make_support_nested_variables],
                    937:    [if AS_ECHO([['TRUE=$(BAR$(V))
                    938: BAR0=false
                    939: BAR1=true
                    940: V=1
                    941: am__doit:
                    942:        @$(TRUE)
                    943: .PHONY: am__doit']]) | $am_make -f - >/dev/null 2>&1; then
                    944:   am_cv_make_support_nested_variables=yes
                    945: else
                    946:   am_cv_make_support_nested_variables=no
                    947: fi])
                    948: if test $am_cv_make_support_nested_variables = yes; then
                    949:   dnl Using '$V' instead of '$(V)' breaks IRIX make.
                    950:   AM_V='$(V)'
                    951:   AM_DEFAULT_V='$(AM_DEFAULT_VERBOSITY)'
                    952: else
                    953:   AM_V=$AM_DEFAULT_VERBOSITY
                    954:   AM_DEFAULT_V=$AM_DEFAULT_VERBOSITY
                    955: fi
                    956: AC_SUBST([AM_V])dnl
                    957: AM_SUBST_NOTMAKE([AM_V])dnl
                    958: AC_SUBST([AM_DEFAULT_V])dnl
                    959: AM_SUBST_NOTMAKE([AM_DEFAULT_V])dnl
                    960: AC_SUBST([AM_DEFAULT_VERBOSITY])dnl
                    961: AM_BACKSLASH='\'
                    962: AC_SUBST([AM_BACKSLASH])dnl
                    963: _AM_SUBST_NOTMAKE([AM_BACKSLASH])dnl
                    964: ])
                    965: m4trace:/usr/local/share/aclocal-1.15/strip.m4:17: -1- AC_DEFUN([AM_PROG_INSTALL_STRIP], [AC_REQUIRE([AM_PROG_INSTALL_SH])dnl
                    966: # Installed binaries are usually stripped using 'strip' when the user
                    967: # run "make install-strip".  However 'strip' might not be the right
                    968: # tool to use in cross-compilation environments, therefore Automake
                    969: # will honor the 'STRIP' environment variable to overrule this program.
                    970: dnl Don't test for $cross_compiling = yes, because it might be 'maybe'.
                    971: if test "$cross_compiling" != no; then
                    972:   AC_CHECK_TOOL([STRIP], [strip], :)
                    973: fi
                    974: INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s"
                    975: AC_SUBST([INSTALL_STRIP_PROGRAM])])
                    976: m4trace:/usr/local/share/aclocal-1.15/substnot.m4:12: -1- AC_DEFUN([_AM_SUBST_NOTMAKE])
                    977: m4trace:/usr/local/share/aclocal-1.15/substnot.m4:17: -1- AC_DEFUN([AM_SUBST_NOTMAKE], [_AM_SUBST_NOTMAKE($@)])
                    978: m4trace:/usr/local/share/aclocal-1.15/tar.m4:23: -1- AC_DEFUN([_AM_PROG_TAR], [# Always define AMTAR for backward compatibility.  Yes, it's still used
                    979: # in the wild :-(  We should find a proper way to deprecate it ...
                    980: AC_SUBST([AMTAR], ['$${TAR-tar}'])
                    981: 
                    982: # We'll loop over all known methods to create a tar archive until one works.
                    983: _am_tools='gnutar m4_if([$1], [ustar], [plaintar]) pax cpio none'
                    984: 
                    985: m4_if([$1], [v7],
                    986:   [am__tar='$${TAR-tar} chof - "$$tardir"' am__untar='$${TAR-tar} xf -'],
                    987: 
                    988:   [m4_case([$1],
                    989:     [ustar],
                    990:      [# The POSIX 1988 'ustar' format is defined with fixed-size fields.
                    991:       # There is notably a 21 bits limit for the UID and the GID.  In fact,
                    992:       # the 'pax' utility can hang on bigger UID/GID (see automake bug#8343
                    993:       # and bug#13588).
                    994:       am_max_uid=2097151 # 2^21 - 1
                    995:       am_max_gid=$am_max_uid
                    996:       # The $UID and $GID variables are not portable, so we need to resort
                    997:       # to the POSIX-mandated id(1) utility.  Errors in the 'id' calls
                    998:       # below are definitely unexpected, so allow the users to see them
                    999:       # (that is, avoid stderr redirection).
                   1000:       am_uid=`id -u || echo unknown`
                   1001:       am_gid=`id -g || echo unknown`
                   1002:       AC_MSG_CHECKING([whether UID '$am_uid' is supported by ustar format])
                   1003:       if test $am_uid -le $am_max_uid; then
                   1004:          AC_MSG_RESULT([yes])
                   1005:       else
                   1006:          AC_MSG_RESULT([no])
                   1007:          _am_tools=none
                   1008:       fi
                   1009:       AC_MSG_CHECKING([whether GID '$am_gid' is supported by ustar format])
                   1010:       if test $am_gid -le $am_max_gid; then
                   1011:          AC_MSG_RESULT([yes])
                   1012:       else
                   1013:         AC_MSG_RESULT([no])
                   1014:         _am_tools=none
                   1015:       fi],
                   1016: 
                   1017:   [pax],
                   1018:     [],
                   1019: 
                   1020:   [m4_fatal([Unknown tar format])])
                   1021: 
                   1022:   AC_MSG_CHECKING([how to create a $1 tar archive])
                   1023: 
                   1024:   # Go ahead even if we have the value already cached.  We do so because we
                   1025:   # need to set the values for the 'am__tar' and 'am__untar' variables.
                   1026:   _am_tools=${am_cv_prog_tar_$1-$_am_tools}
                   1027: 
                   1028:   for _am_tool in $_am_tools; do
                   1029:     case $_am_tool in
                   1030:     gnutar)
                   1031:       for _am_tar in tar gnutar gtar; do
                   1032:         AM_RUN_LOG([$_am_tar --version]) && break
                   1033:       done
                   1034:       am__tar="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$$tardir"'
                   1035:       am__tar_="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$tardir"'
                   1036:       am__untar="$_am_tar -xf -"
                   1037:       ;;
                   1038:     plaintar)
                   1039:       # Must skip GNU tar: if it does not support --format= it doesn't create
                   1040:       # ustar tarball either.
                   1041:       (tar --version) >/dev/null 2>&1 && continue
                   1042:       am__tar='tar chf - "$$tardir"'
                   1043:       am__tar_='tar chf - "$tardir"'
                   1044:       am__untar='tar xf -'
                   1045:       ;;
                   1046:     pax)
                   1047:       am__tar='pax -L -x $1 -w "$$tardir"'
                   1048:       am__tar_='pax -L -x $1 -w "$tardir"'
                   1049:       am__untar='pax -r'
                   1050:       ;;
                   1051:     cpio)
                   1052:       am__tar='find "$$tardir" -print | cpio -o -H $1 -L'
                   1053:       am__tar_='find "$tardir" -print | cpio -o -H $1 -L'
                   1054:       am__untar='cpio -i -H $1 -d'
                   1055:       ;;
                   1056:     none)
                   1057:       am__tar=false
                   1058:       am__tar_=false
                   1059:       am__untar=false
                   1060:       ;;
                   1061:     esac
                   1062: 
                   1063:     # If the value was cached, stop now.  We just wanted to have am__tar
                   1064:     # and am__untar set.
                   1065:     test -n "${am_cv_prog_tar_$1}" && break
                   1066: 
                   1067:     # tar/untar a dummy directory, and stop if the command works.
                   1068:     rm -rf conftest.dir
                   1069:     mkdir conftest.dir
                   1070:     echo GrepMe > conftest.dir/file
                   1071:     AM_RUN_LOG([tardir=conftest.dir && eval $am__tar_ >conftest.tar])
                   1072:     rm -rf conftest.dir
                   1073:     if test -s conftest.tar; then
                   1074:       AM_RUN_LOG([$am__untar <conftest.tar])
                   1075:       AM_RUN_LOG([cat conftest.dir/file])
                   1076:       grep GrepMe conftest.dir/file >/dev/null 2>&1 && break
                   1077:     fi
                   1078:   done
                   1079:   rm -rf conftest.dir
                   1080: 
                   1081:   AC_CACHE_VAL([am_cv_prog_tar_$1], [am_cv_prog_tar_$1=$_am_tool])
                   1082:   AC_MSG_RESULT([$am_cv_prog_tar_$1])])
                   1083: 
                   1084: AC_SUBST([am__tar])
                   1085: AC_SUBST([am__untar])
                   1086: ])
                   1087: m4trace:configure.ac:1: -1- m4_pattern_forbid([^_?A[CHUM]_])
                   1088: m4trace:configure.ac:1: -1- m4_pattern_forbid([_AC_])
                   1089: m4trace:configure.ac:1: -1- m4_pattern_forbid([^LIBOBJS$], [do not use LIBOBJS directly, use AC_LIBOBJ (see section `AC_LIBOBJ vs LIBOBJS'])
                   1090: m4trace:configure.ac:1: -1- m4_pattern_allow([^AS_FLAGS$])
                   1091: m4trace:configure.ac:1: -1- m4_pattern_forbid([^_?m4_])
                   1092: m4trace:configure.ac:1: -1- m4_pattern_forbid([^dnl$])
                   1093: m4trace:configure.ac:1: -1- m4_pattern_forbid([^_?AS_])
                   1094: m4trace:configure.ac:1: -1- m4_pattern_allow([^SHELL$])
                   1095: m4trace:configure.ac:1: -1- m4_pattern_allow([^PATH_SEPARATOR$])
                   1096: m4trace:configure.ac:1: -1- m4_pattern_allow([^PACKAGE_NAME$])
                   1097: m4trace:configure.ac:1: -1- m4_pattern_allow([^PACKAGE_TARNAME$])
                   1098: m4trace:configure.ac:1: -1- m4_pattern_allow([^PACKAGE_VERSION$])
                   1099: m4trace:configure.ac:1: -1- m4_pattern_allow([^PACKAGE_STRING$])
                   1100: m4trace:configure.ac:1: -1- m4_pattern_allow([^PACKAGE_BUGREPORT$])
                   1101: m4trace:configure.ac:1: -1- m4_pattern_allow([^PACKAGE_URL$])
                   1102: m4trace:configure.ac:1: -1- m4_pattern_allow([^exec_prefix$])
                   1103: m4trace:configure.ac:1: -1- m4_pattern_allow([^prefix$])
                   1104: m4trace:configure.ac:1: -1- m4_pattern_allow([^program_transform_name$])
                   1105: m4trace:configure.ac:1: -1- m4_pattern_allow([^bindir$])
                   1106: m4trace:configure.ac:1: -1- m4_pattern_allow([^sbindir$])
                   1107: m4trace:configure.ac:1: -1- m4_pattern_allow([^libexecdir$])
                   1108: m4trace:configure.ac:1: -1- m4_pattern_allow([^datarootdir$])
                   1109: m4trace:configure.ac:1: -1- m4_pattern_allow([^datadir$])
                   1110: m4trace:configure.ac:1: -1- m4_pattern_allow([^sysconfdir$])
                   1111: m4trace:configure.ac:1: -1- m4_pattern_allow([^sharedstatedir$])
                   1112: m4trace:configure.ac:1: -1- m4_pattern_allow([^localstatedir$])
                   1113: m4trace:configure.ac:1: -1- m4_pattern_allow([^includedir$])
                   1114: m4trace:configure.ac:1: -1- m4_pattern_allow([^oldincludedir$])
                   1115: m4trace:configure.ac:1: -1- m4_pattern_allow([^docdir$])
                   1116: m4trace:configure.ac:1: -1- m4_pattern_allow([^infodir$])
                   1117: m4trace:configure.ac:1: -1- m4_pattern_allow([^htmldir$])
                   1118: m4trace:configure.ac:1: -1- m4_pattern_allow([^dvidir$])
                   1119: m4trace:configure.ac:1: -1- m4_pattern_allow([^pdfdir$])
                   1120: m4trace:configure.ac:1: -1- m4_pattern_allow([^psdir$])
                   1121: m4trace:configure.ac:1: -1- m4_pattern_allow([^libdir$])
                   1122: m4trace:configure.ac:1: -1- m4_pattern_allow([^localedir$])
                   1123: m4trace:configure.ac:1: -1- m4_pattern_allow([^mandir$])
                   1124: m4trace:configure.ac:1: -1- m4_pattern_allow([^PACKAGE_NAME$])
                   1125: m4trace:configure.ac:1: -1- m4_pattern_allow([^PACKAGE_TARNAME$])
                   1126: m4trace:configure.ac:1: -1- m4_pattern_allow([^PACKAGE_VERSION$])
                   1127: m4trace:configure.ac:1: -1- m4_pattern_allow([^PACKAGE_STRING$])
                   1128: m4trace:configure.ac:1: -1- m4_pattern_allow([^PACKAGE_BUGREPORT$])
                   1129: m4trace:configure.ac:1: -1- m4_pattern_allow([^PACKAGE_URL$])
                   1130: m4trace:configure.ac:1: -1- m4_pattern_allow([^DEFS$])
                   1131: m4trace:configure.ac:1: -1- m4_pattern_allow([^ECHO_C$])
                   1132: m4trace:configure.ac:1: -1- m4_pattern_allow([^ECHO_N$])
                   1133: m4trace:configure.ac:1: -1- m4_pattern_allow([^ECHO_T$])
                   1134: m4trace:configure.ac:1: -1- m4_pattern_allow([^LIBS$])
                   1135: m4trace:configure.ac:1: -1- m4_pattern_allow([^build_alias$])
                   1136: m4trace:configure.ac:1: -1- m4_pattern_allow([^host_alias$])
                   1137: m4trace:configure.ac:1: -1- m4_pattern_allow([^target_alias$])
                   1138: m4trace:configure.ac:3: -1- AM_INIT_AUTOMAKE([foreign])
                   1139: m4trace:configure.ac:3: -1- m4_pattern_allow([^AM_[A-Z]+FLAGS$])
                   1140: m4trace:configure.ac:3: -1- AM_SET_CURRENT_AUTOMAKE_VERSION
                   1141: m4trace:configure.ac:3: -1- AM_AUTOMAKE_VERSION([1.15])
                   1142: m4trace:configure.ac:3: -1- _AM_AUTOCONF_VERSION([2.69])
                   1143: m4trace:configure.ac:3: -1- m4_pattern_allow([^INSTALL_PROGRAM$])
                   1144: m4trace:configure.ac:3: -1- m4_pattern_allow([^INSTALL_SCRIPT$])
                   1145: m4trace:configure.ac:3: -1- m4_pattern_allow([^INSTALL_DATA$])
                   1146: m4trace:configure.ac:3: -1- m4_pattern_allow([^am__isrc$])
                   1147: m4trace:configure.ac:3: -1- _AM_SUBST_NOTMAKE([am__isrc])
                   1148: m4trace:configure.ac:3: -1- m4_pattern_allow([^CYGPATH_W$])
                   1149: m4trace:configure.ac:3: -1- _AM_SET_OPTIONS([foreign])
                   1150: m4trace:configure.ac:3: -1- _AM_SET_OPTION([foreign])
                   1151: m4trace:configure.ac:3: -2- _AM_MANGLE_OPTION([foreign])
                   1152: m4trace:configure.ac:3: -1- m4_pattern_allow([^PACKAGE$])
                   1153: m4trace:configure.ac:3: -1- m4_pattern_allow([^VERSION$])
                   1154: m4trace:configure.ac:3: -1- _AM_IF_OPTION([no-define], [], [AC_DEFINE_UNQUOTED([PACKAGE], ["$PACKAGE"], [Name of package])
                   1155:  AC_DEFINE_UNQUOTED([VERSION], ["$VERSION"], [Version number of package])])
                   1156: m4trace:configure.ac:3: -2- _AM_MANGLE_OPTION([no-define])
                   1157: m4trace:configure.ac:3: -1- m4_pattern_allow([^PACKAGE$])
                   1158: m4trace:configure.ac:3: -1- m4_pattern_allow([^VERSION$])
                   1159: m4trace:configure.ac:3: -1- AM_SANITY_CHECK
                   1160: m4trace:configure.ac:3: -1- AM_MISSING_PROG([ACLOCAL], [aclocal-${am__api_version}])
                   1161: m4trace:configure.ac:3: -1- AM_MISSING_HAS_RUN
                   1162: m4trace:configure.ac:3: -1- AM_AUX_DIR_EXPAND
                   1163: m4trace:configure.ac:3: -1- m4_pattern_allow([^ACLOCAL$])
                   1164: m4trace:configure.ac:3: -1- AM_MISSING_PROG([AUTOCONF], [autoconf])
                   1165: m4trace:configure.ac:3: -1- m4_pattern_allow([^AUTOCONF$])
                   1166: m4trace:configure.ac:3: -1- AM_MISSING_PROG([AUTOMAKE], [automake-${am__api_version}])
                   1167: m4trace:configure.ac:3: -1- m4_pattern_allow([^AUTOMAKE$])
                   1168: m4trace:configure.ac:3: -1- AM_MISSING_PROG([AUTOHEADER], [autoheader])
                   1169: m4trace:configure.ac:3: -1- m4_pattern_allow([^AUTOHEADER$])
                   1170: m4trace:configure.ac:3: -1- AM_MISSING_PROG([MAKEINFO], [makeinfo])
                   1171: m4trace:configure.ac:3: -1- m4_pattern_allow([^MAKEINFO$])
                   1172: m4trace:configure.ac:3: -1- AM_PROG_INSTALL_SH
                   1173: m4trace:configure.ac:3: -1- m4_pattern_allow([^install_sh$])
                   1174: m4trace:configure.ac:3: -1- AM_PROG_INSTALL_STRIP
                   1175: m4trace:configure.ac:3: -1- m4_pattern_allow([^STRIP$])
                   1176: m4trace:configure.ac:3: -1- m4_pattern_allow([^INSTALL_STRIP_PROGRAM$])
                   1177: m4trace:configure.ac:3: -1- m4_pattern_allow([^MKDIR_P$])
                   1178: m4trace:configure.ac:3: -1- m4_pattern_allow([^mkdir_p$])
                   1179: m4trace:configure.ac:3: -1- m4_pattern_allow([^AWK$])
                   1180: m4trace:configure.ac:3: -1- m4_pattern_allow([^SET_MAKE$])
                   1181: m4trace:configure.ac:3: -1- AM_SET_LEADING_DOT
                   1182: m4trace:configure.ac:3: -1- m4_pattern_allow([^am__leading_dot$])
                   1183: m4trace:configure.ac:3: -1- _AM_IF_OPTION([tar-ustar], [_AM_PROG_TAR([ustar])], [_AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])],
                   1184:                             [_AM_PROG_TAR([v7])])])
                   1185: m4trace:configure.ac:3: -2- _AM_MANGLE_OPTION([tar-ustar])
                   1186: m4trace:configure.ac:3: -1- _AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])], [_AM_PROG_TAR([v7])])
                   1187: m4trace:configure.ac:3: -2- _AM_MANGLE_OPTION([tar-pax])
                   1188: m4trace:configure.ac:3: -1- _AM_PROG_TAR([v7])
                   1189: m4trace:configure.ac:3: -1- m4_pattern_allow([^AMTAR$])
                   1190: m4trace:configure.ac:3: -1- m4_pattern_allow([^am__tar$])
                   1191: m4trace:configure.ac:3: -1- m4_pattern_allow([^am__untar$])
                   1192: m4trace:configure.ac:3: -1- _AM_IF_OPTION([no-dependencies], [], [AC_PROVIDE_IFELSE([AC_PROG_CC],
                   1193:                  [_AM_DEPENDENCIES([CC])],
                   1194:                  [m4_define([AC_PROG_CC],
                   1195:                             m4_defn([AC_PROG_CC])[_AM_DEPENDENCIES([CC])])])dnl
                   1196: AC_PROVIDE_IFELSE([AC_PROG_CXX],
                   1197:                  [_AM_DEPENDENCIES([CXX])],
                   1198:                  [m4_define([AC_PROG_CXX],
                   1199:                             m4_defn([AC_PROG_CXX])[_AM_DEPENDENCIES([CXX])])])dnl
                   1200: AC_PROVIDE_IFELSE([AC_PROG_OBJC],
                   1201:                  [_AM_DEPENDENCIES([OBJC])],
                   1202:                  [m4_define([AC_PROG_OBJC],
                   1203:                             m4_defn([AC_PROG_OBJC])[_AM_DEPENDENCIES([OBJC])])])dnl
                   1204: AC_PROVIDE_IFELSE([AC_PROG_OBJCXX],
                   1205:                  [_AM_DEPENDENCIES([OBJCXX])],
                   1206:                  [m4_define([AC_PROG_OBJCXX],
                   1207:                             m4_defn([AC_PROG_OBJCXX])[_AM_DEPENDENCIES([OBJCXX])])])dnl
                   1208: ])
                   1209: m4trace:configure.ac:3: -2- _AM_MANGLE_OPTION([no-dependencies])
                   1210: m4trace:configure.ac:3: -1- AM_SILENT_RULES
                   1211: m4trace:configure.ac:3: -1- m4_pattern_allow([^AM_V$])
                   1212: m4trace:configure.ac:3: -1- AM_SUBST_NOTMAKE([AM_V])
                   1213: m4trace:configure.ac:3: -1- _AM_SUBST_NOTMAKE([AM_V])
                   1214: m4trace:configure.ac:3: -1- m4_pattern_allow([^AM_DEFAULT_V$])
                   1215: m4trace:configure.ac:3: -1- AM_SUBST_NOTMAKE([AM_DEFAULT_V])
                   1216: m4trace:configure.ac:3: -1- _AM_SUBST_NOTMAKE([AM_DEFAULT_V])
                   1217: m4trace:configure.ac:3: -1- m4_pattern_allow([^AM_DEFAULT_VERBOSITY$])
                   1218: m4trace:configure.ac:3: -1- m4_pattern_allow([^AM_BACKSLASH$])
                   1219: m4trace:configure.ac:3: -1- _AM_SUBST_NOTMAKE([AM_BACKSLASH])
                   1220: m4trace:configure.ac:7: -1- m4_pattern_allow([^GTK_OBJ$])
                   1221: m4trace:configure.ac:8: -1- m4_pattern_allow([^CURSES_OBJ$])
                   1222: m4trace:configure.ac:13: -1- m4_pattern_allow([^CC$])
                   1223: m4trace:configure.ac:13: -1- m4_pattern_allow([^CFLAGS$])
                   1224: m4trace:configure.ac:13: -1- m4_pattern_allow([^LDFLAGS$])
                   1225: m4trace:configure.ac:13: -1- m4_pattern_allow([^LIBS$])
                   1226: m4trace:configure.ac:13: -1- m4_pattern_allow([^CPPFLAGS$])
                   1227: m4trace:configure.ac:13: -1- m4_pattern_allow([^CC$])
                   1228: m4trace:configure.ac:13: -1- m4_pattern_allow([^CC$])
                   1229: m4trace:configure.ac:13: -1- m4_pattern_allow([^CC$])
                   1230: m4trace:configure.ac:13: -1- m4_pattern_allow([^CC$])
                   1231: m4trace:configure.ac:13: -1- m4_pattern_allow([^ac_ct_CC$])
                   1232: m4trace:configure.ac:13: -1- m4_pattern_allow([^EXEEXT$])
                   1233: m4trace:configure.ac:13: -1- m4_pattern_allow([^OBJEXT$])
                   1234: m4trace:configure.ac:13: -1- _AM_PROG_CC_C_O
                   1235: m4trace:configure.ac:13: -1- AM_RUN_LOG([$CC -c conftest.$ac_ext -o conftest2.$ac_objext])
                   1236: m4trace:configure.ac:13: -1- _AM_DEPENDENCIES([CC])
                   1237: m4trace:configure.ac:13: -1- AM_SET_DEPDIR
                   1238: m4trace:configure.ac:13: -1- m4_pattern_allow([^DEPDIR$])
                   1239: m4trace:configure.ac:13: -1- AM_OUTPUT_DEPENDENCY_COMMANDS
                   1240: m4trace:configure.ac:13: -1- AM_MAKE_INCLUDE
                   1241: m4trace:configure.ac:13: -1- m4_pattern_allow([^am__include$])
                   1242: m4trace:configure.ac:13: -1- m4_pattern_allow([^am__quote$])
                   1243: m4trace:configure.ac:13: -1- AM_DEP_TRACK
                   1244: m4trace:configure.ac:13: -1- AM_CONDITIONAL([AMDEP], [test "x$enable_dependency_tracking" != xno])
                   1245: m4trace:configure.ac:13: -1- m4_pattern_allow([^AMDEP_TRUE$])
                   1246: m4trace:configure.ac:13: -1- m4_pattern_allow([^AMDEP_FALSE$])
                   1247: m4trace:configure.ac:13: -1- _AM_SUBST_NOTMAKE([AMDEP_TRUE])
                   1248: m4trace:configure.ac:13: -1- _AM_SUBST_NOTMAKE([AMDEP_FALSE])
                   1249: m4trace:configure.ac:13: -1- m4_pattern_allow([^AMDEPBACKSLASH$])
                   1250: m4trace:configure.ac:13: -1- _AM_SUBST_NOTMAKE([AMDEPBACKSLASH])
                   1251: m4trace:configure.ac:13: -1- m4_pattern_allow([^am__nodep$])
                   1252: m4trace:configure.ac:13: -1- _AM_SUBST_NOTMAKE([am__nodep])
                   1253: m4trace:configure.ac:13: -1- m4_pattern_allow([^CCDEPMODE$])
                   1254: m4trace:configure.ac:13: -1- AM_CONDITIONAL([am__fastdepCC], [
                   1255:   test "x$enable_dependency_tracking" != xno \
                   1256:   && test "$am_cv_CC_dependencies_compiler_type" = gcc3])
                   1257: m4trace:configure.ac:13: -1- m4_pattern_allow([^am__fastdepCC_TRUE$])
                   1258: m4trace:configure.ac:13: -1- m4_pattern_allow([^am__fastdepCC_FALSE$])
                   1259: m4trace:configure.ac:13: -1- _AM_SUBST_NOTMAKE([am__fastdepCC_TRUE])
                   1260: m4trace:configure.ac:13: -1- _AM_SUBST_NOTMAKE([am__fastdepCC_FALSE])
                   1261: m4trace:configure.ac:15: -1- m4_pattern_allow([^CPP$])
                   1262: m4trace:configure.ac:15: -1- m4_pattern_allow([^CPPFLAGS$])
                   1263: m4trace:configure.ac:15: -1- m4_pattern_allow([^CPP$])
                   1264: m4trace:configure.ac:15: -1- m4_pattern_allow([^GREP$])
                   1265: m4trace:configure.ac:15: -1- m4_pattern_allow([^EGREP$])
                   1266: m4trace:configure.ac:15: -1- m4_pattern_allow([^STDC_HEADERS$])
                   1267: m4trace:configure.ac:15: -1- m4_pattern_allow([^SIZEOF_UNSIGNED_CHAR$])
                   1268: m4trace:configure.ac:16: -1- m4_pattern_allow([^SIZEOF_UNSIGNED_SHORT$])
                   1269: m4trace:configure.ac:17: -1- m4_pattern_allow([^SIZEOF_UNSIGNED_INT$])
                   1270: m4trace:configure.ac:18: -1- m4_pattern_allow([^SIZEOF_UNSIGNED_LONG$])
                   1271: m4trace:configure.ac:26: -1- m4_pattern_allow([^HAVE_LIBTERMCAP$])
                   1272: m4trace:configure.ac:27: -1- m4_pattern_allow([^HAVE_LIBTINFO$])
                   1273: m4trace:configure.ac:34: -5- m4_pattern_allow([^NO_CURSES$])
                   1274: m4trace:configure.ac:32: -4- m4_pattern_allow([^HAVE_LIBCURSESX$])
                   1275: m4trace:configure.ac:31: -3- m4_pattern_allow([^HAVE_LIBCURSES$])
                   1276: m4trace:configure.ac:30: -2- m4_pattern_allow([^HAVE_LIBNCURSES$])
                   1277: m4trace:configure.ac:39: -1- m4_pattern_allow([^HAVE_LIBM$])
                   1278: m4trace:configure.ac:48: -1- AM_CONDITIONAL([IPINFO], [test x$ipinfo = xyes])
                   1279: m4trace:configure.ac:48: -1- m4_pattern_allow([^IPINFO_TRUE$])
                   1280: m4trace:configure.ac:48: -1- m4_pattern_allow([^IPINFO_FALSE$])
                   1281: m4trace:configure.ac:48: -1- _AM_SUBST_NOTMAKE([IPINFO_TRUE])
                   1282: m4trace:configure.ac:48: -1- _AM_SUBST_NOTMAKE([IPINFO_FALSE])
                   1283: m4trace:configure.ac:66: -2- m4_pattern_allow([^NO_GTK$])
                   1284: m4trace:configure.ac:63: -1- AM_PATH_GTK_2_0([2.6.0], [CFLAGS="$CFLAGS $GTK_CFLAGS"
                   1285:                            LIBS="$LIBS $GTK_LIBS -lm"], [{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: Building without GTK2 display support" >&5
                   1286: $as_echo "$as_me: WARNING: Building without GTK2 display support" >&2;}
                   1287:                    
                   1288: $as_echo "@%:@define NO_GTK 1" >>confdefs.h
                   1289: 
                   1290:                            GTK_OBJ=""])
                   1291: m4trace:configure.ac:63: -1- PKG_PROG_PKG_CONFIG
                   1292: m4trace:configure.ac:63: -1- m4_pattern_forbid([^_?PKG_[A-Z_]+$])
                   1293: m4trace:configure.ac:63: -1- m4_pattern_allow([^PKG_CONFIG(_(PATH|LIBDIR|SYSROOT_DIR|ALLOW_SYSTEM_(CFLAGS|LIBS)))?$])
                   1294: m4trace:configure.ac:63: -1- m4_pattern_allow([^PKG_CONFIG_(DISABLE_UNINSTALLED|TOP_BUILD_DIR|DEBUG_SPEW)$])
                   1295: m4trace:configure.ac:63: -1- m4_pattern_allow([^PKG_CONFIG$])
                   1296: m4trace:configure.ac:63: -1- m4_pattern_allow([^PKG_CONFIG_PATH$])
                   1297: m4trace:configure.ac:63: -1- m4_pattern_allow([^PKG_CONFIG_LIBDIR$])
                   1298: m4trace:configure.ac:63: -1- m4_pattern_allow([^PKG_CONFIG$])
                   1299: m4trace:configure.ac:63: -1- PKG_PROG_PKG_CONFIG([0.7])
                   1300: m4trace:configure.ac:63: -1- m4_pattern_forbid([^_?PKG_[A-Z_]+$])
                   1301: m4trace:configure.ac:63: -1- m4_pattern_allow([^PKG_CONFIG(_(PATH|LIBDIR|SYSROOT_DIR|ALLOW_SYSTEM_(CFLAGS|LIBS)))?$])
                   1302: m4trace:configure.ac:63: -1- m4_pattern_allow([^PKG_CONFIG_(DISABLE_UNINSTALLED|TOP_BUILD_DIR|DEBUG_SPEW)$])
                   1303: m4trace:configure.ac:63: -1- m4_pattern_allow([^PKG_CONFIG$])
                   1304: m4trace:configure.ac:63: -1- m4_pattern_allow([^PKG_CONFIG_PATH$])
                   1305: m4trace:configure.ac:63: -1- m4_pattern_allow([^PKG_CONFIG_LIBDIR$])
                   1306: m4trace:configure.ac:63: -1- m4_pattern_allow([^PKG_CONFIG$])
                   1307: m4trace:configure.ac:63: -1- _m4_warn([obsolete], [The macro `AC_TRY_RUN' is obsolete.
                   1308: You should run autoupdate.], [../../lib/autoconf/general.m4:2764: AC_TRY_RUN is expanded from...
                   1309: /usr/local/share/aclocal/gtk-2.0.m4:8: AM_PATH_GTK_2_0 is expanded from...
                   1310: configure.ac:63: the top level])
                   1311: m4trace:configure.ac:63: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete.
                   1312: You should run autoupdate.], [../../lib/autoconf/general.m4:2687: AC_TRY_LINK is expanded from...
                   1313: /usr/local/share/aclocal/gtk-2.0.m4:8: AM_PATH_GTK_2_0 is expanded from...
                   1314: configure.ac:63: the top level])
                   1315: m4trace:configure.ac:63: -1- m4_pattern_allow([^GTK_CFLAGS$])
                   1316: m4trace:configure.ac:63: -1- m4_pattern_allow([^GTK_LIBS$])
                   1317: m4trace:configure.ac:69: -1- m4_pattern_allow([^NO_GTK$])
                   1318: m4trace:configure.ac:74: -1- m4_pattern_allow([^NO_IPINFO$])
                   1319: m4trace:configure.ac:78: -2- m4_pattern_allow([^HAVE_LIBSOCKET$])
                   1320: m4trace:configure.ac:81: -2- m4_pattern_allow([^HAVE_LIBNSL$])
                   1321: m4trace:configure.ac:87: -1- m4_pattern_allow([^HAVE_SETEUID$])
                   1322: m4trace:configure.ac:97: -1- m4_pattern_allow([^RESOLV_LIBS$])
                   1323: m4trace:configure.ac:98: -1- AC_DEFUN([LIBRESOLVTEST_SRC], [
                   1324: AC_LANG_PROGRAM([[
                   1325: #include <netinet/in.h>
                   1326: #include <resolv.h>
                   1327: ]], [[
                   1328: int (*res_mkquery_func)(int,...) = (int (*)(int,...))res_mkquery;
                   1329: (void)(*res_mkquery_func)(0);
                   1330: ]])])
                   1331: m4trace:configure.ac:108: -1- LIBRESOLVTEST_SRC
                   1332: m4trace:configure.ac:116: -1- LIBRESOLVTEST_SRC
                   1333: m4trace:configure.ac:123: -1- LIBRESOLVTEST_SRC
                   1334: m4trace:configure.ac:132: -2- m4_pattern_allow([^NO_HERROR$])
                   1335: m4trace:configure.ac:133: -2- m4_pattern_allow([^NO_STRERROR$])
                   1336: m4trace:configure.ac:136: -1- m4_pattern_allow([^ENABLE_IPV6$])
                   1337: m4trace:configure.ac:142: -1- AC_DEFUN([NEED_RES_STATE_EXT_TEST_SRC], [
                   1338: AC_LANG_PROGRAM([[
                   1339: #include <netinet/in.h>
                   1340: #include <resolv.h>
                   1341: #ifdef __GLIBC__
                   1342: #define RESEXTIN6(r,i) (*(r._u._ext.nsaddrs[i]))
                   1343: #else
                   1344: #define RESEXTIN6(r,i) (r._u._ext.ext->nsaddrs[i].sin6)
                   1345: #endif
                   1346: ]], [[
                   1347: struct __res_state res;
                   1348: return RESEXTIN6(res,0).sin6_addr.s6_addr[0];
                   1349: ]])])
                   1350: m4trace:configure.ac:155: -1- AC_DEFUN([DEFINE_RES_STATE_EXT_TEST_SRC], [
                   1351: AC_LANG_PROGRAM([[
                   1352: #include <netinet/in.h>
                   1353: #include <resolv.h>
                   1354: #ifdef __GLIBC__
                   1355: #define RESEXTIN6(r,i) (*(r._u._ext.nsaddrs[i]))
                   1356: #else
                   1357: #define RESEXTIN6(r,i) (r._u._ext.ext->nsaddrs[i].sin6)
                   1358: struct __res_state_ext {
                   1359:        union res_sockaddr_union nsaddrs[MAXNS];
                   1360:        struct sort_list {
                   1361:                int     af;
                   1362:                union {
                   1363:                        struct in_addr  ina;
                   1364:                        struct in6_addr in6a;
                   1365:                } addr, mask;
                   1366:        } sort_list[MAXRESOLVSORT];
                   1367:        char nsuffix[64];
                   1368:        char nsuffix2[64];
                   1369: };
                   1370: #endif
                   1371: ]], [[
                   1372: struct __res_state res;
                   1373: return RESEXTIN6(res,0).sin6_addr.s6_addr[0];
                   1374: ]])])
                   1375: m4trace:configure.ac:182: -1- NEED_RES_STATE_EXT_TEST_SRC
                   1376: m4trace:configure.ac:182: -1- DEFINE_RES_STATE_EXT_TEST_SRC
                   1377: m4trace:configure.ac:182: -1- m4_pattern_allow([^NEED_RES_STATE_EXT$])
                   1378: m4trace:configure.ac:193: -1- m4_pattern_allow([^HAVE_DECL_ERRNO$])
                   1379: m4trace:configure.ac:198: -2- m4_pattern_allow([^HAVE_SOCKLEN_T$])
                   1380: m4trace:configure.ac:208: -2- m4_pattern_allow([^HAVE_STRUCT_INADDR$])
                   1381: m4trace:configure.ac:260: -1- m4_pattern_allow([^LIB@&t@OBJS$])
                   1382: m4trace:configure.ac:260: -1- m4_pattern_allow([^LTLIBOBJS$])
                   1383: m4trace:configure.ac:260: -1- AM_CONDITIONAL([am__EXEEXT], [test -n "$EXEEXT"])
                   1384: m4trace:configure.ac:260: -1- m4_pattern_allow([^am__EXEEXT_TRUE$])
                   1385: m4trace:configure.ac:260: -1- m4_pattern_allow([^am__EXEEXT_FALSE$])
                   1386: m4trace:configure.ac:260: -1- _AM_SUBST_NOTMAKE([am__EXEEXT_TRUE])
                   1387: m4trace:configure.ac:260: -1- _AM_SUBST_NOTMAKE([am__EXEEXT_FALSE])
                   1388: m4trace:configure.ac:260: -1- _AC_AM_CONFIG_HEADER_HOOK(["$ac_file"])
                   1389: m4trace:configure.ac:260: -1- _AM_OUTPUT_DEPENDENCY_COMMANDS

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>