1m4trace:/usr/share/aclocal-1.9/amversion.m4:13: -1- AC_DEFUN([AM_AUTOMAKE_VERSION], [am__api_version="1.9"])
2m4trace:/usr/share/aclocal-1.9/amversion.m4:20: -1- AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION], [AM_AUTOMAKE_VERSION([1.9.6])])
3m4trace:/usr/share/aclocal-1.9/auxdir.m4:52: -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:32: -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:131: -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:141: -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:156: -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:53: -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:67: -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/init.m4:92: -1- AC_DEFUN([AM_INIT_AUTOMAKE], [AC_PREREQ([2.58])dnl
184dnl Autoconf wants to disallow AM_ names.  We explicitly allow
185dnl the ones we care about.
186m4_pattern_allow([^AM_[A-Z]+FLAGS$])dnl
187AC_REQUIRE([AM_SET_CURRENT_AUTOMAKE_VERSION])dnl
188AC_REQUIRE([AC_PROG_INSTALL])dnl
189# test to see if srcdir already configured
190if test "`cd $srcdir && pwd`" != "`pwd`" &&
191   test -f $srcdir/config.status; then
192  AC_MSG_ERROR([source directory already configured; run "make distclean" there first])
193fi
194
195# test whether we have cygpath
196if test -z "$CYGPATH_W"; then
197  if (cygpath --version) >/dev/null 2>/dev/null; then
198    CYGPATH_W='cygpath -w'
199  else
200    CYGPATH_W=echo
201  fi
202fi
203AC_SUBST([CYGPATH_W])
204
205# Define the identity of the package.
206dnl Distinguish between old-style and new-style calls.
207m4_ifval([$2],
208[m4_ifval([$3], [_AM_SET_OPTION([no-define])])dnl
209 AC_SUBST([PACKAGE], [$1])dnl
210 AC_SUBST([VERSION], [$2])],
211[_AM_SET_OPTIONS([$1])dnl
212 AC_SUBST([PACKAGE], ['AC_PACKAGE_TARNAME'])dnl
213 AC_SUBST([VERSION], ['AC_PACKAGE_VERSION'])])dnl
214
215_AM_IF_OPTION([no-define],,
216[AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE", [Name of package])
217 AC_DEFINE_UNQUOTED(VERSION, "$VERSION", [Version number of package])])dnl
218
219# Some tools Automake needs.
220AC_REQUIRE([AM_SANITY_CHECK])dnl
221AC_REQUIRE([AC_ARG_PROGRAM])dnl
222AM_MISSING_PROG(ACLOCAL, aclocal-${am__api_version})
223AM_MISSING_PROG(AUTOCONF, autoconf)
224AM_MISSING_PROG(AUTOMAKE, automake-${am__api_version})
225AM_MISSING_PROG(AUTOHEADER, autoheader)
226AM_MISSING_PROG(MAKEINFO, makeinfo)
227AM_PROG_INSTALL_SH
228AM_PROG_INSTALL_STRIP
229AC_REQUIRE([AM_PROG_MKDIR_P])dnl
230# We need awk for the "check" target.  The system "awk" is bad on
231# some platforms.
232AC_REQUIRE([AC_PROG_AWK])dnl
233AC_REQUIRE([AC_PROG_MAKE_SET])dnl
234AC_REQUIRE([AM_SET_LEADING_DOT])dnl
235_AM_IF_OPTION([tar-ustar], [_AM_PROG_TAR([ustar])],
236              [_AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])],
237	      		     [_AM_PROG_TAR([v7])])])
238_AM_IF_OPTION([no-dependencies],,
239[AC_PROVIDE_IFELSE([AC_PROG_CC],
240                  [_AM_DEPENDENCIES(CC)],
241                  [define([AC_PROG_CC],
242                          defn([AC_PROG_CC])[_AM_DEPENDENCIES(CC)])])dnl
243AC_PROVIDE_IFELSE([AC_PROG_CXX],
244                  [_AM_DEPENDENCIES(CXX)],
245                  [define([AC_PROG_CXX],
246                          defn([AC_PROG_CXX])[_AM_DEPENDENCIES(CXX)])])dnl
247])
248])
249m4trace:/usr/share/aclocal-1.9/init.m4:113: -1- AC_DEFUN([_AC_AM_CONFIG_HEADER_HOOK], [# Compute $1's index in $config_headers.
250_am_stamp_count=1
251for _am_header in $config_headers :; do
252  case $_am_header in
253    $1 | $1:* )
254      break ;;
255    * )
256      _am_stamp_count=`expr $_am_stamp_count + 1` ;;
257  esac
258done
259echo "timestamp for $1" >`AS_DIRNAME([$1])`/stamp-h[]$_am_stamp_count])
260m4trace:/usr/share/aclocal-1.9/install-sh.m4:14: -1- AC_DEFUN([AM_PROG_INSTALL_SH], [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
261install_sh=${install_sh-"$am_aux_dir/install-sh"}
262AC_SUBST(install_sh)])
263m4trace:/usr/share/aclocal-1.9/lead-dot.m4:21: -1- AC_DEFUN([AM_SET_LEADING_DOT], [rm -rf .tst 2>/dev/null
264mkdir .tst 2>/dev/null
265if test -d .tst; then
266  am__leading_dot=.
267else
268  am__leading_dot=_
269fi
270rmdir .tst 2>/dev/null
271AC_SUBST([am__leading_dot])])
272m4trace:/usr/share/aclocal-1.9/make.m4:51: -1- AC_DEFUN([AM_MAKE_INCLUDE], [am_make=${MAKE-make}
273cat > confinc << 'END'
274am__doit:
275	@echo done
276.PHONY: am__doit
277END
278# If we don't find an include directive, just comment out the code.
279AC_MSG_CHECKING([for style of include used by $am_make])
280am__include="#"
281am__quote=
282_am_result=none
283# First try GNU make style include.
284echo "include confinc" > confmf
285# We grep out `Entering directory' and `Leaving directory'
286# messages which can occur if `w' ends up in MAKEFLAGS.
287# In particular we don't look at `^make:' because GNU make might
288# be invoked under some other name (usually "gmake"), in which
289# case it prints its new name instead of `make'.
290if test "`$am_make -s -f confmf 2> /dev/null | grep -v 'ing directory'`" = "done"; then
291   am__include=include
292   am__quote=
293   _am_result=GNU
294fi
295# Now try BSD make style include.
296if test "$am__include" = "#"; then
297   echo '.include "confinc"' > confmf
298   if test "`$am_make -s -f confmf 2> /dev/null`" = "done"; then
299      am__include=.include
300      am__quote="\""
301      _am_result=BSD
302   fi
303fi
304AC_SUBST([am__include])
305AC_SUBST([am__quote])
306AC_MSG_RESULT([$_am_result])
307rm -f confinc confmf
308])
309m4trace:/usr/share/aclocal-1.9/missing.m4:17: -1- AC_DEFUN([AM_MISSING_PROG], [AC_REQUIRE([AM_MISSING_HAS_RUN])
310$1=${$1-"${am_missing_run}$2"}
311AC_SUBST($1)])
312m4trace:/usr/share/aclocal-1.9/missing.m4:34: -1- AC_DEFUN([AM_MISSING_HAS_RUN], [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
313test x"${MISSING+set}" = xset || MISSING="\${SHELL} $am_aux_dir/missing"
314# Use eval to expand $SHELL
315if eval "$MISSING --run true"; then
316  am_missing_run="$MISSING --run "
317else
318  am_missing_run=
319  AC_MSG_WARN([`missing' script is too old or missing])
320fi
321])
322m4trace:/usr/share/aclocal-1.9/mkdirp.m4:63: -1- AC_DEFUN([AM_PROG_MKDIR_P], [if mkdir -p --version . >/dev/null 2>&1 && test ! -d ./--version; then
323  # We used to keeping the `.' as first argument, in order to
324  # allow $(mkdir_p) to be used without argument.  As in
325  #   $(mkdir_p) $(somedir)
326  # where $(somedir) is conditionally defined.  However this is wrong
327  # for two reasons:
328  #  1. if the package is installed by a user who cannot write `.'
329  #     make install will fail,
330  #  2. the above comment should most certainly read
331  #     $(mkdir_p) $(DESTDIR)$(somedir)
332  #     so it does not work when $(somedir) is undefined and
333  #     $(DESTDIR) is not.
334  #  To support the latter case, we have to write
335  #     test -z "$(somedir)" || $(mkdir_p) $(DESTDIR)$(somedir),
336  #  so the `.' trick is pointless.
337  mkdir_p='mkdir -p --'
338else
339  # On NextStep and OpenStep, the `mkdir' command does not
340  # recognize any option.  It will interpret all options as
341  # directories to create, and then abort because `.' already
342  # exists.
343  for d in ./-p ./--version;
344  do
345    test -d $d && rmdir $d
346  done
347  # $(mkinstalldirs) is defined by Automake if mkinstalldirs exists.
348  if test -f "$ac_aux_dir/mkinstalldirs"; then
349    mkdir_p='$(mkinstalldirs)'
350  else
351    mkdir_p='$(install_sh) -d'
352  fi
353fi
354AC_SUBST([mkdir_p])])
355m4trace:/usr/share/aclocal-1.9/options.m4:14: -1- AC_DEFUN([_AM_MANGLE_OPTION], [[_AM_OPTION_]m4_bpatsubst($1, [[^a-zA-Z0-9_]], [_])])
356m4trace:/usr/share/aclocal-1.9/options.m4:20: -1- AC_DEFUN([_AM_SET_OPTION], [m4_define(_AM_MANGLE_OPTION([$1]), 1)])
357m4trace:/usr/share/aclocal-1.9/options.m4:26: -1- AC_DEFUN([_AM_SET_OPTIONS], [AC_FOREACH([_AM_Option], [$1], [_AM_SET_OPTION(_AM_Option)])])
358m4trace:/usr/share/aclocal-1.9/options.m4:32: -1- AC_DEFUN([_AM_IF_OPTION], [m4_ifset(_AM_MANGLE_OPTION([$1]), [$2], [$3])])
359m4trace:/usr/share/aclocal-1.9/python.m4:149: -1- AC_DEFUN([AM_PATH_PYTHON], [
360  dnl Find a Python interpreter.  Python versions prior to 1.5 are not
361  dnl supported because the default installation locations changed from
362  dnl $prefix/lib/site-python in 1.4 to $prefix/lib/python1.5/site-packages
363  dnl in 1.5.
364  m4_define_default([_AM_PYTHON_INTERPRETER_LIST],
365                    [python python2 python2.5 python2.4 python2.3 python2.2 dnl
366python2.1 python2.0 python1.6 python1.5])
367
368  m4_if([$1],[],[
369    dnl No version check is needed.
370    # Find any Python interpreter.
371    if test -z "$PYTHON"; then
372      AC_PATH_PROGS([PYTHON], _AM_PYTHON_INTERPRETER_LIST, :)
373    fi
374    am_display_PYTHON=python
375  ], [
376    dnl A version check is needed.
377    if test -n "$PYTHON"; then
378      # If the user set $PYTHON, use it and don't search something else.
379      AC_MSG_CHECKING([whether $PYTHON version >= $1])
380      AM_PYTHON_CHECK_VERSION([$PYTHON], [$1],
381			      [AC_MSG_RESULT(yes)],
382			      [AC_MSG_ERROR(too old)])
383      am_display_PYTHON=$PYTHON
384    else
385      # Otherwise, try each interpreter until we find one that satisfies
386      # VERSION.
387      AC_CACHE_CHECK([for a Python interpreter with version >= $1],
388	[am_cv_pathless_PYTHON],[
389	for am_cv_pathless_PYTHON in _AM_PYTHON_INTERPRETER_LIST none; do
390	  test "$am_cv_pathless_PYTHON" = none && break
391	  AM_PYTHON_CHECK_VERSION([$am_cv_pathless_PYTHON], [$1], [break])
392	done])
393      # Set $PYTHON to the absolute path of $am_cv_pathless_PYTHON.
394      if test "$am_cv_pathless_PYTHON" = none; then
395	PYTHON=:
396      else
397        AC_PATH_PROG([PYTHON], [$am_cv_pathless_PYTHON])
398      fi
399      am_display_PYTHON=$am_cv_pathless_PYTHON
400    fi
401  ])
402
403  if test "$PYTHON" = :; then
404  dnl Run any user-specified action, or abort.
405    m4_default([$3], [AC_MSG_ERROR([no suitable Python interpreter found])])
406  else
407
408  dnl Query Python for its version number.  Getting [:3] seems to be
409  dnl the best way to do this; it's what "site.py" does in the standard
410  dnl library.
411
412  AC_CACHE_CHECK([for $am_display_PYTHON version], [am_cv_python_version],
413    [am_cv_python_version=`$PYTHON -c "import sys; print sys.version[[:3]]"`])
414  AC_SUBST([PYTHON_VERSION], [$am_cv_python_version])
415
416  dnl Use the values of $prefix and $exec_prefix for the corresponding
417  dnl values of PYTHON_PREFIX and PYTHON_EXEC_PREFIX.  These are made
418  dnl distinct variables so they can be overridden if need be.  However,
419  dnl general consensus is that you shouldn't need this ability.
420
421  AC_SUBST([PYTHON_PREFIX], ['${prefix}'])
422  AC_SUBST([PYTHON_EXEC_PREFIX], ['${exec_prefix}'])
423
424  dnl At times (like when building shared libraries) you may want
425  dnl to know which OS platform Python thinks this is.
426
427  AC_CACHE_CHECK([for $am_display_PYTHON platform], [am_cv_python_platform],
428    [am_cv_python_platform=`$PYTHON -c "import sys; print sys.platform"`])
429  AC_SUBST([PYTHON_PLATFORM], [$am_cv_python_platform])
430
431
432  dnl Set up 4 directories:
433
434  dnl pythondir -- where to install python scripts.  This is the
435  dnl   site-packages directory, not the python standard library
436  dnl   directory like in previous automake betas.  This behavior
437  dnl   is more consistent with lispdir.m4 for example.
438  dnl Query distutils for this directory.  distutils does not exist in
439  dnl Python 1.5, so we fall back to the hardcoded directory if it
440  dnl doesn't work.
441  AC_CACHE_CHECK([for $am_display_PYTHON script directory],
442    [am_cv_python_pythondir],
443    [am_cv_python_pythondir=`$PYTHON -c "from distutils import sysconfig; print sysconfig.get_python_lib(0,0,prefix='$PYTHON_PREFIX')" 2>/dev/null ||
444     echo "$PYTHON_PREFIX/lib/python$PYTHON_VERSION/site-packages"`])
445  AC_SUBST([pythondir], [$am_cv_python_pythondir])
446
447  dnl pkgpythondir -- $PACKAGE directory under pythondir.  Was
448  dnl   PYTHON_SITE_PACKAGE in previous betas, but this naming is
449  dnl   more consistent with the rest of automake.
450
451  AC_SUBST([pkgpythondir], [\${pythondir}/$PACKAGE])
452
453  dnl pyexecdir -- directory for installing python extension modules
454  dnl   (shared libraries)
455  dnl Query distutils for this directory.  distutils does not exist in
456  dnl Python 1.5, so we fall back to the hardcoded directory if it
457  dnl doesn't work.
458  AC_CACHE_CHECK([for $am_display_PYTHON extension module directory],
459    [am_cv_python_pyexecdir],
460    [am_cv_python_pyexecdir=`$PYTHON -c "from distutils import sysconfig; print sysconfig.get_python_lib(1,0,prefix='$PYTHON_EXEC_PREFIX')" 2>/dev/null ||
461     echo "${PYTHON_EXEC_PREFIX}/lib/python${PYTHON_VERSION}/site-packages"`])
462  AC_SUBST([pyexecdir], [$am_cv_python_pyexecdir])
463
464  dnl pkgpyexecdir -- $(pyexecdir)/$(PACKAGE)
465
466  AC_SUBST([pkgpyexecdir], [\${pyexecdir}/$PACKAGE])
467
468  dnl Run any user-specified action.
469  $2
470  fi
471
472])
473m4trace:/usr/share/aclocal-1.9/python.m4:168: -1- AC_DEFUN([AM_PYTHON_CHECK_VERSION], [prog="import sys, string
474# split strings by '.' and convert to numeric.  Append some zeros
475# because we need at least 4 digits for the hex conversion.
476minver = map(int, string.split('$2', '.')) + [[0, 0, 0]]
477minverhex = 0
478for i in xrange(0, 4): minverhex = (minverhex << 8) + minver[[i]]
479sys.exit(sys.hexversion < minverhex)"
480  AS_IF([AM_RUN_LOG([$1 -c "$prog"])], [$3], [$4])])
481m4trace:/usr/share/aclocal-1.9/runlog.m4:17: -1- AC_DEFUN([AM_RUN_LOG], [{ echo "$as_me:$LINENO: $1" >&AS_MESSAGE_LOG_FD
482   ($1) >&AS_MESSAGE_LOG_FD 2>&AS_MESSAGE_LOG_FD
483   ac_status=$?
484   echo "$as_me:$LINENO: \$? = $ac_status" >&AS_MESSAGE_LOG_FD
485   (exit $ac_status); }])
486m4trace:/usr/share/aclocal-1.9/sanity.m4:51: -1- AC_DEFUN([AM_SANITY_CHECK], [AC_MSG_CHECKING([whether build environment is sane])
487# Just in case
488sleep 1
489echo timestamp > conftest.file
490# Do `set' in a subshell so we don't clobber the current shell's
491# arguments.  Must try -L first in case configure is actually a
492# symlink; some systems play weird games with the mod time of symlinks
493# (eg FreeBSD returns the mod time of the symlink's containing
494# directory).
495if (
496   set X `ls -Lt $srcdir/configure conftest.file 2> /dev/null`
497   if test "$[*]" = "X"; then
498      # -L didn't work.
499      set X `ls -t $srcdir/configure conftest.file`
500   fi
501   rm -f conftest.file
502   if test "$[*]" != "X $srcdir/configure conftest.file" \
503      && test "$[*]" != "X conftest.file $srcdir/configure"; then
504
505      # If neither matched, then we have a broken ls.  This can happen
506      # if, for instance, CONFIG_SHELL is bash and it inherits a
507      # broken ls alias from the environment.  This has actually
508      # happened.  Such a system could not be considered "sane".
509      AC_MSG_ERROR([ls -t appears to fail.  Make sure there is not a broken
510alias in your environment])
511   fi
512
513   test "$[2]" = conftest.file
514   )
515then
516   # Ok.
517   :
518else
519   AC_MSG_ERROR([newly created file is older than distributed files!
520Check your system clock])
521fi
522AC_MSG_RESULT(yes)])
523m4trace:/usr/share/aclocal-1.9/strip.m4:28: -1- AC_DEFUN([AM_PROG_INSTALL_STRIP], [AC_REQUIRE([AM_PROG_INSTALL_SH])dnl
524# Installed binaries are usually stripped using `strip' when the user
525# run `make install-strip'.  However `strip' might not be the right
526# tool to use in cross-compilation environments, therefore Automake
527# will honor the `STRIP' environment variable to overrule this program.
528dnl Don't test for $cross_compiling = yes, because it might be `maybe'.
529if test "$cross_compiling" != no; then
530  AC_CHECK_TOOL([STRIP], [strip], :)
531fi
532INSTALL_STRIP_PROGRAM="\${SHELL} \$(install_sh) -c -s"
533AC_SUBST([INSTALL_STRIP_PROGRAM])])
534m4trace:/usr/share/aclocal-1.9/tar.m4:95: -1- AC_DEFUN([_AM_PROG_TAR], [# Always define AMTAR for backward compatibility.
535AM_MISSING_PROG([AMTAR], [tar])
536m4_if([$1], [v7],
537     [am__tar='${AMTAR} chof - "$$tardir"'; am__untar='${AMTAR} xf -'],
538     [m4_case([$1], [ustar],, [pax],,
539              [m4_fatal([Unknown tar format])])
540AC_MSG_CHECKING([how to create a $1 tar archive])
541# Loop over all known methods to create a tar archive until one works.
542_am_tools='gnutar m4_if([$1], [ustar], [plaintar]) pax cpio none'
543_am_tools=${am_cv_prog_tar_$1-$_am_tools}
544# Do not fold the above two line into one, because Tru64 sh and
545# Solaris sh will not grok spaces in the rhs of `-'.
546for _am_tool in $_am_tools
547do
548  case $_am_tool in
549  gnutar)
550    for _am_tar in tar gnutar gtar;
551    do
552      AM_RUN_LOG([$_am_tar --version]) && break
553    done
554    am__tar="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$$tardir"'
555    am__tar_="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$tardir"'
556    am__untar="$_am_tar -xf -"
557    ;;
558  plaintar)
559    # Must skip GNU tar: if it does not support --format= it doesn't create
560    # ustar tarball either.
561    (tar --version) >/dev/null 2>&1 && continue
562    am__tar='tar chf - "$$tardir"'
563    am__tar_='tar chf - "$tardir"'
564    am__untar='tar xf -'
565    ;;
566  pax)
567    am__tar='pax -L -x $1 -w "$$tardir"'
568    am__tar_='pax -L -x $1 -w "$tardir"'
569    am__untar='pax -r'
570    ;;
571  cpio)
572    am__tar='find "$$tardir" -print | cpio -o -H $1 -L'
573    am__tar_='find "$tardir" -print | cpio -o -H $1 -L'
574    am__untar='cpio -i -H $1 -d'
575    ;;
576  none)
577    am__tar=false
578    am__tar_=false
579    am__untar=false
580    ;;
581  esac
582
583  # If the value was cached, stop now.  We just wanted to have am__tar
584  # and am__untar set.
585  test -n "${am_cv_prog_tar_$1}" && break
586
587  # tar/untar a dummy directory, and stop if the command works
588  rm -rf conftest.dir
589  mkdir conftest.dir
590  echo GrepMe > conftest.dir/file
591  AM_RUN_LOG([tardir=conftest.dir && eval $am__tar_ >conftest.tar])
592  rm -rf conftest.dir
593  if test -s conftest.tar; then
594    AM_RUN_LOG([$am__untar <conftest.tar])
595    grep GrepMe conftest.dir/file >/dev/null 2>&1 && break
596  fi
597done
598rm -rf conftest.dir
599
600AC_CACHE_VAL([am_cv_prog_tar_$1], [am_cv_prog_tar_$1=$_am_tool])
601AC_MSG_RESULT([$am_cv_prog_tar_$1])])
602AC_SUBST([am__tar])
603AC_SUBST([am__untar])
604])
605m4trace:configure.in:1: -1- AC_INIT([gettext-lint], [0.4.0], [morais@kde.org])
606m4trace:configure.in:1: -1- m4_pattern_forbid([^_?A[CHUM]_])
607m4trace:configure.in:1: -1- m4_pattern_forbid([_AC_])
608m4trace:configure.in:1: -1- m4_pattern_forbid([^LIBOBJS$], [do not use LIBOBJS directly, use AC_LIBOBJ (see section `AC_LIBOBJ vs LIBOBJS'])
609m4trace:configure.in:1: -1- m4_pattern_allow([^AS_FLAGS$])
610m4trace:configure.in:1: -1- m4_pattern_forbid([^_?m4_])
611m4trace:configure.in:1: -1- m4_pattern_forbid([^dnl$])
612m4trace:configure.in:1: -1- m4_pattern_forbid([^_?AS_])
613m4trace:configure.in:1: -1- AC_SUBST([SHELL], [${CONFIG_SHELL-/bin/sh}])
614m4trace:configure.in:1: -1- AC_SUBST([PATH_SEPARATOR])
615m4trace:configure.in:1: -1- AC_SUBST([PACKAGE_NAME], [m4_ifdef([AC_PACKAGE_NAME],      ['AC_PACKAGE_NAME'])])
616m4trace:configure.in:1: -1- AC_SUBST([PACKAGE_TARNAME], [m4_ifdef([AC_PACKAGE_TARNAME],   ['AC_PACKAGE_TARNAME'])])
617m4trace:configure.in:1: -1- AC_SUBST([PACKAGE_VERSION], [m4_ifdef([AC_PACKAGE_VERSION],   ['AC_PACKAGE_VERSION'])])
618m4trace:configure.in:1: -1- AC_SUBST([PACKAGE_STRING], [m4_ifdef([AC_PACKAGE_STRING],    ['AC_PACKAGE_STRING'])])
619m4trace:configure.in:1: -1- AC_SUBST([PACKAGE_BUGREPORT], [m4_ifdef([AC_PACKAGE_BUGREPORT], ['AC_PACKAGE_BUGREPORT'])])
620m4trace:configure.in:1: -1- AC_SUBST([exec_prefix], [NONE])
621m4trace:configure.in:1: -1- AC_SUBST([prefix], [NONE])
622m4trace:configure.in:1: -1- AC_SUBST([program_transform_name], [s,x,x,])
623m4trace:configure.in:1: -1- AC_SUBST([bindir], ['${exec_prefix}/bin'])
624m4trace:configure.in:1: -1- AC_SUBST([sbindir], ['${exec_prefix}/sbin'])
625m4trace:configure.in:1: -1- AC_SUBST([libexecdir], ['${exec_prefix}/libexec'])
626m4trace:configure.in:1: -1- AC_SUBST([datadir], ['${prefix}/share'])
627m4trace:configure.in:1: -1- AC_SUBST([sysconfdir], ['${prefix}/etc'])
628m4trace:configure.in:1: -1- AC_SUBST([sharedstatedir], ['${prefix}/com'])
629m4trace:configure.in:1: -1- AC_SUBST([localstatedir], ['${prefix}/var'])
630m4trace:configure.in:1: -1- AC_SUBST([libdir], ['${exec_prefix}/lib'])
631m4trace:configure.in:1: -1- AC_SUBST([includedir], ['${prefix}/include'])
632m4trace:configure.in:1: -1- AC_SUBST([oldincludedir], ['/usr/include'])
633m4trace:configure.in:1: -1- AC_SUBST([infodir], ['${prefix}/info'])
634m4trace:configure.in:1: -1- AC_SUBST([mandir], ['${prefix}/man'])
635m4trace:configure.in:1: -1- AC_DEFINE_TRACE_LITERAL([PACKAGE_NAME])
636m4trace:configure.in:1: -1- AH_OUTPUT([PACKAGE_NAME], [/* Define to the full name of this package. */
637#undef PACKAGE_NAME])
638m4trace:configure.in:1: -1- AC_DEFINE_TRACE_LITERAL([PACKAGE_TARNAME])
639m4trace:configure.in:1: -1- AH_OUTPUT([PACKAGE_TARNAME], [/* Define to the one symbol short name of this package. */
640#undef PACKAGE_TARNAME])
641m4trace:configure.in:1: -1- AC_DEFINE_TRACE_LITERAL([PACKAGE_VERSION])
642m4trace:configure.in:1: -1- AH_OUTPUT([PACKAGE_VERSION], [/* Define to the version of this package. */
643#undef PACKAGE_VERSION])
644m4trace:configure.in:1: -1- AC_DEFINE_TRACE_LITERAL([PACKAGE_STRING])
645m4trace:configure.in:1: -1- AH_OUTPUT([PACKAGE_STRING], [/* Define to the full name and version of this package. */
646#undef PACKAGE_STRING])
647m4trace:configure.in:1: -1- AC_DEFINE_TRACE_LITERAL([PACKAGE_BUGREPORT])
648m4trace:configure.in:1: -1- AH_OUTPUT([PACKAGE_BUGREPORT], [/* Define to the address where bug reports for this package should be sent. */
649#undef PACKAGE_BUGREPORT])
650m4trace:configure.in:1: -1- AC_SUBST([build_alias])
651m4trace:configure.in:1: -1- AC_SUBST([host_alias])
652m4trace:configure.in:1: -1- AC_SUBST([target_alias])
653m4trace:configure.in:1: -1- AC_SUBST([DEFS])
654m4trace:configure.in:1: -1- AC_SUBST([ECHO_C])
655m4trace:configure.in:1: -1- AC_SUBST([ECHO_N])
656m4trace:configure.in:1: -1- AC_SUBST([ECHO_T])
657m4trace:configure.in:1: -1- AC_SUBST([LIBS])
658m4trace:configure.in:2: -1- AM_INIT_AUTOMAKE
659m4trace:configure.in:2: -1- m4_pattern_allow([^AM_[A-Z]+FLAGS$])
660m4trace:configure.in:2: -1- AM_SET_CURRENT_AUTOMAKE_VERSION
661m4trace:configure.in:2: -1- AM_AUTOMAKE_VERSION([1.9.6])
662m4trace:configure.in:2: -1- AC_PROG_INSTALL
663m4trace:configure.in:2: -1- AC_SUBST([INSTALL_PROGRAM])
664m4trace:configure.in:2: -1- AC_SUBST([INSTALL_SCRIPT])
665m4trace:configure.in:2: -1- AC_SUBST([INSTALL_DATA])
666m4trace:configure.in:2: -1- AC_SUBST([CYGPATH_W])
667m4trace:configure.in:2: -1- _AM_SET_OPTIONS([])
668m4trace:configure.in:2: -1- AC_SUBST([PACKAGE], ['AC_PACKAGE_TARNAME'])
669m4trace:configure.in:2: -1- AC_SUBST([VERSION], ['AC_PACKAGE_VERSION'])
670m4trace:configure.in:2: -1- _AM_IF_OPTION([no-define], [], [AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE", [Name of package])
671 AC_DEFINE_UNQUOTED(VERSION, "$VERSION", [Version number of package])])
672m4trace:configure.in:2: -2- _AM_MANGLE_OPTION([no-define])
673m4trace:configure.in:2: -1- AC_DEFINE_TRACE_LITERAL([PACKAGE])
674m4trace:configure.in:2: -1- AH_OUTPUT([PACKAGE], [/* Name of package */
675#undef PACKAGE])
676m4trace:configure.in:2: -1- AC_DEFINE_TRACE_LITERAL([VERSION])
677m4trace:configure.in:2: -1- AH_OUTPUT([VERSION], [/* Version number of package */
678#undef VERSION])
679m4trace:configure.in:2: -1- AM_SANITY_CHECK
680m4trace:configure.in:2: -1- AM_MISSING_PROG([ACLOCAL], [aclocal-${am__api_version}])
681m4trace:configure.in:2: -1- AM_MISSING_HAS_RUN
682m4trace:configure.in:2: -1- AM_AUX_DIR_EXPAND
683m4trace:configure.in:2: -1- AC_SUBST([ACLOCAL])
684m4trace:configure.in:2: -1- AM_MISSING_PROG([AUTOCONF], [autoconf])
685m4trace:configure.in:2: -1- AC_SUBST([AUTOCONF])
686m4trace:configure.in:2: -1- AM_MISSING_PROG([AUTOMAKE], [automake-${am__api_version}])
687m4trace:configure.in:2: -1- AC_SUBST([AUTOMAKE])
688m4trace:configure.in:2: -1- AM_MISSING_PROG([AUTOHEADER], [autoheader])
689m4trace:configure.in:2: -1- AC_SUBST([AUTOHEADER])
690m4trace:configure.in:2: -1- AM_MISSING_PROG([MAKEINFO], [makeinfo])
691m4trace:configure.in:2: -1- AC_SUBST([MAKEINFO])
692m4trace:configure.in:2: -1- AM_PROG_INSTALL_SH
693m4trace:configure.in:2: -1- AC_SUBST([install_sh])
694m4trace:configure.in:2: -1- AM_PROG_INSTALL_STRIP
695m4trace:configure.in:2: -1- AC_SUBST([STRIP])
696m4trace:configure.in:2: -1- AC_SUBST([ac_ct_STRIP])
697m4trace:configure.in:2: -1- AC_SUBST([INSTALL_STRIP_PROGRAM])
698m4trace:configure.in:2: -1- AM_PROG_MKDIR_P
699m4trace:configure.in:2: -1- AC_SUBST([mkdir_p])
700m4trace:configure.in:2: -1- AC_PROG_AWK
701m4trace:configure.in:2: -1- AC_SUBST([AWK])
702m4trace:configure.in:2: -1- AC_PROG_MAKE_SET
703m4trace:configure.in:2: -1- AC_SUBST([SET_MAKE])
704m4trace:configure.in:2: -1- AM_SET_LEADING_DOT
705m4trace:configure.in:2: -1- AC_SUBST([am__leading_dot])
706m4trace:configure.in:2: -1- _AM_IF_OPTION([tar-ustar], [_AM_PROG_TAR([ustar])], [_AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])],
707	      		     [_AM_PROG_TAR([v7])])])
708m4trace:configure.in:2: -2- _AM_MANGLE_OPTION([tar-ustar])
709m4trace:configure.in:2: -1- _AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])], [_AM_PROG_TAR([v7])])
710m4trace:configure.in:2: -2- _AM_MANGLE_OPTION([tar-pax])
711m4trace:configure.in:2: -1- _AM_PROG_TAR([v7])
712m4trace:configure.in:2: -1- AM_MISSING_PROG([AMTAR], [tar])
713m4trace:configure.in:2: -1- AC_SUBST([AMTAR])
714m4trace:configure.in:2: -1- AC_SUBST([am__tar])
715m4trace:configure.in:2: -1- AC_SUBST([am__untar])
716m4trace:configure.in:2: -1- _AM_IF_OPTION([no-dependencies], [], [AC_PROVIDE_IFELSE([AC_PROG_CC],
717                  [_AM_DEPENDENCIES(CC)],
718                  [define([AC_PROG_CC],
719                          defn([AC_PROG_CC])[_AM_DEPENDENCIES(CC)])])dnl
720AC_PROVIDE_IFELSE([AC_PROG_CXX],
721                  [_AM_DEPENDENCIES(CXX)],
722                  [define([AC_PROG_CXX],
723                          defn([AC_PROG_CXX])[_AM_DEPENDENCIES(CXX)])])dnl
724])
725m4trace:configure.in:2: -2- _AM_MANGLE_OPTION([no-dependencies])
726m4trace:configure.in:3: -1- AM_PATH_PYTHON([2.0])
727m4trace:configure.in:3: -1- AM_PYTHON_CHECK_VERSION([$PYTHON], [2.0], [AC_MSG_RESULT(yes)], [AC_MSG_ERROR(too old)])
728m4trace:configure.in:3: -1- AM_RUN_LOG([$PYTHON -c "$prog"])
729m4trace:configure.in:3: -1- AM_PYTHON_CHECK_VERSION([$am_cv_pathless_PYTHON], [2.0], [break])
730m4trace:configure.in:3: -1- AM_RUN_LOG([$am_cv_pathless_PYTHON -c "$prog"])
731m4trace:configure.in:3: -1- AC_SUBST([PYTHON], [$ac_cv_path_PYTHON])
732m4trace:configure.in:3: -1- AC_SUBST([PYTHON_VERSION], [$am_cv_python_version])
733m4trace:configure.in:3: -1- AC_SUBST([PYTHON_PREFIX], ['${prefix}'])
734m4trace:configure.in:3: -1- AC_SUBST([PYTHON_EXEC_PREFIX], ['${exec_prefix}'])
735m4trace:configure.in:3: -1- AC_SUBST([PYTHON_PLATFORM], [$am_cv_python_platform])
736m4trace:configure.in:3: -1- AC_SUBST([pythondir], [$am_cv_python_pythondir])
737m4trace:configure.in:3: -1- AC_SUBST([pkgpythondir], [\${pythondir}/$PACKAGE])
738m4trace:configure.in:3: -1- AC_SUBST([pyexecdir], [$am_cv_python_pyexecdir])
739m4trace:configure.in:3: -1- AC_SUBST([pkgpyexecdir], [\${pyexecdir}/$PACKAGE])
740m4trace:configure.in:19: -1- AC_CONFIG_FILES([
741Makefile
742gettext-lint.spec
743etc/Makefile
744doc/Makefile
745src/Makefile
746src/POFileChecker
747src/POFileConsistency
748src/POFileEquiv
749src/POFileFill
750src/POFileSpell
751src/POFileStatus
752src/POFileClean
753src/POFileGlossary
754])
755m4trace:configure.in:19: -1- _m4_warn([obsolete], [AC_OUTPUT should be used without arguments.
756You should run autoupdate.], [])
757m4trace:configure.in:19: -1- AC_SUBST([LIB@&t@OBJS], [$ac_libobjs])
758m4trace:configure.in:19: -1- AC_SUBST([LTLIBOBJS], [$ac_ltlibobjs])
759