Upgrade Boehm GC to 7.2alpha4.
[cacao.git] / src / mm / boehm-gc / libatomic_ops / 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 # Check to see how 'make' treats includes.                  -*- Autoconf -*-
578
579 # Copyright (C) 2001, 2002, 2003, 2005  Free Software Foundation, Inc.
580 #
581 # This file is free software; the Free Software Foundation
582 # gives unlimited permission to copy and/or distribute it,
583 # with or without modifications, as long as this notice is preserved.
584
585 # serial 3
586
587 # AM_MAKE_INCLUDE()
588 # -----------------
589 # Check to see how make treats includes.
590 AC_DEFUN([AM_MAKE_INCLUDE],
591 [am_make=${MAKE-make}
592 cat > confinc << 'END'
593 am__doit:
594         @echo done
595 .PHONY: am__doit
596 END
597 # If we don't find an include directive, just comment out the code.
598 AC_MSG_CHECKING([for style of include used by $am_make])
599 am__include="#"
600 am__quote=
601 _am_result=none
602 # First try GNU make style include.
603 echo "include confinc" > confmf
604 # We grep out `Entering directory' and `Leaving directory'
605 # messages which can occur if `w' ends up in MAKEFLAGS.
606 # In particular we don't look at `^make:' because GNU make might
607 # be invoked under some other name (usually "gmake"), in which
608 # case it prints its new name instead of `make'.
609 if test "`$am_make -s -f confmf 2> /dev/null | grep -v 'ing directory'`" = "done"; then
610    am__include=include
611    am__quote=
612    _am_result=GNU
613 fi
614 # Now try BSD make style include.
615 if test "$am__include" = "#"; then
616    echo '.include "confinc"' > confmf
617    if test "`$am_make -s -f confmf 2> /dev/null`" = "done"; then
618       am__include=.include
619       am__quote="\""
620       _am_result=BSD
621    fi
622 fi
623 AC_SUBST([am__include])
624 AC_SUBST([am__quote])
625 AC_MSG_RESULT([$_am_result])
626 rm -f confinc confmf
627 ])
628
629 # Copyright (C) 1999, 2000, 2001, 2003, 2004, 2005, 2008
630 # Free Software Foundation, Inc.
631 #
632 # This file is free software; the Free Software Foundation
633 # gives unlimited permission to copy and/or distribute it,
634 # with or without modifications, as long as this notice is preserved.
635
636 # serial 6
637
638 # AM_PROG_CC_C_O
639 # --------------
640 # Like AC_PROG_CC_C_O, but changed for automake.
641 AC_DEFUN([AM_PROG_CC_C_O],
642 [AC_REQUIRE([AC_PROG_CC_C_O])dnl
643 AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
644 AC_REQUIRE_AUX_FILE([compile])dnl
645 # FIXME: we rely on the cache variable name because
646 # there is no other way.
647 set dummy $CC
648 am_cc=`echo $[2] | sed ['s/[^a-zA-Z0-9_]/_/g;s/^[0-9]/_/']`
649 eval am_t=\$ac_cv_prog_cc_${am_cc}_c_o
650 if test "$am_t" != yes; then
651    # Losing compiler, so override with the script.
652    # FIXME: It is wrong to rewrite CC.
653    # But if we don't then we get into trouble of one sort or another.
654    # A longer-term fix would be to have automake use am__CC in this case,
655    # and then we could set am__CC="\$(top_srcdir)/compile \$(CC)"
656    CC="$am_aux_dir/compile $CC"
657 fi
658 dnl Make sure AC_PROG_CC is never called again, or it will override our
659 dnl setting of CC.
660 m4_define([AC_PROG_CC],
661           [m4_fatal([AC_PROG_CC cannot be called after AM_PROG_CC_C_O])])
662 ])
663
664 # Fake the existence of programs that GNU maintainers use.  -*- Autoconf -*-
665
666 # Copyright (C) 1997, 1999, 2000, 2001, 2003, 2004, 2005
667 # Free Software Foundation, Inc.
668 #
669 # This file is free software; the Free Software Foundation
670 # gives unlimited permission to copy and/or distribute it,
671 # with or without modifications, as long as this notice is preserved.
672
673 # serial 5
674
675 # AM_MISSING_PROG(NAME, PROGRAM)
676 # ------------------------------
677 AC_DEFUN([AM_MISSING_PROG],
678 [AC_REQUIRE([AM_MISSING_HAS_RUN])
679 $1=${$1-"${am_missing_run}$2"}
680 AC_SUBST($1)])
681
682
683 # AM_MISSING_HAS_RUN
684 # ------------------
685 # Define MISSING if not defined so far and test if it supports --run.
686 # If it does, set am_missing_run to use it, otherwise, to nothing.
687 AC_DEFUN([AM_MISSING_HAS_RUN],
688 [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
689 AC_REQUIRE_AUX_FILE([missing])dnl
690 test x"${MISSING+set}" = xset || MISSING="\${SHELL} $am_aux_dir/missing"
691 # Use eval to expand $SHELL
692 if eval "$MISSING --run true"; then
693   am_missing_run="$MISSING --run "
694 else
695   am_missing_run=
696   AC_MSG_WARN([`missing' script is too old or missing])
697 fi
698 ])
699
700 # Copyright (C) 2003, 2004, 2005, 2006  Free Software Foundation, Inc.
701 #
702 # This file is free software; the Free Software Foundation
703 # gives unlimited permission to copy and/or distribute it,
704 # with or without modifications, as long as this notice is preserved.
705
706 # AM_PROG_MKDIR_P
707 # ---------------
708 # Check for `mkdir -p'.
709 AC_DEFUN([AM_PROG_MKDIR_P],
710 [AC_PREREQ([2.60])dnl
711 AC_REQUIRE([AC_PROG_MKDIR_P])dnl
712 dnl Automake 1.8 to 1.9.6 used to define mkdir_p.  We now use MKDIR_P,
713 dnl while keeping a definition of mkdir_p for backward compatibility.
714 dnl @MKDIR_P@ is magic: AC_OUTPUT adjusts its value for each Makefile.
715 dnl However we cannot define mkdir_p as $(MKDIR_P) for the sake of
716 dnl Makefile.ins that do not define MKDIR_P, so we do our own
717 dnl adjustment using top_builddir (which is defined more often than
718 dnl MKDIR_P).
719 AC_SUBST([mkdir_p], ["$MKDIR_P"])dnl
720 case $mkdir_p in
721   [[\\/$]]* | ?:[[\\/]]*) ;;
722   */*) mkdir_p="\$(top_builddir)/$mkdir_p" ;;
723 esac
724 ])
725
726 # Helper functions for option handling.                     -*- Autoconf -*-
727
728 # Copyright (C) 2001, 2002, 2003, 2005, 2008  Free Software Foundation, Inc.
729 #
730 # This file is free software; the Free Software Foundation
731 # gives unlimited permission to copy and/or distribute it,
732 # with or without modifications, as long as this notice is preserved.
733
734 # serial 4
735
736 # _AM_MANGLE_OPTION(NAME)
737 # -----------------------
738 AC_DEFUN([_AM_MANGLE_OPTION],
739 [[_AM_OPTION_]m4_bpatsubst($1, [[^a-zA-Z0-9_]], [_])])
740
741 # _AM_SET_OPTION(NAME)
742 # ------------------------------
743 # Set option NAME.  Presently that only means defining a flag for this option.
744 AC_DEFUN([_AM_SET_OPTION],
745 [m4_define(_AM_MANGLE_OPTION([$1]), 1)])
746
747 # _AM_SET_OPTIONS(OPTIONS)
748 # ----------------------------------
749 # OPTIONS is a space-separated list of Automake options.
750 AC_DEFUN([_AM_SET_OPTIONS],
751 [m4_foreach_w([_AM_Option], [$1], [_AM_SET_OPTION(_AM_Option)])])
752
753 # _AM_IF_OPTION(OPTION, IF-SET, [IF-NOT-SET])
754 # -------------------------------------------
755 # Execute IF-SET if OPTION is set, IF-NOT-SET otherwise.
756 AC_DEFUN([_AM_IF_OPTION],
757 [m4_ifset(_AM_MANGLE_OPTION([$1]), [$2], [$3])])
758
759 # Check to make sure that the build environment is sane.    -*- Autoconf -*-
760
761 # Copyright (C) 1996, 1997, 2000, 2001, 2003, 2005
762 # Free Software Foundation, Inc.
763 #
764 # This file is free software; the Free Software Foundation
765 # gives unlimited permission to copy and/or distribute it,
766 # with or without modifications, as long as this notice is preserved.
767
768 # serial 4
769
770 # AM_SANITY_CHECK
771 # ---------------
772 AC_DEFUN([AM_SANITY_CHECK],
773 [AC_MSG_CHECKING([whether build environment is sane])
774 # Just in case
775 sleep 1
776 echo timestamp > conftest.file
777 # Do `set' in a subshell so we don't clobber the current shell's
778 # arguments.  Must try -L first in case configure is actually a
779 # symlink; some systems play weird games with the mod time of symlinks
780 # (eg FreeBSD returns the mod time of the symlink's containing
781 # directory).
782 if (
783    set X `ls -Lt $srcdir/configure conftest.file 2> /dev/null`
784    if test "$[*]" = "X"; then
785       # -L didn't work.
786       set X `ls -t $srcdir/configure conftest.file`
787    fi
788    rm -f conftest.file
789    if test "$[*]" != "X $srcdir/configure conftest.file" \
790       && test "$[*]" != "X conftest.file $srcdir/configure"; then
791
792       # If neither matched, then we have a broken ls.  This can happen
793       # if, for instance, CONFIG_SHELL is bash and it inherits a
794       # broken ls alias from the environment.  This has actually
795       # happened.  Such a system could not be considered "sane".
796       AC_MSG_ERROR([ls -t appears to fail.  Make sure there is not a broken
797 alias in your environment])
798    fi
799
800    test "$[2]" = conftest.file
801    )
802 then
803    # Ok.
804    :
805 else
806    AC_MSG_ERROR([newly created file is older than distributed files!
807 Check your system clock])
808 fi
809 AC_MSG_RESULT(yes)])
810
811 # Copyright (C) 2001, 2003, 2005  Free Software Foundation, Inc.
812 #
813 # This file is free software; the Free Software Foundation
814 # gives unlimited permission to copy and/or distribute it,
815 # with or without modifications, as long as this notice is preserved.
816
817 # AM_PROG_INSTALL_STRIP
818 # ---------------------
819 # One issue with vendor `install' (even GNU) is that you can't
820 # specify the program used to strip binaries.  This is especially
821 # annoying in cross-compiling environments, where the build's strip
822 # is unlikely to handle the host's binaries.
823 # Fortunately install-sh will honor a STRIPPROG variable, so we
824 # always use install-sh in `make install-strip', and initialize
825 # STRIPPROG with the value of the STRIP variable (set by the user).
826 AC_DEFUN([AM_PROG_INSTALL_STRIP],
827 [AC_REQUIRE([AM_PROG_INSTALL_SH])dnl
828 # Installed binaries are usually stripped using `strip' when the user
829 # run `make install-strip'.  However `strip' might not be the right
830 # tool to use in cross-compilation environments, therefore Automake
831 # will honor the `STRIP' environment variable to overrule this program.
832 dnl Don't test for $cross_compiling = yes, because it might be `maybe'.
833 if test "$cross_compiling" != no; then
834   AC_CHECK_TOOL([STRIP], [strip], :)
835 fi
836 INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s"
837 AC_SUBST([INSTALL_STRIP_PROGRAM])])
838
839 # Copyright (C) 2006  Free Software Foundation, Inc.
840 #
841 # This file is free software; the Free Software Foundation
842 # gives unlimited permission to copy and/or distribute it,
843 # with or without modifications, as long as this notice is preserved.
844
845 # _AM_SUBST_NOTMAKE(VARIABLE)
846 # ---------------------------
847 # Prevent Automake from outputting VARIABLE = @VARIABLE@ in Makefile.in.
848 # This macro is traced by Automake.
849 AC_DEFUN([_AM_SUBST_NOTMAKE])
850
851 # Check how to create a tarball.                            -*- Autoconf -*-
852
853 # Copyright (C) 2004, 2005  Free Software Foundation, Inc.
854 #
855 # This file is free software; the Free Software Foundation
856 # gives unlimited permission to copy and/or distribute it,
857 # with or without modifications, as long as this notice is preserved.
858
859 # serial 2
860
861 # _AM_PROG_TAR(FORMAT)
862 # --------------------
863 # Check how to create a tarball in format FORMAT.
864 # FORMAT should be one of `v7', `ustar', or `pax'.
865 #
866 # Substitute a variable $(am__tar) that is a command
867 # writing to stdout a FORMAT-tarball containing the directory
868 # $tardir.
869 #     tardir=directory && $(am__tar) > result.tar
870 #
871 # Substitute a variable $(am__untar) that extract such
872 # a tarball read from stdin.
873 #     $(am__untar) < result.tar
874 AC_DEFUN([_AM_PROG_TAR],
875 [# Always define AMTAR for backward compatibility.
876 AM_MISSING_PROG([AMTAR], [tar])
877 m4_if([$1], [v7],
878      [am__tar='${AMTAR} chof - "$$tardir"'; am__untar='${AMTAR} xf -'],
879      [m4_case([$1], [ustar],, [pax],,
880               [m4_fatal([Unknown tar format])])
881 AC_MSG_CHECKING([how to create a $1 tar archive])
882 # Loop over all known methods to create a tar archive until one works.
883 _am_tools='gnutar m4_if([$1], [ustar], [plaintar]) pax cpio none'
884 _am_tools=${am_cv_prog_tar_$1-$_am_tools}
885 # Do not fold the above two line into one, because Tru64 sh and
886 # Solaris sh will not grok spaces in the rhs of `-'.
887 for _am_tool in $_am_tools
888 do
889   case $_am_tool in
890   gnutar)
891     for _am_tar in tar gnutar gtar;
892     do
893       AM_RUN_LOG([$_am_tar --version]) && break
894     done
895     am__tar="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$$tardir"'
896     am__tar_="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$tardir"'
897     am__untar="$_am_tar -xf -"
898     ;;
899   plaintar)
900     # Must skip GNU tar: if it does not support --format= it doesn't create
901     # ustar tarball either.
902     (tar --version) >/dev/null 2>&1 && continue
903     am__tar='tar chf - "$$tardir"'
904     am__tar_='tar chf - "$tardir"'
905     am__untar='tar xf -'
906     ;;
907   pax)
908     am__tar='pax -L -x $1 -w "$$tardir"'
909     am__tar_='pax -L -x $1 -w "$tardir"'
910     am__untar='pax -r'
911     ;;
912   cpio)
913     am__tar='find "$$tardir" -print | cpio -o -H $1 -L'
914     am__tar_='find "$tardir" -print | cpio -o -H $1 -L'
915     am__untar='cpio -i -H $1 -d'
916     ;;
917   none)
918     am__tar=false
919     am__tar_=false
920     am__untar=false
921     ;;
922   esac
923
924   # If the value was cached, stop now.  We just wanted to have am__tar
925   # and am__untar set.
926   test -n "${am_cv_prog_tar_$1}" && break
927
928   # tar/untar a dummy directory, and stop if the command works
929   rm -rf conftest.dir
930   mkdir conftest.dir
931   echo GrepMe > conftest.dir/file
932   AM_RUN_LOG([tardir=conftest.dir && eval $am__tar_ >conftest.tar])
933   rm -rf conftest.dir
934   if test -s conftest.tar; then
935     AM_RUN_LOG([$am__untar <conftest.tar])
936     grep GrepMe conftest.dir/file >/dev/null 2>&1 && break
937   fi
938 done
939 rm -rf conftest.dir
940
941 AC_CACHE_VAL([am_cv_prog_tar_$1], [am_cv_prog_tar_$1=$_am_tool])
942 AC_MSG_RESULT([$am_cv_prog_tar_$1])])
943 AC_SUBST([am__tar])
944 AC_SUBST([am__untar])
945 ]) # _AM_PROG_TAR
946