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