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