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