Fix missing ).
[mingw-w64/xnox.git] / aclocal.m4
blobd390dacccea593bbaaec4933e123b8b69c7b3d3d
1 # generated automatically by aclocal 1.11.1 -*- Autoconf -*-
3 # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
4 # 2005, 2006, 2007, 2008, 2009  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.
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.
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.65],,
17 [m4_warning([this file was generated for autoconf 2.65.
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'.])])
22 # Copyright (C) 2002, 2003, 2005, 2006, 2007, 2008  Free Software Foundation, Inc.
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.
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.11'
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.11.1], [],
38       [AC_FATAL([Do not call $0, use AM_INIT_AUTOMAKE([$1]).])])dnl
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], [])
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.11.1])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]))])
58 # AM_AUX_DIR_EXPAND                                         -*- Autoconf -*-
60 # Copyright (C) 2001, 2003, 2005  Free Software Foundation, Inc.
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.
66 # For projects using AC_CONFIG_AUX_DIR([foo]), Autoconf sets
67 # $ac_aux_dir to `$srcdir/foo'.  In other projects, it is set to
68 # `$srcdir', `$srcdir/..', or `$srcdir/../..'.
70 # Of course, Automake must honor this variable whenever it calls a
71 # tool from the auxiliary directory.  The problem is that $srcdir (and
72 # therefore $ac_aux_dir as well) can be either absolute or relative,
73 # depending on how configure is run.  This is pretty annoying, since
74 # it makes $ac_aux_dir quite unusable in subdirectories: in the top
75 # source directory, any form will work fine, but in subdirectories a
76 # relative path needs to be adjusted first.
78 # $ac_aux_dir/missing
79 #    fails when called from a subdirectory if $ac_aux_dir is relative
80 # $top_srcdir/$ac_aux_dir/missing
81 #    fails if $ac_aux_dir is absolute,
82 #    fails when called from a subdirectory in a VPATH build with
83 #          a relative $ac_aux_dir
85 # The reason of the latter failure is that $top_srcdir and $ac_aux_dir
86 # are both prefixed by $srcdir.  In an in-source build this is usually
87 # harmless because $srcdir is `.', but things will broke when you
88 # start a VPATH build or use an absolute $srcdir.
90 # So we could use something similar to $top_srcdir/$ac_aux_dir/missing,
91 # iff we strip the leading $srcdir from $ac_aux_dir.  That would be:
92 #   am_aux_dir='\$(top_srcdir)/'`expr "$ac_aux_dir" : "$srcdir//*\(.*\)"`
93 # and then we would define $MISSING as
94 #   MISSING="\${SHELL} $am_aux_dir/missing"
95 # This will work as long as MISSING is not called from configure, because
96 # unfortunately $(top_srcdir) has no meaning in configure.
97 # However there are other variables, like CC, which are often used in
98 # configure, and could therefore not use this "fixed" $ac_aux_dir.
100 # Another solution, used here, is to always expand $ac_aux_dir to an
101 # absolute PATH.  The drawback is that using absolute paths prevent a
102 # configured tree to be moved without reconfiguration.
104 AC_DEFUN([AM_AUX_DIR_EXPAND],
105 [dnl Rely on autoconf to set up CDPATH properly.
106 AC_PREREQ([2.50])dnl
107 # expand $ac_aux_dir to an absolute path
108 am_aux_dir=`cd $ac_aux_dir && pwd`
111 # AM_COND_IF                                            -*- Autoconf -*-
113 # Copyright (C) 2008 Free Software Foundation, Inc.
115 # This file is free software; the Free Software Foundation
116 # gives unlimited permission to copy and/or distribute it,
117 # with or without modifications, as long as this notice is preserved.
119 # serial 1
121 # _AM_COND_IF
122 # _AM_COND_ELSE
123 # _AM_COND_ENDIF
124 # --------------
125 # These macros are only used for tracing.
126 m4_define([_AM_COND_IF])
127 m4_define([_AM_COND_ELSE])
128 m4_define([_AM_COND_ENDIF])
131 # AM_COND_IF(COND, [IF-TRUE], [IF-FALSE])
132 # ---------------------------------------
133 # If the shell condition matching COND is true, execute IF-TRUE,
134 # otherwise execute IF-FALSE.  Allow automake to learn about conditional
135 # instantiating macros (the AC_CONFIG_FOOS).
136 AC_DEFUN([AM_COND_IF],
137 [m4_ifndef([_AM_COND_VALUE_$1],
138            [m4_fatal([$0: no such condition "$1"])])dnl
139 _AM_COND_IF([$1])dnl
140 if _AM_COND_VALUE_$1; then
141   m4_default([$2], [:])
142 m4_ifval([$3],
143 [_AM_COND_ELSE([$1])dnl
144 else
145   $3
146 ])dnl
147 _AM_COND_ENDIF([$1])dnl
148 fi[]dnl
151 # AM_CONDITIONAL                                            -*- Autoconf -*-
153 # Copyright (C) 1997, 2000, 2001, 2003, 2004, 2005, 2006, 2008
154 # Free Software Foundation, Inc.
156 # This file is free software; the Free Software Foundation
157 # gives unlimited permission to copy and/or distribute it,
158 # with or without modifications, as long as this notice is preserved.
160 # serial 9
162 # AM_CONDITIONAL(NAME, SHELL-CONDITION)
163 # -------------------------------------
164 # Define a conditional.
165 AC_DEFUN([AM_CONDITIONAL],
166 [AC_PREREQ(2.52)dnl
167  ifelse([$1], [TRUE],  [AC_FATAL([$0: invalid condition: $1])],
168         [$1], [FALSE], [AC_FATAL([$0: invalid condition: $1])])dnl
169 AC_SUBST([$1_TRUE])dnl
170 AC_SUBST([$1_FALSE])dnl
171 _AM_SUBST_NOTMAKE([$1_TRUE])dnl
172 _AM_SUBST_NOTMAKE([$1_FALSE])dnl
173 m4_define([_AM_COND_VALUE_$1], [$2])dnl
174 if $2; then
175   $1_TRUE=
176   $1_FALSE='#'
177 else
178   $1_TRUE='#'
179   $1_FALSE=
181 AC_CONFIG_COMMANDS_PRE(
182 [if test -z "${$1_TRUE}" && test -z "${$1_FALSE}"; then
183   AC_MSG_ERROR([[conditional "$1" was never defined.
184 Usually this means the macro was only invoked conditionally.]])
185 fi])])
187 # Do all the work for Automake.                             -*- Autoconf -*-
189 # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
190 # 2005, 2006, 2008, 2009 Free Software Foundation, Inc.
192 # This file is free software; the Free Software Foundation
193 # gives unlimited permission to copy and/or distribute it,
194 # with or without modifications, as long as this notice is preserved.
196 # serial 16
198 # This macro actually does too much.  Some checks are only needed if
199 # your package does certain things.  But this isn't really a big deal.
201 # AM_INIT_AUTOMAKE(PACKAGE, VERSION, [NO-DEFINE])
202 # AM_INIT_AUTOMAKE([OPTIONS])
203 # -----------------------------------------------
204 # The call with PACKAGE and VERSION arguments is the old style
205 # call (pre autoconf-2.50), which is being phased out.  PACKAGE
206 # and VERSION should now be passed to AC_INIT and removed from
207 # the call to AM_INIT_AUTOMAKE.
208 # We support both call styles for the transition.  After
209 # the next Automake release, Autoconf can make the AC_INIT
210 # arguments mandatory, and then we can depend on a new Autoconf
211 # release and drop the old call support.
212 AC_DEFUN([AM_INIT_AUTOMAKE],
213 [AC_PREREQ([2.62])dnl
214 dnl Autoconf wants to disallow AM_ names.  We explicitly allow
215 dnl the ones we care about.
216 m4_pattern_allow([^AM_[A-Z]+FLAGS$])dnl
217 AC_REQUIRE([AM_SET_CURRENT_AUTOMAKE_VERSION])dnl
218 AC_REQUIRE([AC_PROG_INSTALL])dnl
219 if test "`cd $srcdir && pwd`" != "`pwd`"; then
220   # Use -I$(srcdir) only when $(srcdir) != ., so that make's output
221   # is not polluted with repeated "-I."
222   AC_SUBST([am__isrc], [' -I$(srcdir)'])_AM_SUBST_NOTMAKE([am__isrc])dnl
223   # test to see if srcdir already configured
224   if test -f $srcdir/config.status; then
225     AC_MSG_ERROR([source directory already configured; run "make distclean" there first])
226   fi
229 # test whether we have cygpath
230 if test -z "$CYGPATH_W"; then
231   if (cygpath --version) >/dev/null 2>/dev/null; then
232     CYGPATH_W='cygpath -w'
233   else
234     CYGPATH_W=echo
235   fi
237 AC_SUBST([CYGPATH_W])
239 # Define the identity of the package.
240 dnl Distinguish between old-style and new-style calls.
241 m4_ifval([$2],
242 [m4_ifval([$3], [_AM_SET_OPTION([no-define])])dnl
243  AC_SUBST([PACKAGE], [$1])dnl
244  AC_SUBST([VERSION], [$2])],
245 [_AM_SET_OPTIONS([$1])dnl
246 dnl Diagnose old-style AC_INIT with new-style AM_AUTOMAKE_INIT.
247 m4_if(m4_ifdef([AC_PACKAGE_NAME], 1)m4_ifdef([AC_PACKAGE_VERSION], 1), 11,,
248   [m4_fatal([AC_INIT should be called with package and version arguments])])dnl
249  AC_SUBST([PACKAGE], ['AC_PACKAGE_TARNAME'])dnl
250  AC_SUBST([VERSION], ['AC_PACKAGE_VERSION'])])dnl
252 _AM_IF_OPTION([no-define],,
253 [AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE", [Name of package])
254  AC_DEFINE_UNQUOTED(VERSION, "$VERSION", [Version number of package])])dnl
256 # Some tools Automake needs.
257 AC_REQUIRE([AM_SANITY_CHECK])dnl
258 AC_REQUIRE([AC_ARG_PROGRAM])dnl
259 AM_MISSING_PROG(ACLOCAL, aclocal-${am__api_version})
260 AM_MISSING_PROG(AUTOCONF, autoconf)
261 AM_MISSING_PROG(AUTOMAKE, automake-${am__api_version})
262 AM_MISSING_PROG(AUTOHEADER, autoheader)
263 AM_MISSING_PROG(MAKEINFO, makeinfo)
264 AC_REQUIRE([AM_PROG_INSTALL_SH])dnl
265 AC_REQUIRE([AM_PROG_INSTALL_STRIP])dnl
266 AC_REQUIRE([AM_PROG_MKDIR_P])dnl
267 # We need awk for the "check" target.  The system "awk" is bad on
268 # some platforms.
269 AC_REQUIRE([AC_PROG_AWK])dnl
270 AC_REQUIRE([AC_PROG_MAKE_SET])dnl
271 AC_REQUIRE([AM_SET_LEADING_DOT])dnl
272 _AM_IF_OPTION([tar-ustar], [_AM_PROG_TAR([ustar])],
273               [_AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])],
274                              [_AM_PROG_TAR([v7])])])
275 _AM_IF_OPTION([no-dependencies],,
276 [AC_PROVIDE_IFELSE([AC_PROG_CC],
277                   [_AM_DEPENDENCIES(CC)],
278                   [define([AC_PROG_CC],
279                           defn([AC_PROG_CC])[_AM_DEPENDENCIES(CC)])])dnl
280 AC_PROVIDE_IFELSE([AC_PROG_CXX],
281                   [_AM_DEPENDENCIES(CXX)],
282                   [define([AC_PROG_CXX],
283                           defn([AC_PROG_CXX])[_AM_DEPENDENCIES(CXX)])])dnl
284 AC_PROVIDE_IFELSE([AC_PROG_OBJC],
285                   [_AM_DEPENDENCIES(OBJC)],
286                   [define([AC_PROG_OBJC],
287                           defn([AC_PROG_OBJC])[_AM_DEPENDENCIES(OBJC)])])dnl
289 _AM_IF_OPTION([silent-rules], [AC_REQUIRE([AM_SILENT_RULES])])dnl
290 dnl The `parallel-tests' driver may need to know about EXEEXT, so add the
291 dnl `am__EXEEXT' conditional if _AM_COMPILER_EXEEXT was seen.  This macro
292 dnl is hooked onto _AC_COMPILER_EXEEXT early, see below.
293 AC_CONFIG_COMMANDS_PRE(dnl
294 [m4_provide_if([_AM_COMPILER_EXEEXT],
295   [AM_CONDITIONAL([am__EXEEXT], [test -n "$EXEEXT"])])])dnl
298 dnl Hook into `_AC_COMPILER_EXEEXT' early to learn its expansion.  Do not
299 dnl add the conditional right here, as _AC_COMPILER_EXEEXT may be further
300 dnl mangled by Autoconf and run in a shell conditional statement.
301 m4_define([_AC_COMPILER_EXEEXT],
302 m4_defn([_AC_COMPILER_EXEEXT])[m4_provide([_AM_COMPILER_EXEEXT])])
305 # When config.status generates a header, we must update the stamp-h file.
306 # This file resides in the same directory as the config header
307 # that is generated.  The stamp files are numbered to have different names.
309 # Autoconf calls _AC_AM_CONFIG_HEADER_HOOK (when defined) in the
310 # loop where config.status creates the headers, so we can generate
311 # our stamp files there.
312 AC_DEFUN([_AC_AM_CONFIG_HEADER_HOOK],
313 [# Compute $1's index in $config_headers.
314 _am_arg=$1
315 _am_stamp_count=1
316 for _am_header in $config_headers :; do
317   case $_am_header in
318     $_am_arg | $_am_arg:* )
319       break ;;
320     * )
321       _am_stamp_count=`expr $_am_stamp_count + 1` ;;
322   esac
323 done
324 echo "timestamp for $_am_arg" >`AS_DIRNAME(["$_am_arg"])`/stamp-h[]$_am_stamp_count])
326 # Copyright (C) 2001, 2003, 2005, 2008  Free Software Foundation, Inc.
328 # This file is free software; the Free Software Foundation
329 # gives unlimited permission to copy and/or distribute it,
330 # with or without modifications, as long as this notice is preserved.
332 # AM_PROG_INSTALL_SH
333 # ------------------
334 # Define $install_sh.
335 AC_DEFUN([AM_PROG_INSTALL_SH],
336 [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
337 if test x"${install_sh}" != xset; then
338   case $am_aux_dir in
339   *\ * | *\     *)
340     install_sh="\${SHELL} '$am_aux_dir/install-sh'" ;;
341   *)
342     install_sh="\${SHELL} $am_aux_dir/install-sh"
343   esac
345 AC_SUBST(install_sh)])
347 # Copyright (C) 2003, 2005  Free Software Foundation, Inc.
349 # This file is free software; the Free Software Foundation
350 # gives unlimited permission to copy and/or distribute it,
351 # with or without modifications, as long as this notice is preserved.
353 # serial 2
355 # Check whether the underlying file-system supports filenames
356 # with a leading dot.  For instance MS-DOS doesn't.
357 AC_DEFUN([AM_SET_LEADING_DOT],
358 [rm -rf .tst 2>/dev/null
359 mkdir .tst 2>/dev/null
360 if test -d .tst; then
361   am__leading_dot=.
362 else
363   am__leading_dot=_
365 rmdir .tst 2>/dev/null
366 AC_SUBST([am__leading_dot])])
368 # Add --enable-maintainer-mode option to configure.         -*- Autoconf -*-
369 # From Jim Meyering
371 # Copyright (C) 1996, 1998, 2000, 2001, 2002, 2003, 2004, 2005, 2008
372 # Free Software Foundation, Inc.
374 # This file is free software; the Free Software Foundation
375 # gives unlimited permission to copy and/or distribute it,
376 # with or without modifications, as long as this notice is preserved.
378 # serial 5
380 # AM_MAINTAINER_MODE([DEFAULT-MODE])
381 # ----------------------------------
382 # Control maintainer-specific portions of Makefiles.
383 # Default is to disable them, unless `enable' is passed literally.
384 # For symmetry, `disable' may be passed as well.  Anyway, the user
385 # can override the default with the --enable/--disable switch.
386 AC_DEFUN([AM_MAINTAINER_MODE],
387 [m4_case(m4_default([$1], [disable]),
388        [enable], [m4_define([am_maintainer_other], [disable])],
389        [disable], [m4_define([am_maintainer_other], [enable])],
390        [m4_define([am_maintainer_other], [enable])
391         m4_warn([syntax], [unexpected argument to AM@&t@_MAINTAINER_MODE: $1])])
392 AC_MSG_CHECKING([whether to am_maintainer_other maintainer-specific portions of Makefiles])
393   dnl maintainer-mode's default is 'disable' unless 'enable' is passed
394   AC_ARG_ENABLE([maintainer-mode],
395 [  --][am_maintainer_other][-maintainer-mode  am_maintainer_other make rules and dependencies not useful
396                           (and sometimes confusing) to the casual installer],
397       [USE_MAINTAINER_MODE=$enableval],
398       [USE_MAINTAINER_MODE=]m4_if(am_maintainer_other, [enable], [no], [yes]))
399   AC_MSG_RESULT([$USE_MAINTAINER_MODE])
400   AM_CONDITIONAL([MAINTAINER_MODE], [test $USE_MAINTAINER_MODE = yes])
401   MAINT=$MAINTAINER_MODE_TRUE
402   AC_SUBST([MAINT])dnl
406 AU_DEFUN([jm_MAINTAINER_MODE], [AM_MAINTAINER_MODE])
408 # Fake the existence of programs that GNU maintainers use.  -*- Autoconf -*-
410 # Copyright (C) 1997, 1999, 2000, 2001, 2003, 2004, 2005, 2008
411 # Free Software Foundation, Inc.
413 # This file is free software; the Free Software Foundation
414 # gives unlimited permission to copy and/or distribute it,
415 # with or without modifications, as long as this notice is preserved.
417 # serial 6
419 # AM_MISSING_PROG(NAME, PROGRAM)
420 # ------------------------------
421 AC_DEFUN([AM_MISSING_PROG],
422 [AC_REQUIRE([AM_MISSING_HAS_RUN])
423 $1=${$1-"${am_missing_run}$2"}
424 AC_SUBST($1)])
427 # AM_MISSING_HAS_RUN
428 # ------------------
429 # Define MISSING if not defined so far and test if it supports --run.
430 # If it does, set am_missing_run to use it, otherwise, to nothing.
431 AC_DEFUN([AM_MISSING_HAS_RUN],
432 [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
433 AC_REQUIRE_AUX_FILE([missing])dnl
434 if test x"${MISSING+set}" != xset; then
435   case $am_aux_dir in
436   *\ * | *\     *)
437     MISSING="\${SHELL} \"$am_aux_dir/missing\"" ;;
438   *)
439     MISSING="\${SHELL} $am_aux_dir/missing" ;;
440   esac
442 # Use eval to expand $SHELL
443 if eval "$MISSING --run true"; then
444   am_missing_run="$MISSING --run "
445 else
446   am_missing_run=
447   AC_MSG_WARN([`missing' script is too old or missing])
451 # Copyright (C) 2003, 2004, 2005, 2006  Free Software Foundation, Inc.
453 # This file is free software; the Free Software Foundation
454 # gives unlimited permission to copy and/or distribute it,
455 # with or without modifications, as long as this notice is preserved.
457 # AM_PROG_MKDIR_P
458 # ---------------
459 # Check for `mkdir -p'.
460 AC_DEFUN([AM_PROG_MKDIR_P],
461 [AC_PREREQ([2.60])dnl
462 AC_REQUIRE([AC_PROG_MKDIR_P])dnl
463 dnl Automake 1.8 to 1.9.6 used to define mkdir_p.  We now use MKDIR_P,
464 dnl while keeping a definition of mkdir_p for backward compatibility.
465 dnl @MKDIR_P@ is magic: AC_OUTPUT adjusts its value for each Makefile.
466 dnl However we cannot define mkdir_p as $(MKDIR_P) for the sake of
467 dnl Makefile.ins that do not define MKDIR_P, so we do our own
468 dnl adjustment using top_builddir (which is defined more often than
469 dnl MKDIR_P).
470 AC_SUBST([mkdir_p], ["$MKDIR_P"])dnl
471 case $mkdir_p in
472   [[\\/$]]* | ?:[[\\/]]*) ;;
473   */*) mkdir_p="\$(top_builddir)/$mkdir_p" ;;
474 esac
477 # Helper functions for option handling.                     -*- Autoconf -*-
479 # Copyright (C) 2001, 2002, 2003, 2005, 2008  Free Software Foundation, Inc.
481 # This file is free software; the Free Software Foundation
482 # gives unlimited permission to copy and/or distribute it,
483 # with or without modifications, as long as this notice is preserved.
485 # serial 4
487 # _AM_MANGLE_OPTION(NAME)
488 # -----------------------
489 AC_DEFUN([_AM_MANGLE_OPTION],
490 [[_AM_OPTION_]m4_bpatsubst($1, [[^a-zA-Z0-9_]], [_])])
492 # _AM_SET_OPTION(NAME)
493 # ------------------------------
494 # Set option NAME.  Presently that only means defining a flag for this option.
495 AC_DEFUN([_AM_SET_OPTION],
496 [m4_define(_AM_MANGLE_OPTION([$1]), 1)])
498 # _AM_SET_OPTIONS(OPTIONS)
499 # ----------------------------------
500 # OPTIONS is a space-separated list of Automake options.
501 AC_DEFUN([_AM_SET_OPTIONS],
502 [m4_foreach_w([_AM_Option], [$1], [_AM_SET_OPTION(_AM_Option)])])
504 # _AM_IF_OPTION(OPTION, IF-SET, [IF-NOT-SET])
505 # -------------------------------------------
506 # Execute IF-SET if OPTION is set, IF-NOT-SET otherwise.
507 AC_DEFUN([_AM_IF_OPTION],
508 [m4_ifset(_AM_MANGLE_OPTION([$1]), [$2], [$3])])
510 # Check to make sure that the build environment is sane.    -*- Autoconf -*-
512 # Copyright (C) 1996, 1997, 2000, 2001, 2003, 2005, 2008
513 # Free Software Foundation, Inc.
515 # This file is free software; the Free Software Foundation
516 # gives unlimited permission to copy and/or distribute it,
517 # with or without modifications, as long as this notice is preserved.
519 # serial 5
521 # AM_SANITY_CHECK
522 # ---------------
523 AC_DEFUN([AM_SANITY_CHECK],
524 [AC_MSG_CHECKING([whether build environment is sane])
525 # Just in case
526 sleep 1
527 echo timestamp > conftest.file
528 # Reject unsafe characters in $srcdir or the absolute working directory
529 # name.  Accept space and tab only in the latter.
530 am_lf='
532 case `pwd` in
533   *[[\\\"\#\$\&\'\`$am_lf]]*)
534     AC_MSG_ERROR([unsafe absolute working directory name]);;
535 esac
536 case $srcdir in
537   *[[\\\"\#\$\&\'\`$am_lf\ \    ]]*)
538     AC_MSG_ERROR([unsafe srcdir value: `$srcdir']);;
539 esac
541 # Do `set' in a subshell so we don't clobber the current shell's
542 # arguments.  Must try -L first in case configure is actually a
543 # symlink; some systems play weird games with the mod time of symlinks
544 # (eg FreeBSD returns the mod time of the symlink's containing
545 # directory).
546 if (
547    set X `ls -Lt "$srcdir/configure" conftest.file 2> /dev/null`
548    if test "$[*]" = "X"; then
549       # -L didn't work.
550       set X `ls -t "$srcdir/configure" conftest.file`
551    fi
552    rm -f conftest.file
553    if test "$[*]" != "X $srcdir/configure conftest.file" \
554       && test "$[*]" != "X conftest.file $srcdir/configure"; then
556       # If neither matched, then we have a broken ls.  This can happen
557       # if, for instance, CONFIG_SHELL is bash and it inherits a
558       # broken ls alias from the environment.  This has actually
559       # happened.  Such a system could not be considered "sane".
560       AC_MSG_ERROR([ls -t appears to fail.  Make sure there is not a broken
561 alias in your environment])
562    fi
564    test "$[2]" = conftest.file
565    )
566 then
567    # Ok.
568    :
569 else
570    AC_MSG_ERROR([newly created file is older than distributed files!
571 Check your system clock])
573 AC_MSG_RESULT(yes)])
575 # Copyright (C) 2001, 2003, 2005  Free Software Foundation, Inc.
577 # This file is free software; the Free Software Foundation
578 # gives unlimited permission to copy and/or distribute it,
579 # with or without modifications, as long as this notice is preserved.
581 # AM_PROG_INSTALL_STRIP
582 # ---------------------
583 # One issue with vendor `install' (even GNU) is that you can't
584 # specify the program used to strip binaries.  This is especially
585 # annoying in cross-compiling environments, where the build's strip
586 # is unlikely to handle the host's binaries.
587 # Fortunately install-sh will honor a STRIPPROG variable, so we
588 # always use install-sh in `make install-strip', and initialize
589 # STRIPPROG with the value of the STRIP variable (set by the user).
590 AC_DEFUN([AM_PROG_INSTALL_STRIP],
591 [AC_REQUIRE([AM_PROG_INSTALL_SH])dnl
592 # Installed binaries are usually stripped using `strip' when the user
593 # run `make install-strip'.  However `strip' might not be the right
594 # tool to use in cross-compilation environments, therefore Automake
595 # will honor the `STRIP' environment variable to overrule this program.
596 dnl Don't test for $cross_compiling = yes, because it might be `maybe'.
597 if test "$cross_compiling" != no; then
598   AC_CHECK_TOOL([STRIP], [strip], :)
600 INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s"
601 AC_SUBST([INSTALL_STRIP_PROGRAM])])
603 # Copyright (C) 2006, 2008  Free Software Foundation, Inc.
605 # This file is free software; the Free Software Foundation
606 # gives unlimited permission to copy and/or distribute it,
607 # with or without modifications, as long as this notice is preserved.
609 # serial 2
611 # _AM_SUBST_NOTMAKE(VARIABLE)
612 # ---------------------------
613 # Prevent Automake from outputting VARIABLE = @VARIABLE@ in Makefile.in.
614 # This macro is traced by Automake.
615 AC_DEFUN([_AM_SUBST_NOTMAKE])
617 # AM_SUBST_NOTMAKE(VARIABLE)
618 # ---------------------------
619 # Public sister of _AM_SUBST_NOTMAKE.
620 AC_DEFUN([AM_SUBST_NOTMAKE], [_AM_SUBST_NOTMAKE($@)])
622 # Check how to create a tarball.                            -*- Autoconf -*-
624 # Copyright (C) 2004, 2005  Free Software Foundation, Inc.
626 # This file is free software; the Free Software Foundation
627 # gives unlimited permission to copy and/or distribute it,
628 # with or without modifications, as long as this notice is preserved.
630 # serial 2
632 # _AM_PROG_TAR(FORMAT)
633 # --------------------
634 # Check how to create a tarball in format FORMAT.
635 # FORMAT should be one of `v7', `ustar', or `pax'.
637 # Substitute a variable $(am__tar) that is a command
638 # writing to stdout a FORMAT-tarball containing the directory
639 # $tardir.
640 #     tardir=directory && $(am__tar) > result.tar
642 # Substitute a variable $(am__untar) that extract such
643 # a tarball read from stdin.
644 #     $(am__untar) < result.tar
645 AC_DEFUN([_AM_PROG_TAR],
646 [# Always define AMTAR for backward compatibility.
647 AM_MISSING_PROG([AMTAR], [tar])
648 m4_if([$1], [v7],
649      [am__tar='${AMTAR} chof - "$$tardir"'; am__untar='${AMTAR} xf -'],
650      [m4_case([$1], [ustar],, [pax],,
651               [m4_fatal([Unknown tar format])])
652 AC_MSG_CHECKING([how to create a $1 tar archive])
653 # Loop over all known methods to create a tar archive until one works.
654 _am_tools='gnutar m4_if([$1], [ustar], [plaintar]) pax cpio none'
655 _am_tools=${am_cv_prog_tar_$1-$_am_tools}
656 # Do not fold the above two line into one, because Tru64 sh and
657 # Solaris sh will not grok spaces in the rhs of `-'.
658 for _am_tool in $_am_tools
660   case $_am_tool in
661   gnutar)
662     for _am_tar in tar gnutar gtar;
663     do
664       AM_RUN_LOG([$_am_tar --version]) && break
665     done
666     am__tar="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$$tardir"'
667     am__tar_="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$tardir"'
668     am__untar="$_am_tar -xf -"
669     ;;
670   plaintar)
671     # Must skip GNU tar: if it does not support --format= it doesn't create
672     # ustar tarball either.
673     (tar --version) >/dev/null 2>&1 && continue
674     am__tar='tar chf - "$$tardir"'
675     am__tar_='tar chf - "$tardir"'
676     am__untar='tar xf -'
677     ;;
678   pax)
679     am__tar='pax -L -x $1 -w "$$tardir"'
680     am__tar_='pax -L -x $1 -w "$tardir"'
681     am__untar='pax -r'
682     ;;
683   cpio)
684     am__tar='find "$$tardir" -print | cpio -o -H $1 -L'
685     am__tar_='find "$tardir" -print | cpio -o -H $1 -L'
686     am__untar='cpio -i -H $1 -d'
687     ;;
688   none)
689     am__tar=false
690     am__tar_=false
691     am__untar=false
692     ;;
693   esac
695   # If the value was cached, stop now.  We just wanted to have am__tar
696   # and am__untar set.
697   test -n "${am_cv_prog_tar_$1}" && break
699   # tar/untar a dummy directory, and stop if the command works
700   rm -rf conftest.dir
701   mkdir conftest.dir
702   echo GrepMe > conftest.dir/file
703   AM_RUN_LOG([tardir=conftest.dir && eval $am__tar_ >conftest.tar])
704   rm -rf conftest.dir
705   if test -s conftest.tar; then
706     AM_RUN_LOG([$am__untar <conftest.tar])
707     grep GrepMe conftest.dir/file >/dev/null 2>&1 && break
708   fi
709 done
710 rm -rf conftest.dir
712 AC_CACHE_VAL([am_cv_prog_tar_$1], [am_cv_prog_tar_$1=$_am_tool])
713 AC_MSG_RESULT([$am_cv_prog_tar_$1])])
714 AC_SUBST([am__tar])
715 AC_SUBST([am__untar])
716 ]) # _AM_PROG_TAR