1m4trace:/usr/share/aclocal-1.10/amversion.m4:14: -1- AC_DEFUN([AM_AUTOMAKE_VERSION], [am__api_version='1.10'
2dnl Some users find AM_AUTOMAKE_VERSION and mistake it for a way to
3dnl require some minimum version.  Point them to the right macro.
4m4_if([$1], [1.10.1], [],
5      [AC_FATAL([Do not call $0, use AM_INIT_AUTOMAKE([$1]).])])dnl
6])
7m4trace:/usr/share/aclocal-1.10/amversion.m4:33: -1- AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION], [AM_AUTOMAKE_VERSION([1.10.1])dnl
8m4_ifndef([AC_AUTOCONF_VERSION],
9  [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl
10_AM_AUTOCONF_VERSION(AC_AUTOCONF_VERSION)])
11m4trace:/usr/share/aclocal-1.10/auxdir.m4:47: -1- AC_DEFUN([AM_AUX_DIR_EXPAND], [dnl Rely on autoconf to set up CDPATH properly.
12AC_PREREQ([2.50])dnl
13# expand $ac_aux_dir to an absolute path
14am_aux_dir=`cd $ac_aux_dir && pwd`
15])
16m4trace:/usr/share/aclocal-1.10/cond.m4:15: -1- AC_DEFUN([AM_CONDITIONAL], [AC_PREREQ(2.52)dnl
17 ifelse([$1], [TRUE],  [AC_FATAL([$0: invalid condition: $1])],
18	[$1], [FALSE], [AC_FATAL([$0: invalid condition: $1])])dnl
19AC_SUBST([$1_TRUE])dnl
20AC_SUBST([$1_FALSE])dnl
21_AM_SUBST_NOTMAKE([$1_TRUE])dnl
22_AM_SUBST_NOTMAKE([$1_FALSE])dnl
23if $2; then
24  $1_TRUE=
25  $1_FALSE='#'
26else
27  $1_TRUE='#'
28  $1_FALSE=
29fi
30AC_CONFIG_COMMANDS_PRE(
31[if test -z "${$1_TRUE}" && test -z "${$1_FALSE}"; then
32  AC_MSG_ERROR([[conditional "$1" was never defined.
33Usually this means the macro was only invoked conditionally.]])
34fi])])
35m4trace:/usr/share/aclocal-1.10/depend.m4:28: -1- AC_DEFUN([_AM_DEPENDENCIES], [AC_REQUIRE([AM_SET_DEPDIR])dnl
36AC_REQUIRE([AM_OUTPUT_DEPENDENCY_COMMANDS])dnl
37AC_REQUIRE([AM_MAKE_INCLUDE])dnl
38AC_REQUIRE([AM_DEP_TRACK])dnl
39
40ifelse([$1], CC,   [depcc="$CC"   am_compiler_list=],
41       [$1], CXX,  [depcc="$CXX"  am_compiler_list=],
42       [$1], OBJC, [depcc="$OBJC" am_compiler_list='gcc3 gcc'],
43       [$1], UPC,  [depcc="$UPC"  am_compiler_list=],
44       [$1], GCJ,  [depcc="$GCJ"  am_compiler_list='gcc3 gcc'],
45                   [depcc="$$1"   am_compiler_list=])
46
47AC_CACHE_CHECK([dependency style of $depcc],
48               [am_cv_$1_dependencies_compiler_type],
49[if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then
50  # We make a subdir and do the tests there.  Otherwise we can end up
51  # making bogus files that we don't know about and never remove.  For
52  # instance it was reported that on HP-UX the gcc test will end up
53  # making a dummy file named `D' -- because `-MD' means `put the output
54  # in D'.
55  mkdir conftest.dir
56  # Copy depcomp to subdir because otherwise we won't find it if we're
57  # using a relative directory.
58  cp "$am_depcomp" conftest.dir
59  cd conftest.dir
60  # We will build objects and dependencies in a subdirectory because
61  # it helps to detect inapplicable dependency modes.  For instance
62  # both Tru64's cc and ICC support -MD to output dependencies as a
63  # side effect of compilation, but ICC will put the dependencies in
64  # the current directory while Tru64 will put them in the object
65  # directory.
66  mkdir sub
67
68  am_cv_$1_dependencies_compiler_type=none
69  if test "$am_compiler_list" = ""; then
70     am_compiler_list=`sed -n ['s/^#*\([a-zA-Z0-9]*\))$/\1/p'] < ./depcomp`
71  fi
72  for depmode in $am_compiler_list; do
73    # Setup a source with many dependencies, because some compilers
74    # like to wrap large dependency lists on column 80 (with \), and
75    # we should not choose a depcomp mode which is confused by this.
76    #
77    # We need to recreate these files for each test, as the compiler may
78    # overwrite some of them when testing with obscure command lines.
79    # This happens at least with the AIX C compiler.
80    : > sub/conftest.c
81    for i in 1 2 3 4 5 6; do
82      echo '#include "conftst'$i'.h"' >> sub/conftest.c
83      # Using `: > sub/conftst$i.h' creates only sub/conftst1.h with
84      # Solaris 8's {/usr,}/bin/sh.
85      touch sub/conftst$i.h
86    done
87    echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf
88
89    case $depmode in
90    nosideeffect)
91      # after this tag, mechanisms are not by side-effect, so they'll
92      # only be used when explicitly requested
93      if test "x$enable_dependency_tracking" = xyes; then
94	continue
95      else
96	break
97      fi
98      ;;
99    none) break ;;
100    esac
101    # We check with `-c' and `-o' for the sake of the "dashmstdout"
102    # mode.  It turns out that the SunPro C++ compiler does not properly
103    # handle `-M -o', and we need to detect this.
104    if depmode=$depmode \
105       source=sub/conftest.c object=sub/conftest.${OBJEXT-o} \
106       depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \
107       $SHELL ./depcomp $depcc -c -o sub/conftest.${OBJEXT-o} sub/conftest.c \
108         >/dev/null 2>conftest.err &&
109       grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 &&
110       grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 &&
111       grep sub/conftest.${OBJEXT-o} sub/conftest.Po > /dev/null 2>&1 &&
112       ${MAKE-make} -s -f confmf > /dev/null 2>&1; then
113      # icc doesn't choke on unknown options, it will just issue warnings
114      # or remarks (even with -Werror).  So we grep stderr for any message
115      # that says an option was ignored or not supported.
116      # When given -MP, icc 7.0 and 7.1 complain thusly:
117      #   icc: Command line warning: ignoring option '-M'; no argument required
118      # The diagnosis changed in icc 8.0:
119      #   icc: Command line remark: option '-MP' not supported
120      if (grep 'ignoring option' conftest.err ||
121          grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else
122        am_cv_$1_dependencies_compiler_type=$depmode
123        break
124      fi
125    fi
126  done
127
128  cd ..
129  rm -rf conftest.dir
130else
131  am_cv_$1_dependencies_compiler_type=none
132fi
133])
134AC_SUBST([$1DEPMODE], [depmode=$am_cv_$1_dependencies_compiler_type])
135AM_CONDITIONAL([am__fastdep$1], [
136  test "x$enable_dependency_tracking" != xno \
137  && test "$am_cv_$1_dependencies_compiler_type" = gcc3])
138])
139m4trace:/usr/share/aclocal-1.10/depend.m4:139: -1- AC_DEFUN([AM_SET_DEPDIR], [AC_REQUIRE([AM_SET_LEADING_DOT])dnl
140AC_SUBST([DEPDIR], ["${am__leading_dot}deps"])dnl
141])
142m4trace:/usr/share/aclocal-1.10/depend.m4:147: -1- AC_DEFUN([AM_DEP_TRACK], [AC_ARG_ENABLE(dependency-tracking,
143[  --disable-dependency-tracking  speeds up one-time build
144  --enable-dependency-tracking   do not reject slow dependency extractors])
145if test "x$enable_dependency_tracking" != xno; then
146  am_depcomp="$ac_aux_dir/depcomp"
147  AMDEPBACKSLASH='\'
148fi
149AM_CONDITIONAL([AMDEP], [test "x$enable_dependency_tracking" != xno])
150AC_SUBST([AMDEPBACKSLASH])dnl
151_AM_SUBST_NOTMAKE([AMDEPBACKSLASH])dnl
152])
153m4trace:/usr/share/aclocal-1.10/depout.m4:14: -1- AC_DEFUN([_AM_OUTPUT_DEPENDENCY_COMMANDS], [for mf in $CONFIG_FILES; do
154  # Strip MF so we end up with the name of the file.
155  mf=`echo "$mf" | sed -e 's/:.*$//'`
156  # Check whether this is an Automake generated Makefile or not.
157  # We used to match only the files named `Makefile.in', but
158  # some people rename them; so instead we look at the file content.
159  # Grep'ing the first line is not enough: some people post-process
160  # each Makefile.in and add a new line on top of each file to say so.
161  # Grep'ing the whole file is not good either: AIX grep has a line
162  # limit of 2048, but all sed's we know have understand at least 4000.
163  if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then
164    dirpart=`AS_DIRNAME("$mf")`
165  else
166    continue
167  fi
168  # Extract the definition of DEPDIR, am__include, and am__quote
169  # from the Makefile without running `make'.
170  DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"`
171  test -z "$DEPDIR" && continue
172  am__include=`sed -n 's/^am__include = //p' < "$mf"`
173  test -z "am__include" && continue
174  am__quote=`sed -n 's/^am__quote = //p' < "$mf"`
175  # When using ansi2knr, U may be empty or an underscore; expand it
176  U=`sed -n 's/^U = //p' < "$mf"`
177  # Find all dependency output files, they are included files with
178  # $(DEPDIR) in their names.  We invoke sed twice because it is the
179  # simplest approach to changing $(DEPDIR) to its actual value in the
180  # expansion.
181  for file in `sed -n "
182    s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \
183       sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g' -e 's/\$U/'"$U"'/g'`; do
184    # Make sure the directory exists.
185    test -f "$dirpart/$file" && continue
186    fdir=`AS_DIRNAME(["$file"])`
187    AS_MKDIR_P([$dirpart/$fdir])
188    # echo "creating $dirpart/$file"
189    echo '# dummy' > "$dirpart/$file"
190  done
191done
192])
193m4trace:/usr/share/aclocal-1.10/depout.m4:64: -1- AC_DEFUN([AM_OUTPUT_DEPENDENCY_COMMANDS], [AC_CONFIG_COMMANDS([depfiles],
194     [test x"$AMDEP_TRUE" != x"" || _AM_OUTPUT_DEPENDENCY_COMMANDS],
195     [AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir"])
196])
197m4trace:/usr/share/aclocal-1.10/init.m4:26: -1- AC_DEFUN([AM_INIT_AUTOMAKE], [AC_PREREQ([2.60])dnl
198dnl Autoconf wants to disallow AM_ names.  We explicitly allow
199dnl the ones we care about.
200m4_pattern_allow([^AM_[A-Z]+FLAGS$])dnl
201AC_REQUIRE([AM_SET_CURRENT_AUTOMAKE_VERSION])dnl
202AC_REQUIRE([AC_PROG_INSTALL])dnl
203if test "`cd $srcdir && pwd`" != "`pwd`"; then
204  # Use -I$(srcdir) only when $(srcdir) != ., so that make's output
205  # is not polluted with repeated "-I."
206  AC_SUBST([am__isrc], [' -I$(srcdir)'])_AM_SUBST_NOTMAKE([am__isrc])dnl
207  # test to see if srcdir already configured
208  if test -f $srcdir/config.status; then
209    AC_MSG_ERROR([source directory already configured; run "make distclean" there first])
210  fi
211fi
212
213# test whether we have cygpath
214if test -z "$CYGPATH_W"; then
215  if (cygpath --version) >/dev/null 2>/dev/null; then
216    CYGPATH_W='cygpath -w'
217  else
218    CYGPATH_W=echo
219  fi
220fi
221AC_SUBST([CYGPATH_W])
222
223# Define the identity of the package.
224dnl Distinguish between old-style and new-style calls.
225m4_ifval([$2],
226[m4_ifval([$3], [_AM_SET_OPTION([no-define])])dnl
227 AC_SUBST([PACKAGE], [$1])dnl
228 AC_SUBST([VERSION], [$2])],
229[_AM_SET_OPTIONS([$1])dnl
230dnl Diagnose old-style AC_INIT with new-style AM_AUTOMAKE_INIT.
231m4_if(m4_ifdef([AC_PACKAGE_NAME], 1)m4_ifdef([AC_PACKAGE_VERSION], 1), 11,,
232  [m4_fatal([AC_INIT should be called with package and version arguments])])dnl
233 AC_SUBST([PACKAGE], ['AC_PACKAGE_TARNAME'])dnl
234 AC_SUBST([VERSION], ['AC_PACKAGE_VERSION'])])dnl
235
236_AM_IF_OPTION([no-define],,
237[AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE", [Name of package])
238 AC_DEFINE_UNQUOTED(VERSION, "$VERSION", [Version number of package])])dnl
239
240# Some tools Automake needs.
241AC_REQUIRE([AM_SANITY_CHECK])dnl
242AC_REQUIRE([AC_ARG_PROGRAM])dnl
243AM_MISSING_PROG(ACLOCAL, aclocal-${am__api_version})
244AM_MISSING_PROG(AUTOCONF, autoconf)
245AM_MISSING_PROG(AUTOMAKE, automake-${am__api_version})
246AM_MISSING_PROG(AUTOHEADER, autoheader)
247AM_MISSING_PROG(MAKEINFO, makeinfo)
248AM_PROG_INSTALL_SH
249AM_PROG_INSTALL_STRIP
250AC_REQUIRE([AM_PROG_MKDIR_P])dnl
251# We need awk for the "check" target.  The system "awk" is bad on
252# some platforms.
253AC_REQUIRE([AC_PROG_AWK])dnl
254AC_REQUIRE([AC_PROG_MAKE_SET])dnl
255AC_REQUIRE([AM_SET_LEADING_DOT])dnl
256_AM_IF_OPTION([tar-ustar], [_AM_PROG_TAR([ustar])],
257              [_AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])],
258	      		     [_AM_PROG_TAR([v7])])])
259_AM_IF_OPTION([no-dependencies],,
260[AC_PROVIDE_IFELSE([AC_PROG_CC],
261                  [_AM_DEPENDENCIES(CC)],
262                  [define([AC_PROG_CC],
263                          defn([AC_PROG_CC])[_AM_DEPENDENCIES(CC)])])dnl
264AC_PROVIDE_IFELSE([AC_PROG_CXX],
265                  [_AM_DEPENDENCIES(CXX)],
266                  [define([AC_PROG_CXX],
267                          defn([AC_PROG_CXX])[_AM_DEPENDENCIES(CXX)])])dnl
268AC_PROVIDE_IFELSE([AC_PROG_OBJC],
269                  [_AM_DEPENDENCIES(OBJC)],
270                  [define([AC_PROG_OBJC],
271                          defn([AC_PROG_OBJC])[_AM_DEPENDENCIES(OBJC)])])dnl
272])
273])
274m4trace:/usr/share/aclocal-1.10/init.m4:113: -1- AC_DEFUN([_AC_AM_CONFIG_HEADER_HOOK], [# Compute $1's index in $config_headers.
275_am_arg=$1
276_am_stamp_count=1
277for _am_header in $config_headers :; do
278  case $_am_header in
279    $_am_arg | $_am_arg:* )
280      break ;;
281    * )
282      _am_stamp_count=`expr $_am_stamp_count + 1` ;;
283  esac
284done
285echo "timestamp for $_am_arg" >`AS_DIRNAME(["$_am_arg"])`/stamp-h[]$_am_stamp_count])
286m4trace:/usr/share/aclocal-1.10/install-sh.m4:11: -1- AC_DEFUN([AM_PROG_INSTALL_SH], [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
287install_sh=${install_sh-"\$(SHELL) $am_aux_dir/install-sh"}
288AC_SUBST(install_sh)])
289m4trace:/usr/share/aclocal-1.10/lead-dot.m4:12: -1- AC_DEFUN([AM_SET_LEADING_DOT], [rm -rf .tst 2>/dev/null
290mkdir .tst 2>/dev/null
291if test -d .tst; then
292  am__leading_dot=.
293else
294  am__leading_dot=_
295fi
296rmdir .tst 2>/dev/null
297AC_SUBST([am__leading_dot])])
298m4trace:/usr/share/aclocal-1.10/make.m4:14: -1- AC_DEFUN([AM_MAKE_INCLUDE], [am_make=${MAKE-make}
299cat > confinc << 'END'
300am__doit:
301	@echo done
302.PHONY: am__doit
303END
304# If we don't find an include directive, just comment out the code.
305AC_MSG_CHECKING([for style of include used by $am_make])
306am__include="#"
307am__quote=
308_am_result=none
309# First try GNU make style include.
310echo "include confinc" > confmf
311# We grep out `Entering directory' and `Leaving directory'
312# messages which can occur if `w' ends up in MAKEFLAGS.
313# In particular we don't look at `^make:' because GNU make might
314# be invoked under some other name (usually "gmake"), in which
315# case it prints its new name instead of `make'.
316if test "`$am_make -s -f confmf 2> /dev/null | grep -v 'ing directory'`" = "done"; then
317   am__include=include
318   am__quote=
319   _am_result=GNU
320fi
321# Now try BSD make style include.
322if test "$am__include" = "#"; then
323   echo '.include "confinc"' > confmf
324   if test "`$am_make -s -f confmf 2> /dev/null`" = "done"; then
325      am__include=.include
326      am__quote="\""
327      _am_result=BSD
328   fi
329fi
330AC_SUBST([am__include])
331AC_SUBST([am__quote])
332AC_MSG_RESULT([$_am_result])
333rm -f confinc confmf
334])
335m4trace:/usr/share/aclocal-1.10/missing.m4:14: -1- AC_DEFUN([AM_MISSING_PROG], [AC_REQUIRE([AM_MISSING_HAS_RUN])
336$1=${$1-"${am_missing_run}$2"}
337AC_SUBST($1)])
338m4trace:/usr/share/aclocal-1.10/missing.m4:24: -1- AC_DEFUN([AM_MISSING_HAS_RUN], [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
339AC_REQUIRE_AUX_FILE([missing])dnl
340test x"${MISSING+set}" = xset || MISSING="\${SHELL} $am_aux_dir/missing"
341# Use eval to expand $SHELL
342if eval "$MISSING --run true"; then
343  am_missing_run="$MISSING --run "
344else
345  am_missing_run=
346  AC_MSG_WARN([`missing' script is too old or missing])
347fi
348])
349m4trace:/usr/share/aclocal-1.10/mkdirp.m4:11: -1- AC_DEFUN([AM_PROG_MKDIR_P], [AC_PREREQ([2.60])dnl
350AC_REQUIRE([AC_PROG_MKDIR_P])dnl
351dnl Automake 1.8 to 1.9.6 used to define mkdir_p.  We now use MKDIR_P,
352dnl while keeping a definition of mkdir_p for backward compatibility.
353dnl @MKDIR_P@ is magic: AC_OUTPUT adjusts its value for each Makefile.
354dnl However we cannot define mkdir_p as $(MKDIR_P) for the sake of
355dnl Makefile.ins that do not define MKDIR_P, so we do our own
356dnl adjustment using top_builddir (which is defined more often than
357dnl MKDIR_P).
358AC_SUBST([mkdir_p], ["$MKDIR_P"])dnl
359case $mkdir_p in
360  [[\\/$]]* | ?:[[\\/]]*) ;;
361  */*) mkdir_p="\$(top_builddir)/$mkdir_p" ;;
362esac
363])
364m4trace:/usr/share/aclocal-1.10/options.m4:13: -1- AC_DEFUN([_AM_MANGLE_OPTION], [[_AM_OPTION_]m4_bpatsubst($1, [[^a-zA-Z0-9_]], [_])])
365m4trace:/usr/share/aclocal-1.10/options.m4:19: -1- AC_DEFUN([_AM_SET_OPTION], [m4_define(_AM_MANGLE_OPTION([$1]), 1)])
366m4trace:/usr/share/aclocal-1.10/options.m4:25: -1- AC_DEFUN([_AM_SET_OPTIONS], [AC_FOREACH([_AM_Option], [$1], [_AM_SET_OPTION(_AM_Option)])])
367m4trace:/usr/share/aclocal-1.10/options.m4:31: -1- AC_DEFUN([_AM_IF_OPTION], [m4_ifset(_AM_MANGLE_OPTION([$1]), [$2], [$3])])
368m4trace:/usr/share/aclocal-1.10/runlog.m4:12: -1- AC_DEFUN([AM_RUN_LOG], [{ echo "$as_me:$LINENO: $1" >&AS_MESSAGE_LOG_FD
369   ($1) >&AS_MESSAGE_LOG_FD 2>&AS_MESSAGE_LOG_FD
370   ac_status=$?
371   echo "$as_me:$LINENO: \$? = $ac_status" >&AS_MESSAGE_LOG_FD
372   (exit $ac_status); }])
373m4trace:/usr/share/aclocal-1.10/sanity.m4:14: -1- AC_DEFUN([AM_SANITY_CHECK], [AC_MSG_CHECKING([whether build environment is sane])
374# Just in case
375sleep 1
376echo timestamp > conftest.file
377# Do `set' in a subshell so we don't clobber the current shell's
378# arguments.  Must try -L first in case configure is actually a
379# symlink; some systems play weird games with the mod time of symlinks
380# (eg FreeBSD returns the mod time of the symlink's containing
381# directory).
382if (
383   set X `ls -Lt $srcdir/configure conftest.file 2> /dev/null`
384   if test "$[*]" = "X"; then
385      # -L didn't work.
386      set X `ls -t $srcdir/configure conftest.file`
387   fi
388   rm -f conftest.file
389   if test "$[*]" != "X $srcdir/configure conftest.file" \
390      && test "$[*]" != "X conftest.file $srcdir/configure"; then
391
392      # If neither matched, then we have a broken ls.  This can happen
393      # if, for instance, CONFIG_SHELL is bash and it inherits a
394      # broken ls alias from the environment.  This has actually
395      # happened.  Such a system could not be considered "sane".
396      AC_MSG_ERROR([ls -t appears to fail.  Make sure there is not a broken
397alias in your environment])
398   fi
399
400   test "$[2]" = conftest.file
401   )
402then
403   # Ok.
404   :
405else
406   AC_MSG_ERROR([newly created file is older than distributed files!
407Check your system clock])
408fi
409AC_MSG_RESULT(yes)])
410m4trace:/usr/share/aclocal-1.10/strip.m4:17: -1- AC_DEFUN([AM_PROG_INSTALL_STRIP], [AC_REQUIRE([AM_PROG_INSTALL_SH])dnl
411# Installed binaries are usually stripped using `strip' when the user
412# run `make install-strip'.  However `strip' might not be the right
413# tool to use in cross-compilation environments, therefore Automake
414# will honor the `STRIP' environment variable to overrule this program.
415dnl Don't test for $cross_compiling = yes, because it might be `maybe'.
416if test "$cross_compiling" != no; then
417  AC_CHECK_TOOL([STRIP], [strip], :)
418fi
419INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s"
420AC_SUBST([INSTALL_STRIP_PROGRAM])])
421m4trace:/usr/share/aclocal-1.10/substnot.m4:12: -1- AC_DEFUN([_AM_SUBST_NOTMAKE])
422m4trace:/usr/share/aclocal-1.10/tar.m4:24: -1- AC_DEFUN([_AM_PROG_TAR], [# Always define AMTAR for backward compatibility.
423AM_MISSING_PROG([AMTAR], [tar])
424m4_if([$1], [v7],
425     [am__tar='${AMTAR} chof - "$$tardir"'; am__untar='${AMTAR} xf -'],
426     [m4_case([$1], [ustar],, [pax],,
427              [m4_fatal([Unknown tar format])])
428AC_MSG_CHECKING([how to create a $1 tar archive])
429# Loop over all known methods to create a tar archive until one works.
430_am_tools='gnutar m4_if([$1], [ustar], [plaintar]) pax cpio none'
431_am_tools=${am_cv_prog_tar_$1-$_am_tools}
432# Do not fold the above two line into one, because Tru64 sh and
433# Solaris sh will not grok spaces in the rhs of `-'.
434for _am_tool in $_am_tools
435do
436  case $_am_tool in
437  gnutar)
438    for _am_tar in tar gnutar gtar;
439    do
440      AM_RUN_LOG([$_am_tar --version]) && break
441    done
442    am__tar="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$$tardir"'
443    am__tar_="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$tardir"'
444    am__untar="$_am_tar -xf -"
445    ;;
446  plaintar)
447    # Must skip GNU tar: if it does not support --format= it doesn't create
448    # ustar tarball either.
449    (tar --version) >/dev/null 2>&1 && continue
450    am__tar='tar chf - "$$tardir"'
451    am__tar_='tar chf - "$tardir"'
452    am__untar='tar xf -'
453    ;;
454  pax)
455    am__tar='pax -L -x $1 -w "$$tardir"'
456    am__tar_='pax -L -x $1 -w "$tardir"'
457    am__untar='pax -r'
458    ;;
459  cpio)
460    am__tar='find "$$tardir" -print | cpio -o -H $1 -L'
461    am__tar_='find "$tardir" -print | cpio -o -H $1 -L'
462    am__untar='cpio -i -H $1 -d'
463    ;;
464  none)
465    am__tar=false
466    am__tar_=false
467    am__untar=false
468    ;;
469  esac
470
471  # If the value was cached, stop now.  We just wanted to have am__tar
472  # and am__untar set.
473  test -n "${am_cv_prog_tar_$1}" && break
474
475  # tar/untar a dummy directory, and stop if the command works
476  rm -rf conftest.dir
477  mkdir conftest.dir
478  echo GrepMe > conftest.dir/file
479  AM_RUN_LOG([tardir=conftest.dir && eval $am__tar_ >conftest.tar])
480  rm -rf conftest.dir
481  if test -s conftest.tar; then
482    AM_RUN_LOG([$am__untar <conftest.tar])
483    grep GrepMe conftest.dir/file >/dev/null 2>&1 && break
484  fi
485done
486rm -rf conftest.dir
487
488AC_CACHE_VAL([am_cv_prog_tar_$1], [am_cv_prog_tar_$1=$_am_tool])
489AC_MSG_RESULT([$am_cv_prog_tar_$1])])
490AC_SUBST([am__tar])
491AC_SUBST([am__untar])
492])
493m4trace:configure.in:4: -1- m4_pattern_forbid([^_?A[CHUM]_])
494m4trace:configure.in:4: -1- m4_pattern_forbid([_AC_])
495m4trace:configure.in:4: -1- m4_pattern_forbid([^LIBOBJS$], [do not use LIBOBJS directly, use AC_LIBOBJ (see section `AC_LIBOBJ vs LIBOBJS'])
496m4trace:configure.in:4: -1- m4_pattern_allow([^AS_FLAGS$])
497m4trace:configure.in:4: -1- m4_pattern_forbid([^_?m4_])
498m4trace:configure.in:4: -1- m4_pattern_forbid([^dnl$])
499m4trace:configure.in:4: -1- m4_pattern_forbid([^_?AS_])
500m4trace:configure.in:4: -1- m4_pattern_allow([^SHELL$])
501m4trace:configure.in:4: -1- m4_pattern_allow([^PATH_SEPARATOR$])
502m4trace:configure.in:4: -1- m4_pattern_allow([^PACKAGE_NAME$])
503m4trace:configure.in:4: -1- m4_pattern_allow([^PACKAGE_TARNAME$])
504m4trace:configure.in:4: -1- m4_pattern_allow([^PACKAGE_VERSION$])
505m4trace:configure.in:4: -1- m4_pattern_allow([^PACKAGE_STRING$])
506m4trace:configure.in:4: -1- m4_pattern_allow([^PACKAGE_BUGREPORT$])
507m4trace:configure.in:4: -1- m4_pattern_allow([^exec_prefix$])
508m4trace:configure.in:4: -1- m4_pattern_allow([^prefix$])
509m4trace:configure.in:4: -1- m4_pattern_allow([^program_transform_name$])
510m4trace:configure.in:4: -1- m4_pattern_allow([^bindir$])
511m4trace:configure.in:4: -1- m4_pattern_allow([^sbindir$])
512m4trace:configure.in:4: -1- m4_pattern_allow([^libexecdir$])
513m4trace:configure.in:4: -1- m4_pattern_allow([^datarootdir$])
514m4trace:configure.in:4: -1- m4_pattern_allow([^datadir$])
515m4trace:configure.in:4: -1- m4_pattern_allow([^sysconfdir$])
516m4trace:configure.in:4: -1- m4_pattern_allow([^sharedstatedir$])
517m4trace:configure.in:4: -1- m4_pattern_allow([^localstatedir$])
518m4trace:configure.in:4: -1- m4_pattern_allow([^includedir$])
519m4trace:configure.in:4: -1- m4_pattern_allow([^oldincludedir$])
520m4trace:configure.in:4: -1- m4_pattern_allow([^docdir$])
521m4trace:configure.in:4: -1- m4_pattern_allow([^infodir$])
522m4trace:configure.in:4: -1- m4_pattern_allow([^htmldir$])
523m4trace:configure.in:4: -1- m4_pattern_allow([^dvidir$])
524m4trace:configure.in:4: -1- m4_pattern_allow([^pdfdir$])
525m4trace:configure.in:4: -1- m4_pattern_allow([^psdir$])
526m4trace:configure.in:4: -1- m4_pattern_allow([^libdir$])
527m4trace:configure.in:4: -1- m4_pattern_allow([^localedir$])
528m4trace:configure.in:4: -1- m4_pattern_allow([^mandir$])
529m4trace:configure.in:4: -1- m4_pattern_allow([^PACKAGE_NAME$])
530m4trace:configure.in:4: -1- m4_pattern_allow([^PACKAGE_TARNAME$])
531m4trace:configure.in:4: -1- m4_pattern_allow([^PACKAGE_VERSION$])
532m4trace:configure.in:4: -1- m4_pattern_allow([^PACKAGE_STRING$])
533m4trace:configure.in:4: -1- m4_pattern_allow([^PACKAGE_BUGREPORT$])
534m4trace:configure.in:4: -1- m4_pattern_allow([^DEFS$])
535m4trace:configure.in:4: -1- m4_pattern_allow([^ECHO_C$])
536m4trace:configure.in:4: -1- m4_pattern_allow([^ECHO_N$])
537m4trace:configure.in:4: -1- m4_pattern_allow([^ECHO_T$])
538m4trace:configure.in:4: -1- m4_pattern_allow([^LIBS$])
539m4trace:configure.in:4: -1- m4_pattern_allow([^build_alias$])
540m4trace:configure.in:4: -1- m4_pattern_allow([^host_alias$])
541m4trace:configure.in:4: -1- m4_pattern_allow([^target_alias$])
542m4trace:configure.in:5: -1- AM_INIT_AUTOMAKE([vbetool], [0.3])
543m4trace:configure.in:5: -1- m4_pattern_allow([^AM_[A-Z]+FLAGS$])
544m4trace:configure.in:5: -1- AM_SET_CURRENT_AUTOMAKE_VERSION
545m4trace:configure.in:5: -1- AM_AUTOMAKE_VERSION([1.10.1])
546m4trace:configure.in:5: -1- _AM_AUTOCONF_VERSION([2.61])
547m4trace:configure.in:5: -1- m4_pattern_allow([^INSTALL_PROGRAM$])
548m4trace:configure.in:5: -1- m4_pattern_allow([^INSTALL_SCRIPT$])
549m4trace:configure.in:5: -1- m4_pattern_allow([^INSTALL_DATA$])
550m4trace:configure.in:5: -1- m4_pattern_allow([^am__isrc$])
551m4trace:configure.in:5: -1- _AM_SUBST_NOTMAKE([am__isrc])
552m4trace:configure.in:5: -1- m4_pattern_allow([^CYGPATH_W$])
553m4trace:configure.in:5: -1- m4_pattern_allow([^PACKAGE$])
554m4trace:configure.in:5: -1- m4_pattern_allow([^VERSION$])
555m4trace:configure.in:5: -1- _AM_IF_OPTION([no-define], [], [AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE", [Name of package])
556 AC_DEFINE_UNQUOTED(VERSION, "$VERSION", [Version number of package])])
557m4trace:configure.in:5: -2- _AM_MANGLE_OPTION([no-define])
558m4trace:configure.in:5: -1- m4_pattern_allow([^PACKAGE$])
559m4trace:configure.in:5: -1- m4_pattern_allow([^VERSION$])
560m4trace:configure.in:5: -1- AM_SANITY_CHECK
561m4trace:configure.in:5: -1- AM_MISSING_PROG([ACLOCAL], [aclocal-${am__api_version}])
562m4trace:configure.in:5: -1- AM_MISSING_HAS_RUN
563m4trace:configure.in:5: -1- AM_AUX_DIR_EXPAND
564m4trace:configure.in:5: -1- m4_pattern_allow([^ACLOCAL$])
565m4trace:configure.in:5: -1- AM_MISSING_PROG([AUTOCONF], [autoconf])
566m4trace:configure.in:5: -1- m4_pattern_allow([^AUTOCONF$])
567m4trace:configure.in:5: -1- AM_MISSING_PROG([AUTOMAKE], [automake-${am__api_version}])
568m4trace:configure.in:5: -1- m4_pattern_allow([^AUTOMAKE$])
569m4trace:configure.in:5: -1- AM_MISSING_PROG([AUTOHEADER], [autoheader])
570m4trace:configure.in:5: -1- m4_pattern_allow([^AUTOHEADER$])
571m4trace:configure.in:5: -1- AM_MISSING_PROG([MAKEINFO], [makeinfo])
572m4trace:configure.in:5: -1- m4_pattern_allow([^MAKEINFO$])
573m4trace:configure.in:5: -1- AM_PROG_INSTALL_SH
574m4trace:configure.in:5: -1- m4_pattern_allow([^install_sh$])
575m4trace:configure.in:5: -1- AM_PROG_INSTALL_STRIP
576m4trace:configure.in:5: -1- m4_pattern_allow([^STRIP$])
577m4trace:configure.in:5: -1- m4_pattern_allow([^INSTALL_STRIP_PROGRAM$])
578m4trace:configure.in:5: -1- AM_PROG_MKDIR_P
579m4trace:configure.in:5: -1- m4_pattern_allow([^mkdir_p$])
580m4trace:configure.in:5: -1- m4_pattern_allow([^AWK$])
581m4trace:configure.in:5: -1- m4_pattern_allow([^SET_MAKE$])
582m4trace:configure.in:5: -1- AM_SET_LEADING_DOT
583m4trace:configure.in:5: -1- m4_pattern_allow([^am__leading_dot$])
584m4trace:configure.in:5: -1- _AM_IF_OPTION([tar-ustar], [_AM_PROG_TAR([ustar])], [_AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])],
585	      		     [_AM_PROG_TAR([v7])])])
586m4trace:configure.in:5: -2- _AM_MANGLE_OPTION([tar-ustar])
587m4trace:configure.in:5: -1- _AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])], [_AM_PROG_TAR([v7])])
588m4trace:configure.in:5: -2- _AM_MANGLE_OPTION([tar-pax])
589m4trace:configure.in:5: -1- _AM_PROG_TAR([v7])
590m4trace:configure.in:5: -1- AM_MISSING_PROG([AMTAR], [tar])
591m4trace:configure.in:5: -1- m4_pattern_allow([^AMTAR$])
592m4trace:configure.in:5: -1- m4_pattern_allow([^am__tar$])
593m4trace:configure.in:5: -1- m4_pattern_allow([^am__untar$])
594m4trace:configure.in:5: -1- _AM_IF_OPTION([no-dependencies], [], [AC_PROVIDE_IFELSE([AC_PROG_CC],
595                  [_AM_DEPENDENCIES(CC)],
596                  [define([AC_PROG_CC],
597                          defn([AC_PROG_CC])[_AM_DEPENDENCIES(CC)])])dnl
598AC_PROVIDE_IFELSE([AC_PROG_CXX],
599                  [_AM_DEPENDENCIES(CXX)],
600                  [define([AC_PROG_CXX],
601                          defn([AC_PROG_CXX])[_AM_DEPENDENCIES(CXX)])])dnl
602AC_PROVIDE_IFELSE([AC_PROG_OBJC],
603                  [_AM_DEPENDENCIES(OBJC)],
604                  [define([AC_PROG_OBJC],
605                          defn([AC_PROG_OBJC])[_AM_DEPENDENCIES(OBJC)])])dnl
606])
607m4trace:configure.in:5: -2- _AM_MANGLE_OPTION([no-dependencies])
608m4trace:configure.in:9: -1- m4_pattern_allow([^CC$])
609m4trace:configure.in:9: -1- m4_pattern_allow([^CFLAGS$])
610m4trace:configure.in:9: -1- m4_pattern_allow([^LDFLAGS$])
611m4trace:configure.in:9: -1- m4_pattern_allow([^LIBS$])
612m4trace:configure.in:9: -1- m4_pattern_allow([^CPPFLAGS$])
613m4trace:configure.in:9: -1- m4_pattern_allow([^CC$])
614m4trace:configure.in:9: -1- m4_pattern_allow([^CC$])
615m4trace:configure.in:9: -1- m4_pattern_allow([^CC$])
616m4trace:configure.in:9: -1- m4_pattern_allow([^CC$])
617m4trace:configure.in:9: -1- m4_pattern_allow([^ac_ct_CC$])
618m4trace:configure.in:9: -1- m4_pattern_allow([^EXEEXT$])
619m4trace:configure.in:9: -1- m4_pattern_allow([^OBJEXT$])
620m4trace:configure.in:9: -1- _AM_DEPENDENCIES([CC])
621m4trace:configure.in:9: -1- AM_SET_DEPDIR
622m4trace:configure.in:9: -1- m4_pattern_allow([^DEPDIR$])
623m4trace:configure.in:9: -1- AM_OUTPUT_DEPENDENCY_COMMANDS
624m4trace:configure.in:9: -1- AM_MAKE_INCLUDE
625m4trace:configure.in:9: -1- m4_pattern_allow([^am__include$])
626m4trace:configure.in:9: -1- m4_pattern_allow([^am__quote$])
627m4trace:configure.in:9: -1- AM_DEP_TRACK
628m4trace:configure.in:9: -1- AM_CONDITIONAL([AMDEP], [test "x$enable_dependency_tracking" != xno])
629m4trace:configure.in:9: -1- m4_pattern_allow([^AMDEP_TRUE$])
630m4trace:configure.in:9: -1- m4_pattern_allow([^AMDEP_FALSE$])
631m4trace:configure.in:9: -1- _AM_SUBST_NOTMAKE([AMDEP_TRUE])
632m4trace:configure.in:9: -1- _AM_SUBST_NOTMAKE([AMDEP_FALSE])
633m4trace:configure.in:9: -1- m4_pattern_allow([^AMDEPBACKSLASH$])
634m4trace:configure.in:9: -1- _AM_SUBST_NOTMAKE([AMDEPBACKSLASH])
635m4trace:configure.in:9: -1- m4_pattern_allow([^CCDEPMODE$])
636m4trace:configure.in:9: -1- AM_CONDITIONAL([am__fastdepCC], [
637  test "x$enable_dependency_tracking" != xno \
638  && test "$am_cv_CC_dependencies_compiler_type" = gcc3])
639m4trace:configure.in:9: -1- m4_pattern_allow([^am__fastdepCC_TRUE$])
640m4trace:configure.in:9: -1- m4_pattern_allow([^am__fastdepCC_FALSE$])
641m4trace:configure.in:9: -1- _AM_SUBST_NOTMAKE([am__fastdepCC_TRUE])
642m4trace:configure.in:9: -1- _AM_SUBST_NOTMAKE([am__fastdepCC_FALSE])
643m4trace:configure.in:13: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
644You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
645configure.in:13: the top level])
646m4trace:configure.in:15: -1- AM_CONDITIONAL([WITH_X86EMU], [test x$USEX86EMU = xtrue])
647m4trace:configure.in:15: -1- m4_pattern_allow([^WITH_X86EMU_TRUE$])
648m4trace:configure.in:15: -1- m4_pattern_allow([^WITH_X86EMU_FALSE$])
649m4trace:configure.in:15: -1- _AM_SUBST_NOTMAKE([WITH_X86EMU_TRUE])
650m4trace:configure.in:15: -1- _AM_SUBST_NOTMAKE([WITH_X86EMU_FALSE])
651m4trace:configure.in:17: -1- _m4_warn([obsolete], [AC_OUTPUT should be used without arguments.
652You should run autoupdate.], [])
653m4trace:configure.in:17: -1- m4_pattern_allow([^LIB@&t@OBJS$])
654m4trace:configure.in:17: -1- m4_pattern_allow([^LTLIBOBJS$])
655m4trace:configure.in:17: -1- _AM_OUTPUT_DEPENDENCY_COMMANDS
656