"Fossies" - the Fresh Open Source Software Archive

Member "duff-0.5.2/aclocal.m4" (28 Jan 2012, 37676 Bytes) of package /linux/privat/old/duff-0.5.2.tar.gz:


As a special service "Fossies" has tried to format the requested text file into HTML format (style: standard) with prefixed line numbers. Alternatively you can here view or download the uninterpreted source code file.

    1 # generated automatically by aclocal 1.11.1 -*- Autoconf -*-
    2 
    3 # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
    4 # 2005, 2006, 2007, 2008, 2009  Free Software Foundation, Inc.
    5 # This file is free software; the Free Software Foundation
    6 # gives unlimited permission to copy and/or distribute it,
    7 # with or without modifications, as long as this notice is preserved.
    8 
    9 # This program is distributed in the hope that it will be useful,
   10 # but WITHOUT ANY WARRANTY, to the extent permitted by law; without
   11 # even the implied warranty of MERCHANTABILITY or FITNESS FOR A
   12 # PARTICULAR PURPOSE.
   13 
   14 m4_ifndef([AC_AUTOCONF_VERSION],
   15   [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl
   16 m4_if(m4_defn([AC_AUTOCONF_VERSION]), [2.67],,
   17 [m4_warning([this file was generated for autoconf 2.67.
   18 You have another version of autoconf.  It may work, but is not guaranteed to.
   19 If you have problems, you may need to regenerate the build system entirely.
   20 To do so, use the procedure documented by the package, typically `autoreconf'.])])
   21 
   22 # intlmacosx.m4 serial 3 (gettext-0.18)
   23 dnl Copyright (C) 2004-2010 Free Software Foundation, Inc.
   24 dnl This file is free software; the Free Software Foundation
   25 dnl gives unlimited permission to copy and/or distribute it,
   26 dnl with or without modifications, as long as this notice is preserved.
   27 dnl
   28 dnl This file can can be used in projects which are not available under
   29 dnl the GNU General Public License or the GNU Library General Public
   30 dnl License but which still want to provide support for the GNU gettext
   31 dnl functionality.
   32 dnl Please note that the actual code of the GNU gettext library is covered
   33 dnl by the GNU Library General Public License, and the rest of the GNU
   34 dnl gettext package package is covered by the GNU General Public License.
   35 dnl They are *not* in the public domain.
   36 
   37 dnl Checks for special options needed on MacOS X.
   38 dnl Defines INTL_MACOSX_LIBS.
   39 AC_DEFUN([gt_INTL_MACOSX],
   40 [
   41   dnl Check for API introduced in MacOS X 10.2.
   42   AC_CACHE_CHECK([for CFPreferencesCopyAppValue],
   43     [gt_cv_func_CFPreferencesCopyAppValue],
   44     [gt_save_LIBS="$LIBS"
   45      LIBS="$LIBS -Wl,-framework -Wl,CoreFoundation"
   46      AC_TRY_LINK([#include <CoreFoundation/CFPreferences.h>],
   47        [CFPreferencesCopyAppValue(NULL, NULL)],
   48        [gt_cv_func_CFPreferencesCopyAppValue=yes],
   49        [gt_cv_func_CFPreferencesCopyAppValue=no])
   50      LIBS="$gt_save_LIBS"])
   51   if test $gt_cv_func_CFPreferencesCopyAppValue = yes; then
   52     AC_DEFINE([HAVE_CFPREFERENCESCOPYAPPVALUE], [1],
   53       [Define to 1 if you have the MacOS X function CFPreferencesCopyAppValue in the CoreFoundation framework.])
   54   fi
   55   dnl Check for API introduced in MacOS X 10.3.
   56   AC_CACHE_CHECK([for CFLocaleCopyCurrent], [gt_cv_func_CFLocaleCopyCurrent],
   57     [gt_save_LIBS="$LIBS"
   58      LIBS="$LIBS -Wl,-framework -Wl,CoreFoundation"
   59      AC_TRY_LINK([#include <CoreFoundation/CFLocale.h>], [CFLocaleCopyCurrent();],
   60        [gt_cv_func_CFLocaleCopyCurrent=yes],
   61        [gt_cv_func_CFLocaleCopyCurrent=no])
   62      LIBS="$gt_save_LIBS"])
   63   if test $gt_cv_func_CFLocaleCopyCurrent = yes; then
   64     AC_DEFINE([HAVE_CFLOCALECOPYCURRENT], [1],
   65       [Define to 1 if you have the MacOS X function CFLocaleCopyCurrent in the CoreFoundation framework.])
   66   fi
   67   INTL_MACOSX_LIBS=
   68   if test $gt_cv_func_CFPreferencesCopyAppValue = yes || test $gt_cv_func_CFLocaleCopyCurrent = yes; then
   69     INTL_MACOSX_LIBS="-Wl,-framework -Wl,CoreFoundation"
   70   fi
   71   AC_SUBST([INTL_MACOSX_LIBS])
   72 ])
   73 
   74 # Copyright (C) 2002, 2003, 2005, 2006, 2007, 2008  Free Software Foundation, Inc.
   75 #
   76 # This file is free software; the Free Software Foundation
   77 # gives unlimited permission to copy and/or distribute it,
   78 # with or without modifications, as long as this notice is preserved.
   79 
   80 # AM_AUTOMAKE_VERSION(VERSION)
   81 # ----------------------------
   82 # Automake X.Y traces this macro to ensure aclocal.m4 has been
   83 # generated from the m4 files accompanying Automake X.Y.
   84 # (This private macro should not be called outside this file.)
   85 AC_DEFUN([AM_AUTOMAKE_VERSION],
   86 [am__api_version='1.11'
   87 dnl Some users find AM_AUTOMAKE_VERSION and mistake it for a way to
   88 dnl require some minimum version.  Point them to the right macro.
   89 m4_if([$1], [1.11.1], [],
   90       [AC_FATAL([Do not call $0, use AM_INIT_AUTOMAKE([$1]).])])dnl
   91 ])
   92 
   93 # _AM_AUTOCONF_VERSION(VERSION)
   94 # -----------------------------
   95 # aclocal traces this macro to find the Autoconf version.
   96 # This is a private macro too.  Using m4_define simplifies
   97 # the logic in aclocal, which can simply ignore this definition.
   98 m4_define([_AM_AUTOCONF_VERSION], [])
   99 
  100 # AM_SET_CURRENT_AUTOMAKE_VERSION
  101 # -------------------------------
  102 # Call AM_AUTOMAKE_VERSION and AM_AUTOMAKE_VERSION so they can be traced.
  103 # This function is AC_REQUIREd by AM_INIT_AUTOMAKE.
  104 AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION],
  105 [AM_AUTOMAKE_VERSION([1.11.1])dnl
  106 m4_ifndef([AC_AUTOCONF_VERSION],
  107   [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl
  108 _AM_AUTOCONF_VERSION(m4_defn([AC_AUTOCONF_VERSION]))])
  109 
  110 # AM_AUX_DIR_EXPAND                                         -*- Autoconf -*-
  111 
  112 # Copyright (C) 2001, 2003, 2005  Free Software Foundation, Inc.
  113 #
  114 # This file is free software; the Free Software Foundation
  115 # gives unlimited permission to copy and/or distribute it,
  116 # with or without modifications, as long as this notice is preserved.
  117 
  118 # For projects using AC_CONFIG_AUX_DIR([foo]), Autoconf sets
  119 # $ac_aux_dir to `$srcdir/foo'.  In other projects, it is set to
  120 # `$srcdir', `$srcdir/..', or `$srcdir/../..'.
  121 #
  122 # Of course, Automake must honor this variable whenever it calls a
  123 # tool from the auxiliary directory.  The problem is that $srcdir (and
  124 # therefore $ac_aux_dir as well) can be either absolute or relative,
  125 # depending on how configure is run.  This is pretty annoying, since
  126 # it makes $ac_aux_dir quite unusable in subdirectories: in the top
  127 # source directory, any form will work fine, but in subdirectories a
  128 # relative path needs to be adjusted first.
  129 #
  130 # $ac_aux_dir/missing
  131 #    fails when called from a subdirectory if $ac_aux_dir is relative
  132 # $top_srcdir/$ac_aux_dir/missing
  133 #    fails if $ac_aux_dir is absolute,
  134 #    fails when called from a subdirectory in a VPATH build with
  135 #          a relative $ac_aux_dir
  136 #
  137 # The reason of the latter failure is that $top_srcdir and $ac_aux_dir
  138 # are both prefixed by $srcdir.  In an in-source build this is usually
  139 # harmless because $srcdir is `.', but things will broke when you
  140 # start a VPATH build or use an absolute $srcdir.
  141 #
  142 # So we could use something similar to $top_srcdir/$ac_aux_dir/missing,
  143 # iff we strip the leading $srcdir from $ac_aux_dir.  That would be:
  144 #   am_aux_dir='\$(top_srcdir)/'`expr "$ac_aux_dir" : "$srcdir//*\(.*\)"`
  145 # and then we would define $MISSING as
  146 #   MISSING="\${SHELL} $am_aux_dir/missing"
  147 # This will work as long as MISSING is not called from configure, because
  148 # unfortunately $(top_srcdir) has no meaning in configure.
  149 # However there are other variables, like CC, which are often used in
  150 # configure, and could therefore not use this "fixed" $ac_aux_dir.
  151 #
  152 # Another solution, used here, is to always expand $ac_aux_dir to an
  153 # absolute PATH.  The drawback is that using absolute paths prevent a
  154 # configured tree to be moved without reconfiguration.
  155 
  156 AC_DEFUN([AM_AUX_DIR_EXPAND],
  157 [dnl Rely on autoconf to set up CDPATH properly.
  158 AC_PREREQ([2.50])dnl
  159 # expand $ac_aux_dir to an absolute path
  160 am_aux_dir=`cd $ac_aux_dir && pwd`
  161 ])
  162 
  163 # AM_CONDITIONAL                                            -*- Autoconf -*-
  164 
  165 # Copyright (C) 1997, 2000, 2001, 2003, 2004, 2005, 2006, 2008
  166 # Free Software Foundation, Inc.
  167 #
  168 # This file is free software; the Free Software Foundation
  169 # gives unlimited permission to copy and/or distribute it,
  170 # with or without modifications, as long as this notice is preserved.
  171 
  172 # serial 9
  173 
  174 # AM_CONDITIONAL(NAME, SHELL-CONDITION)
  175 # -------------------------------------
  176 # Define a conditional.
  177 AC_DEFUN([AM_CONDITIONAL],
  178 [AC_PREREQ(2.52)dnl
  179  ifelse([$1], [TRUE],  [AC_FATAL([$0: invalid condition: $1])],
  180 	[$1], [FALSE], [AC_FATAL([$0: invalid condition: $1])])dnl
  181 AC_SUBST([$1_TRUE])dnl
  182 AC_SUBST([$1_FALSE])dnl
  183 _AM_SUBST_NOTMAKE([$1_TRUE])dnl
  184 _AM_SUBST_NOTMAKE([$1_FALSE])dnl
  185 m4_define([_AM_COND_VALUE_$1], [$2])dnl
  186 if $2; then
  187   $1_TRUE=
  188   $1_FALSE='#'
  189 else
  190   $1_TRUE='#'
  191   $1_FALSE=
  192 fi
  193 AC_CONFIG_COMMANDS_PRE(
  194 [if test -z "${$1_TRUE}" && test -z "${$1_FALSE}"; then
  195   AC_MSG_ERROR([[conditional "$1" was never defined.
  196 Usually this means the macro was only invoked conditionally.]])
  197 fi])])
  198 
  199 # Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2009
  200 # Free Software Foundation, Inc.
  201 #
  202 # This file is free software; the Free Software Foundation
  203 # gives unlimited permission to copy and/or distribute it,
  204 # with or without modifications, as long as this notice is preserved.
  205 
  206 # serial 10
  207 
  208 # There are a few dirty hacks below to avoid letting `AC_PROG_CC' be
  209 # written in clear, in which case automake, when reading aclocal.m4,
  210 # will think it sees a *use*, and therefore will trigger all it's
  211 # C support machinery.  Also note that it means that autoscan, seeing
  212 # CC etc. in the Makefile, will ask for an AC_PROG_CC use...
  213 
  214 
  215 # _AM_DEPENDENCIES(NAME)
  216 # ----------------------
  217 # See how the compiler implements dependency checking.
  218 # NAME is "CC", "CXX", "GCJ", or "OBJC".
  219 # We try a few techniques and use that to set a single cache variable.
  220 #
  221 # We don't AC_REQUIRE the corresponding AC_PROG_CC since the latter was
  222 # modified to invoke _AM_DEPENDENCIES(CC); we would have a circular
  223 # dependency, and given that the user is not expected to run this macro,
  224 # just rely on AC_PROG_CC.
  225 AC_DEFUN([_AM_DEPENDENCIES],
  226 [AC_REQUIRE([AM_SET_DEPDIR])dnl
  227 AC_REQUIRE([AM_OUTPUT_DEPENDENCY_COMMANDS])dnl
  228 AC_REQUIRE([AM_MAKE_INCLUDE])dnl
  229 AC_REQUIRE([AM_DEP_TRACK])dnl
  230 
  231 ifelse([$1], CC,   [depcc="$CC"   am_compiler_list=],
  232        [$1], CXX,  [depcc="$CXX"  am_compiler_list=],
  233        [$1], OBJC, [depcc="$OBJC" am_compiler_list='gcc3 gcc'],
  234        [$1], UPC,  [depcc="$UPC"  am_compiler_list=],
  235        [$1], GCJ,  [depcc="$GCJ"  am_compiler_list='gcc3 gcc'],
  236                    [depcc="$$1"   am_compiler_list=])
  237 
  238 AC_CACHE_CHECK([dependency style of $depcc],
  239                [am_cv_$1_dependencies_compiler_type],
  240 [if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then
  241   # We make a subdir and do the tests there.  Otherwise we can end up
  242   # making bogus files that we don't know about and never remove.  For
  243   # instance it was reported that on HP-UX the gcc test will end up
  244   # making a dummy file named `D' -- because `-MD' means `put the output
  245   # in D'.
  246   mkdir conftest.dir
  247   # Copy depcomp to subdir because otherwise we won't find it if we're
  248   # using a relative directory.
  249   cp "$am_depcomp" conftest.dir
  250   cd conftest.dir
  251   # We will build objects and dependencies in a subdirectory because
  252   # it helps to detect inapplicable dependency modes.  For instance
  253   # both Tru64's cc and ICC support -MD to output dependencies as a
  254   # side effect of compilation, but ICC will put the dependencies in
  255   # the current directory while Tru64 will put them in the object
  256   # directory.
  257   mkdir sub
  258 
  259   am_cv_$1_dependencies_compiler_type=none
  260   if test "$am_compiler_list" = ""; then
  261      am_compiler_list=`sed -n ['s/^#*\([a-zA-Z0-9]*\))$/\1/p'] < ./depcomp`
  262   fi
  263   am__universal=false
  264   m4_case([$1], [CC],
  265     [case " $depcc " in #(
  266      *\ -arch\ *\ -arch\ *) am__universal=true ;;
  267      esac],
  268     [CXX],
  269     [case " $depcc " in #(
  270      *\ -arch\ *\ -arch\ *) am__universal=true ;;
  271      esac])
  272 
  273   for depmode in $am_compiler_list; do
  274     # Setup a source with many dependencies, because some compilers
  275     # like to wrap large dependency lists on column 80 (with \), and
  276     # we should not choose a depcomp mode which is confused by this.
  277     #
  278     # We need to recreate these files for each test, as the compiler may
  279     # overwrite some of them when testing with obscure command lines.
  280     # This happens at least with the AIX C compiler.
  281     : > sub/conftest.c
  282     for i in 1 2 3 4 5 6; do
  283       echo '#include "conftst'$i'.h"' >> sub/conftest.c
  284       # Using `: > sub/conftst$i.h' creates only sub/conftst1.h with
  285       # Solaris 8's {/usr,}/bin/sh.
  286       touch sub/conftst$i.h
  287     done
  288     echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf
  289 
  290     # We check with `-c' and `-o' for the sake of the "dashmstdout"
  291     # mode.  It turns out that the SunPro C++ compiler does not properly
  292     # handle `-M -o', and we need to detect this.  Also, some Intel
  293     # versions had trouble with output in subdirs
  294     am__obj=sub/conftest.${OBJEXT-o}
  295     am__minus_obj="-o $am__obj"
  296     case $depmode in
  297     gcc)
  298       # This depmode causes a compiler race in universal mode.
  299       test "$am__universal" = false || continue
  300       ;;
  301     nosideeffect)
  302       # after this tag, mechanisms are not by side-effect, so they'll
  303       # only be used when explicitly requested
  304       if test "x$enable_dependency_tracking" = xyes; then
  305 	continue
  306       else
  307 	break
  308       fi
  309       ;;
  310     msvisualcpp | msvcmsys)
  311       # This compiler won't grok `-c -o', but also, the minuso test has
  312       # not run yet.  These depmodes are late enough in the game, and
  313       # so weak that their functioning should not be impacted.
  314       am__obj=conftest.${OBJEXT-o}
  315       am__minus_obj=
  316       ;;
  317     none) break ;;
  318     esac
  319     if depmode=$depmode \
  320        source=sub/conftest.c object=$am__obj \
  321        depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \
  322        $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \
  323          >/dev/null 2>conftest.err &&
  324        grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 &&
  325        grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 &&
  326        grep $am__obj sub/conftest.Po > /dev/null 2>&1 &&
  327        ${MAKE-make} -s -f confmf > /dev/null 2>&1; then
  328       # icc doesn't choke on unknown options, it will just issue warnings
  329       # or remarks (even with -Werror).  So we grep stderr for any message
  330       # that says an option was ignored or not supported.
  331       # When given -MP, icc 7.0 and 7.1 complain thusly:
  332       #   icc: Command line warning: ignoring option '-M'; no argument required
  333       # The diagnosis changed in icc 8.0:
  334       #   icc: Command line remark: option '-MP' not supported
  335       if (grep 'ignoring option' conftest.err ||
  336           grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else
  337         am_cv_$1_dependencies_compiler_type=$depmode
  338         break
  339       fi
  340     fi
  341   done
  342 
  343   cd ..
  344   rm -rf conftest.dir
  345 else
  346   am_cv_$1_dependencies_compiler_type=none
  347 fi
  348 ])
  349 AC_SUBST([$1DEPMODE], [depmode=$am_cv_$1_dependencies_compiler_type])
  350 AM_CONDITIONAL([am__fastdep$1], [
  351   test "x$enable_dependency_tracking" != xno \
  352   && test "$am_cv_$1_dependencies_compiler_type" = gcc3])
  353 ])
  354 
  355 
  356 # AM_SET_DEPDIR
  357 # -------------
  358 # Choose a directory name for dependency files.
  359 # This macro is AC_REQUIREd in _AM_DEPENDENCIES
  360 AC_DEFUN([AM_SET_DEPDIR],
  361 [AC_REQUIRE([AM_SET_LEADING_DOT])dnl
  362 AC_SUBST([DEPDIR], ["${am__leading_dot}deps"])dnl
  363 ])
  364 
  365 
  366 # AM_DEP_TRACK
  367 # ------------
  368 AC_DEFUN([AM_DEP_TRACK],
  369 [AC_ARG_ENABLE(dependency-tracking,
  370 [  --disable-dependency-tracking  speeds up one-time build
  371   --enable-dependency-tracking   do not reject slow dependency extractors])
  372 if test "x$enable_dependency_tracking" != xno; then
  373   am_depcomp="$ac_aux_dir/depcomp"
  374   AMDEPBACKSLASH='\'
  375 fi
  376 AM_CONDITIONAL([AMDEP], [test "x$enable_dependency_tracking" != xno])
  377 AC_SUBST([AMDEPBACKSLASH])dnl
  378 _AM_SUBST_NOTMAKE([AMDEPBACKSLASH])dnl
  379 ])
  380 
  381 # Generate code to set up dependency tracking.              -*- Autoconf -*-
  382 
  383 # Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2008
  384 # Free Software Foundation, Inc.
  385 #
  386 # This file is free software; the Free Software Foundation
  387 # gives unlimited permission to copy and/or distribute it,
  388 # with or without modifications, as long as this notice is preserved.
  389 
  390 #serial 5
  391 
  392 # _AM_OUTPUT_DEPENDENCY_COMMANDS
  393 # ------------------------------
  394 AC_DEFUN([_AM_OUTPUT_DEPENDENCY_COMMANDS],
  395 [{
  396   # Autoconf 2.62 quotes --file arguments for eval, but not when files
  397   # are listed without --file.  Let's play safe and only enable the eval
  398   # if we detect the quoting.
  399   case $CONFIG_FILES in
  400   *\'*) eval set x "$CONFIG_FILES" ;;
  401   *)   set x $CONFIG_FILES ;;
  402   esac
  403   shift
  404   for mf
  405   do
  406     # Strip MF so we end up with the name of the file.
  407     mf=`echo "$mf" | sed -e 's/:.*$//'`
  408     # Check whether this is an Automake generated Makefile or not.
  409     # We used to match only the files named `Makefile.in', but
  410     # some people rename them; so instead we look at the file content.
  411     # Grep'ing the first line is not enough: some people post-process
  412     # each Makefile.in and add a new line on top of each file to say so.
  413     # Grep'ing the whole file is not good either: AIX grep has a line
  414     # limit of 2048, but all sed's we know have understand at least 4000.
  415     if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then
  416       dirpart=`AS_DIRNAME("$mf")`
  417     else
  418       continue
  419     fi
  420     # Extract the definition of DEPDIR, am__include, and am__quote
  421     # from the Makefile without running `make'.
  422     DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"`
  423     test -z "$DEPDIR" && continue
  424     am__include=`sed -n 's/^am__include = //p' < "$mf"`
  425     test -z "am__include" && continue
  426     am__quote=`sed -n 's/^am__quote = //p' < "$mf"`
  427     # When using ansi2knr, U may be empty or an underscore; expand it
  428     U=`sed -n 's/^U = //p' < "$mf"`
  429     # Find all dependency output files, they are included files with
  430     # $(DEPDIR) in their names.  We invoke sed twice because it is the
  431     # simplest approach to changing $(DEPDIR) to its actual value in the
  432     # expansion.
  433     for file in `sed -n "
  434       s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \
  435 	 sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g' -e 's/\$U/'"$U"'/g'`; do
  436       # Make sure the directory exists.
  437       test -f "$dirpart/$file" && continue
  438       fdir=`AS_DIRNAME(["$file"])`
  439       AS_MKDIR_P([$dirpart/$fdir])
  440       # echo "creating $dirpart/$file"
  441       echo '# dummy' > "$dirpart/$file"
  442     done
  443   done
  444 }
  445 ])# _AM_OUTPUT_DEPENDENCY_COMMANDS
  446 
  447 
  448 # AM_OUTPUT_DEPENDENCY_COMMANDS
  449 # -----------------------------
  450 # This macro should only be invoked once -- use via AC_REQUIRE.
  451 #
  452 # This code is only required when automatic dependency tracking
  453 # is enabled.  FIXME.  This creates each `.P' file that we will
  454 # need in order to bootstrap the dependency handling code.
  455 AC_DEFUN([AM_OUTPUT_DEPENDENCY_COMMANDS],
  456 [AC_CONFIG_COMMANDS([depfiles],
  457      [test x"$AMDEP_TRUE" != x"" || _AM_OUTPUT_DEPENDENCY_COMMANDS],
  458      [AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir"])
  459 ])
  460 
  461 # Copyright (C) 1996, 1997, 2000, 2001, 2003, 2005
  462 # Free Software Foundation, Inc.
  463 #
  464 # This file is free software; the Free Software Foundation
  465 # gives unlimited permission to copy and/or distribute it,
  466 # with or without modifications, as long as this notice is preserved.
  467 
  468 # serial 8
  469 
  470 # AM_CONFIG_HEADER is obsolete.  It has been replaced by AC_CONFIG_HEADERS.
  471 AU_DEFUN([AM_CONFIG_HEADER], [AC_CONFIG_HEADERS($@)])
  472 
  473 # Do all the work for Automake.                             -*- Autoconf -*-
  474 
  475 # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
  476 # 2005, 2006, 2008, 2009 Free Software Foundation, Inc.
  477 #
  478 # This file is free software; the Free Software Foundation
  479 # gives unlimited permission to copy and/or distribute it,
  480 # with or without modifications, as long as this notice is preserved.
  481 
  482 # serial 16
  483 
  484 # This macro actually does too much.  Some checks are only needed if
  485 # your package does certain things.  But this isn't really a big deal.
  486 
  487 # AM_INIT_AUTOMAKE(PACKAGE, VERSION, [NO-DEFINE])
  488 # AM_INIT_AUTOMAKE([OPTIONS])
  489 # -----------------------------------------------
  490 # The call with PACKAGE and VERSION arguments is the old style
  491 # call (pre autoconf-2.50), which is being phased out.  PACKAGE
  492 # and VERSION should now be passed to AC_INIT and removed from
  493 # the call to AM_INIT_AUTOMAKE.
  494 # We support both call styles for the transition.  After
  495 # the next Automake release, Autoconf can make the AC_INIT
  496 # arguments mandatory, and then we can depend on a new Autoconf
  497 # release and drop the old call support.
  498 AC_DEFUN([AM_INIT_AUTOMAKE],
  499 [AC_PREREQ([2.62])dnl
  500 dnl Autoconf wants to disallow AM_ names.  We explicitly allow
  501 dnl the ones we care about.
  502 m4_pattern_allow([^AM_[A-Z]+FLAGS$])dnl
  503 AC_REQUIRE([AM_SET_CURRENT_AUTOMAKE_VERSION])dnl
  504 AC_REQUIRE([AC_PROG_INSTALL])dnl
  505 if test "`cd $srcdir && pwd`" != "`pwd`"; then
  506   # Use -I$(srcdir) only when $(srcdir) != ., so that make's output
  507   # is not polluted with repeated "-I."
  508   AC_SUBST([am__isrc], [' -I$(srcdir)'])_AM_SUBST_NOTMAKE([am__isrc])dnl
  509   # test to see if srcdir already configured
  510   if test -f $srcdir/config.status; then
  511     AC_MSG_ERROR([source directory already configured; run "make distclean" there first])
  512   fi
  513 fi
  514 
  515 # test whether we have cygpath
  516 if test -z "$CYGPATH_W"; then
  517   if (cygpath --version) >/dev/null 2>/dev/null; then
  518     CYGPATH_W='cygpath -w'
  519   else
  520     CYGPATH_W=echo
  521   fi
  522 fi
  523 AC_SUBST([CYGPATH_W])
  524 
  525 # Define the identity of the package.
  526 dnl Distinguish between old-style and new-style calls.
  527 m4_ifval([$2],
  528 [m4_ifval([$3], [_AM_SET_OPTION([no-define])])dnl
  529  AC_SUBST([PACKAGE], [$1])dnl
  530  AC_SUBST([VERSION], [$2])],
  531 [_AM_SET_OPTIONS([$1])dnl
  532 dnl Diagnose old-style AC_INIT with new-style AM_AUTOMAKE_INIT.
  533 m4_if(m4_ifdef([AC_PACKAGE_NAME], 1)m4_ifdef([AC_PACKAGE_VERSION], 1), 11,,
  534   [m4_fatal([AC_INIT should be called with package and version arguments])])dnl
  535  AC_SUBST([PACKAGE], ['AC_PACKAGE_TARNAME'])dnl
  536  AC_SUBST([VERSION], ['AC_PACKAGE_VERSION'])])dnl
  537 
  538 _AM_IF_OPTION([no-define],,
  539 [AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE", [Name of package])
  540  AC_DEFINE_UNQUOTED(VERSION, "$VERSION", [Version number of package])])dnl
  541 
  542 # Some tools Automake needs.
  543 AC_REQUIRE([AM_SANITY_CHECK])dnl
  544 AC_REQUIRE([AC_ARG_PROGRAM])dnl
  545 AM_MISSING_PROG(ACLOCAL, aclocal-${am__api_version})
  546 AM_MISSING_PROG(AUTOCONF, autoconf)
  547 AM_MISSING_PROG(AUTOMAKE, automake-${am__api_version})
  548 AM_MISSING_PROG(AUTOHEADER, autoheader)
  549 AM_MISSING_PROG(MAKEINFO, makeinfo)
  550 AC_REQUIRE([AM_PROG_INSTALL_SH])dnl
  551 AC_REQUIRE([AM_PROG_INSTALL_STRIP])dnl
  552 AC_REQUIRE([AM_PROG_MKDIR_P])dnl
  553 # We need awk for the "check" target.  The system "awk" is bad on
  554 # some platforms.
  555 AC_REQUIRE([AC_PROG_AWK])dnl
  556 AC_REQUIRE([AC_PROG_MAKE_SET])dnl
  557 AC_REQUIRE([AM_SET_LEADING_DOT])dnl
  558 _AM_IF_OPTION([tar-ustar], [_AM_PROG_TAR([ustar])],
  559 	      [_AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])],
  560 			     [_AM_PROG_TAR([v7])])])
  561 _AM_IF_OPTION([no-dependencies],,
  562 [AC_PROVIDE_IFELSE([AC_PROG_CC],
  563 		  [_AM_DEPENDENCIES(CC)],
  564 		  [define([AC_PROG_CC],
  565 			  defn([AC_PROG_CC])[_AM_DEPENDENCIES(CC)])])dnl
  566 AC_PROVIDE_IFELSE([AC_PROG_CXX],
  567 		  [_AM_DEPENDENCIES(CXX)],
  568 		  [define([AC_PROG_CXX],
  569 			  defn([AC_PROG_CXX])[_AM_DEPENDENCIES(CXX)])])dnl
  570 AC_PROVIDE_IFELSE([AC_PROG_OBJC],
  571 		  [_AM_DEPENDENCIES(OBJC)],
  572 		  [define([AC_PROG_OBJC],
  573 			  defn([AC_PROG_OBJC])[_AM_DEPENDENCIES(OBJC)])])dnl
  574 ])
  575 _AM_IF_OPTION([silent-rules], [AC_REQUIRE([AM_SILENT_RULES])])dnl
  576 dnl The `parallel-tests' driver may need to know about EXEEXT, so add the
  577 dnl `am__EXEEXT' conditional if _AM_COMPILER_EXEEXT was seen.  This macro
  578 dnl is hooked onto _AC_COMPILER_EXEEXT early, see below.
  579 AC_CONFIG_COMMANDS_PRE(dnl
  580 [m4_provide_if([_AM_COMPILER_EXEEXT],
  581   [AM_CONDITIONAL([am__EXEEXT], [test -n "$EXEEXT"])])])dnl
  582 ])
  583 
  584 dnl Hook into `_AC_COMPILER_EXEEXT' early to learn its expansion.  Do not
  585 dnl add the conditional right here, as _AC_COMPILER_EXEEXT may be further
  586 dnl mangled by Autoconf and run in a shell conditional statement.
  587 m4_define([_AC_COMPILER_EXEEXT],
  588 m4_defn([_AC_COMPILER_EXEEXT])[m4_provide([_AM_COMPILER_EXEEXT])])
  589 
  590 
  591 # When config.status generates a header, we must update the stamp-h file.
  592 # This file resides in the same directory as the config header
  593 # that is generated.  The stamp files are numbered to have different names.
  594 
  595 # Autoconf calls _AC_AM_CONFIG_HEADER_HOOK (when defined) in the
  596 # loop where config.status creates the headers, so we can generate
  597 # our stamp files there.
  598 AC_DEFUN([_AC_AM_CONFIG_HEADER_HOOK],
  599 [# Compute $1's index in $config_headers.
  600 _am_arg=$1
  601 _am_stamp_count=1
  602 for _am_header in $config_headers :; do
  603   case $_am_header in
  604     $_am_arg | $_am_arg:* )
  605       break ;;
  606     * )
  607       _am_stamp_count=`expr $_am_stamp_count + 1` ;;
  608   esac
  609 done
  610 echo "timestamp for $_am_arg" >`AS_DIRNAME(["$_am_arg"])`/stamp-h[]$_am_stamp_count])
  611 
  612 # Copyright (C) 2001, 2003, 2005, 2008  Free Software Foundation, Inc.
  613 #
  614 # This file is free software; the Free Software Foundation
  615 # gives unlimited permission to copy and/or distribute it,
  616 # with or without modifications, as long as this notice is preserved.
  617 
  618 # AM_PROG_INSTALL_SH
  619 # ------------------
  620 # Define $install_sh.
  621 AC_DEFUN([AM_PROG_INSTALL_SH],
  622 [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
  623 if test x"${install_sh}" != xset; then
  624   case $am_aux_dir in
  625   *\ * | *\	*)
  626     install_sh="\${SHELL} '$am_aux_dir/install-sh'" ;;
  627   *)
  628     install_sh="\${SHELL} $am_aux_dir/install-sh"
  629   esac
  630 fi
  631 AC_SUBST(install_sh)])
  632 
  633 # Copyright (C) 2003, 2005  Free Software Foundation, Inc.
  634 #
  635 # This file is free software; the Free Software Foundation
  636 # gives unlimited permission to copy and/or distribute it,
  637 # with or without modifications, as long as this notice is preserved.
  638 
  639 # serial 2
  640 
  641 # Check whether the underlying file-system supports filenames
  642 # with a leading dot.  For instance MS-DOS doesn't.
  643 AC_DEFUN([AM_SET_LEADING_DOT],
  644 [rm -rf .tst 2>/dev/null
  645 mkdir .tst 2>/dev/null
  646 if test -d .tst; then
  647   am__leading_dot=.
  648 else
  649   am__leading_dot=_
  650 fi
  651 rmdir .tst 2>/dev/null
  652 AC_SUBST([am__leading_dot])])
  653 
  654 # Check to see how 'make' treats includes.	            -*- Autoconf -*-
  655 
  656 # Copyright (C) 2001, 2002, 2003, 2005, 2009  Free Software Foundation, Inc.
  657 #
  658 # This file is free software; the Free Software Foundation
  659 # gives unlimited permission to copy and/or distribute it,
  660 # with or without modifications, as long as this notice is preserved.
  661 
  662 # serial 4
  663 
  664 # AM_MAKE_INCLUDE()
  665 # -----------------
  666 # Check to see how make treats includes.
  667 AC_DEFUN([AM_MAKE_INCLUDE],
  668 [am_make=${MAKE-make}
  669 cat > confinc << 'END'
  670 am__doit:
  671 	@echo this is the am__doit target
  672 .PHONY: am__doit
  673 END
  674 # If we don't find an include directive, just comment out the code.
  675 AC_MSG_CHECKING([for style of include used by $am_make])
  676 am__include="#"
  677 am__quote=
  678 _am_result=none
  679 # First try GNU make style include.
  680 echo "include confinc" > confmf
  681 # Ignore all kinds of additional output from `make'.
  682 case `$am_make -s -f confmf 2> /dev/null` in #(
  683 *the\ am__doit\ target*)
  684   am__include=include
  685   am__quote=
  686   _am_result=GNU
  687   ;;
  688 esac
  689 # Now try BSD make style include.
  690 if test "$am__include" = "#"; then
  691    echo '.include "confinc"' > confmf
  692    case `$am_make -s -f confmf 2> /dev/null` in #(
  693    *the\ am__doit\ target*)
  694      am__include=.include
  695      am__quote="\""
  696      _am_result=BSD
  697      ;;
  698    esac
  699 fi
  700 AC_SUBST([am__include])
  701 AC_SUBST([am__quote])
  702 AC_MSG_RESULT([$_am_result])
  703 rm -f confinc confmf
  704 ])
  705 
  706 # Fake the existence of programs that GNU maintainers use.  -*- Autoconf -*-
  707 
  708 # Copyright (C) 1997, 1999, 2000, 2001, 2003, 2004, 2005, 2008
  709 # Free Software Foundation, Inc.
  710 #
  711 # This file is free software; the Free Software Foundation
  712 # gives unlimited permission to copy and/or distribute it,
  713 # with or without modifications, as long as this notice is preserved.
  714 
  715 # serial 6
  716 
  717 # AM_MISSING_PROG(NAME, PROGRAM)
  718 # ------------------------------
  719 AC_DEFUN([AM_MISSING_PROG],
  720 [AC_REQUIRE([AM_MISSING_HAS_RUN])
  721 $1=${$1-"${am_missing_run}$2"}
  722 AC_SUBST($1)])
  723 
  724 
  725 # AM_MISSING_HAS_RUN
  726 # ------------------
  727 # Define MISSING if not defined so far and test if it supports --run.
  728 # If it does, set am_missing_run to use it, otherwise, to nothing.
  729 AC_DEFUN([AM_MISSING_HAS_RUN],
  730 [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
  731 AC_REQUIRE_AUX_FILE([missing])dnl
  732 if test x"${MISSING+set}" != xset; then
  733   case $am_aux_dir in
  734   *\ * | *\	*)
  735     MISSING="\${SHELL} \"$am_aux_dir/missing\"" ;;
  736   *)
  737     MISSING="\${SHELL} $am_aux_dir/missing" ;;
  738   esac
  739 fi
  740 # Use eval to expand $SHELL
  741 if eval "$MISSING --run true"; then
  742   am_missing_run="$MISSING --run "
  743 else
  744   am_missing_run=
  745   AC_MSG_WARN([`missing' script is too old or missing])
  746 fi
  747 ])
  748 
  749 # Copyright (C) 2003, 2004, 2005, 2006  Free Software Foundation, Inc.
  750 #
  751 # This file is free software; the Free Software Foundation
  752 # gives unlimited permission to copy and/or distribute it,
  753 # with or without modifications, as long as this notice is preserved.
  754 
  755 # AM_PROG_MKDIR_P
  756 # ---------------
  757 # Check for `mkdir -p'.
  758 AC_DEFUN([AM_PROG_MKDIR_P],
  759 [AC_PREREQ([2.60])dnl
  760 AC_REQUIRE([AC_PROG_MKDIR_P])dnl
  761 dnl Automake 1.8 to 1.9.6 used to define mkdir_p.  We now use MKDIR_P,
  762 dnl while keeping a definition of mkdir_p for backward compatibility.
  763 dnl @MKDIR_P@ is magic: AC_OUTPUT adjusts its value for each Makefile.
  764 dnl However we cannot define mkdir_p as $(MKDIR_P) for the sake of
  765 dnl Makefile.ins that do not define MKDIR_P, so we do our own
  766 dnl adjustment using top_builddir (which is defined more often than
  767 dnl MKDIR_P).
  768 AC_SUBST([mkdir_p], ["$MKDIR_P"])dnl
  769 case $mkdir_p in
  770   [[\\/$]]* | ?:[[\\/]]*) ;;
  771   */*) mkdir_p="\$(top_builddir)/$mkdir_p" ;;
  772 esac
  773 ])
  774 
  775 # Helper functions for option handling.                     -*- Autoconf -*-
  776 
  777 # Copyright (C) 2001, 2002, 2003, 2005, 2008  Free Software Foundation, Inc.
  778 #
  779 # This file is free software; the Free Software Foundation
  780 # gives unlimited permission to copy and/or distribute it,
  781 # with or without modifications, as long as this notice is preserved.
  782 
  783 # serial 4
  784 
  785 # _AM_MANGLE_OPTION(NAME)
  786 # -----------------------
  787 AC_DEFUN([_AM_MANGLE_OPTION],
  788 [[_AM_OPTION_]m4_bpatsubst($1, [[^a-zA-Z0-9_]], [_])])
  789 
  790 # _AM_SET_OPTION(NAME)
  791 # ------------------------------
  792 # Set option NAME.  Presently that only means defining a flag for this option.
  793 AC_DEFUN([_AM_SET_OPTION],
  794 [m4_define(_AM_MANGLE_OPTION([$1]), 1)])
  795 
  796 # _AM_SET_OPTIONS(OPTIONS)
  797 # ----------------------------------
  798 # OPTIONS is a space-separated list of Automake options.
  799 AC_DEFUN([_AM_SET_OPTIONS],
  800 [m4_foreach_w([_AM_Option], [$1], [_AM_SET_OPTION(_AM_Option)])])
  801 
  802 # _AM_IF_OPTION(OPTION, IF-SET, [IF-NOT-SET])
  803 # -------------------------------------------
  804 # Execute IF-SET if OPTION is set, IF-NOT-SET otherwise.
  805 AC_DEFUN([_AM_IF_OPTION],
  806 [m4_ifset(_AM_MANGLE_OPTION([$1]), [$2], [$3])])
  807 
  808 # Check to make sure that the build environment is sane.    -*- Autoconf -*-
  809 
  810 # Copyright (C) 1996, 1997, 2000, 2001, 2003, 2005, 2008
  811 # Free Software Foundation, Inc.
  812 #
  813 # This file is free software; the Free Software Foundation
  814 # gives unlimited permission to copy and/or distribute it,
  815 # with or without modifications, as long as this notice is preserved.
  816 
  817 # serial 5
  818 
  819 # AM_SANITY_CHECK
  820 # ---------------
  821 AC_DEFUN([AM_SANITY_CHECK],
  822 [AC_MSG_CHECKING([whether build environment is sane])
  823 # Just in case
  824 sleep 1
  825 echo timestamp > conftest.file
  826 # Reject unsafe characters in $srcdir or the absolute working directory
  827 # name.  Accept space and tab only in the latter.
  828 am_lf='
  829 '
  830 case `pwd` in
  831   *[[\\\"\#\$\&\'\`$am_lf]]*)
  832     AC_MSG_ERROR([unsafe absolute working directory name]);;
  833 esac
  834 case $srcdir in
  835   *[[\\\"\#\$\&\'\`$am_lf\ \	]]*)
  836     AC_MSG_ERROR([unsafe srcdir value: `$srcdir']);;
  837 esac
  838 
  839 # Do `set' in a subshell so we don't clobber the current shell's
  840 # arguments.  Must try -L first in case configure is actually a
  841 # symlink; some systems play weird games with the mod time of symlinks
  842 # (eg FreeBSD returns the mod time of the symlink's containing
  843 # directory).
  844 if (
  845    set X `ls -Lt "$srcdir/configure" conftest.file 2> /dev/null`
  846    if test "$[*]" = "X"; then
  847       # -L didn't work.
  848       set X `ls -t "$srcdir/configure" conftest.file`
  849    fi
  850    rm -f conftest.file
  851    if test "$[*]" != "X $srcdir/configure conftest.file" \
  852       && test "$[*]" != "X conftest.file $srcdir/configure"; then
  853 
  854       # If neither matched, then we have a broken ls.  This can happen
  855       # if, for instance, CONFIG_SHELL is bash and it inherits a
  856       # broken ls alias from the environment.  This has actually
  857       # happened.  Such a system could not be considered "sane".
  858       AC_MSG_ERROR([ls -t appears to fail.  Make sure there is not a broken
  859 alias in your environment])
  860    fi
  861 
  862    test "$[2]" = conftest.file
  863    )
  864 then
  865    # Ok.
  866    :
  867 else
  868    AC_MSG_ERROR([newly created file is older than distributed files!
  869 Check your system clock])
  870 fi
  871 AC_MSG_RESULT(yes)])
  872 
  873 # Copyright (C) 2001, 2003, 2005  Free Software Foundation, Inc.
  874 #
  875 # This file is free software; the Free Software Foundation
  876 # gives unlimited permission to copy and/or distribute it,
  877 # with or without modifications, as long as this notice is preserved.
  878 
  879 # AM_PROG_INSTALL_STRIP
  880 # ---------------------
  881 # One issue with vendor `install' (even GNU) is that you can't
  882 # specify the program used to strip binaries.  This is especially
  883 # annoying in cross-compiling environments, where the build's strip
  884 # is unlikely to handle the host's binaries.
  885 # Fortunately install-sh will honor a STRIPPROG variable, so we
  886 # always use install-sh in `make install-strip', and initialize
  887 # STRIPPROG with the value of the STRIP variable (set by the user).
  888 AC_DEFUN([AM_PROG_INSTALL_STRIP],
  889 [AC_REQUIRE([AM_PROG_INSTALL_SH])dnl
  890 # Installed binaries are usually stripped using `strip' when the user
  891 # run `make install-strip'.  However `strip' might not be the right
  892 # tool to use in cross-compilation environments, therefore Automake
  893 # will honor the `STRIP' environment variable to overrule this program.
  894 dnl Don't test for $cross_compiling = yes, because it might be `maybe'.
  895 if test "$cross_compiling" != no; then
  896   AC_CHECK_TOOL([STRIP], [strip], :)
  897 fi
  898 INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s"
  899 AC_SUBST([INSTALL_STRIP_PROGRAM])])
  900 
  901 # Copyright (C) 2006, 2008  Free Software Foundation, Inc.
  902 #
  903 # This file is free software; the Free Software Foundation
  904 # gives unlimited permission to copy and/or distribute it,
  905 # with or without modifications, as long as this notice is preserved.
  906 
  907 # serial 2
  908 
  909 # _AM_SUBST_NOTMAKE(VARIABLE)
  910 # ---------------------------
  911 # Prevent Automake from outputting VARIABLE = @VARIABLE@ in Makefile.in.
  912 # This macro is traced by Automake.
  913 AC_DEFUN([_AM_SUBST_NOTMAKE])
  914 
  915 # AM_SUBST_NOTMAKE(VARIABLE)
  916 # ---------------------------
  917 # Public sister of _AM_SUBST_NOTMAKE.
  918 AC_DEFUN([AM_SUBST_NOTMAKE], [_AM_SUBST_NOTMAKE($@)])
  919 
  920 # Check how to create a tarball.                            -*- Autoconf -*-
  921 
  922 # Copyright (C) 2004, 2005  Free Software Foundation, Inc.
  923 #
  924 # This file is free software; the Free Software Foundation
  925 # gives unlimited permission to copy and/or distribute it,
  926 # with or without modifications, as long as this notice is preserved.
  927 
  928 # serial 2
  929 
  930 # _AM_PROG_TAR(FORMAT)
  931 # --------------------
  932 # Check how to create a tarball in format FORMAT.
  933 # FORMAT should be one of `v7', `ustar', or `pax'.
  934 #
  935 # Substitute a variable $(am__tar) that is a command
  936 # writing to stdout a FORMAT-tarball containing the directory
  937 # $tardir.
  938 #     tardir=directory && $(am__tar) > result.tar
  939 #
  940 # Substitute a variable $(am__untar) that extract such
  941 # a tarball read from stdin.
  942 #     $(am__untar) < result.tar
  943 AC_DEFUN([_AM_PROG_TAR],
  944 [# Always define AMTAR for backward compatibility.
  945 AM_MISSING_PROG([AMTAR], [tar])
  946 m4_if([$1], [v7],
  947      [am__tar='${AMTAR} chof - "$$tardir"'; am__untar='${AMTAR} xf -'],
  948      [m4_case([$1], [ustar],, [pax],,
  949               [m4_fatal([Unknown tar format])])
  950 AC_MSG_CHECKING([how to create a $1 tar archive])
  951 # Loop over all known methods to create a tar archive until one works.
  952 _am_tools='gnutar m4_if([$1], [ustar], [plaintar]) pax cpio none'
  953 _am_tools=${am_cv_prog_tar_$1-$_am_tools}
  954 # Do not fold the above two line into one, because Tru64 sh and
  955 # Solaris sh will not grok spaces in the rhs of `-'.
  956 for _am_tool in $_am_tools
  957 do
  958   case $_am_tool in
  959   gnutar)
  960     for _am_tar in tar gnutar gtar;
  961     do
  962       AM_RUN_LOG([$_am_tar --version]) && break
  963     done
  964     am__tar="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$$tardir"'
  965     am__tar_="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$tardir"'
  966     am__untar="$_am_tar -xf -"
  967     ;;
  968   plaintar)
  969     # Must skip GNU tar: if it does not support --format= it doesn't create
  970     # ustar tarball either.
  971     (tar --version) >/dev/null 2>&1 && continue
  972     am__tar='tar chf - "$$tardir"'
  973     am__tar_='tar chf - "$tardir"'
  974     am__untar='tar xf -'
  975     ;;
  976   pax)
  977     am__tar='pax -L -x $1 -w "$$tardir"'
  978     am__tar_='pax -L -x $1 -w "$tardir"'
  979     am__untar='pax -r'
  980     ;;
  981   cpio)
  982     am__tar='find "$$tardir" -print | cpio -o -H $1 -L'
  983     am__tar_='find "$tardir" -print | cpio -o -H $1 -L'
  984     am__untar='cpio -i -H $1 -d'
  985     ;;
  986   none)
  987     am__tar=false
  988     am__tar_=false
  989     am__untar=false
  990     ;;
  991   esac
  992 
  993   # If the value was cached, stop now.  We just wanted to have am__tar
  994   # and am__untar set.
  995   test -n "${am_cv_prog_tar_$1}" && break
  996 
  997   # tar/untar a dummy directory, and stop if the command works
  998   rm -rf conftest.dir
  999   mkdir conftest.dir
 1000   echo GrepMe > conftest.dir/file
 1001   AM_RUN_LOG([tardir=conftest.dir && eval $am__tar_ >conftest.tar])
 1002   rm -rf conftest.dir
 1003   if test -s conftest.tar; then
 1004     AM_RUN_LOG([$am__untar <conftest.tar])
 1005     grep GrepMe conftest.dir/file >/dev/null 2>&1 && break
 1006   fi
 1007 done
 1008 rm -rf conftest.dir
 1009 
 1010 AC_CACHE_VAL([am_cv_prog_tar_$1], [am_cv_prog_tar_$1=$_am_tool])
 1011 AC_MSG_RESULT([$am_cv_prog_tar_$1])])
 1012 AC_SUBST([am__tar])
 1013 AC_SUBST([am__untar])
 1014 ]) # _AM_PROG_TAR
 1015 
 1016 m4_include([m4/gettext.m4])
 1017 m4_include([m4/iconv.m4])
 1018 m4_include([m4/lib-ld.m4])
 1019 m4_include([m4/lib-link.m4])
 1020 m4_include([m4/lib-prefix.m4])
 1021 m4_include([m4/nls.m4])
 1022 m4_include([m4/po.m4])
 1023 m4_include([m4/progtest.m4])