64
33
# ----------------------------
65
34
# Automake X.Y traces this macro to ensure aclocal.m4 has been
66
35
# generated from the m4 files accompanying Automake X.Y.
67
AC_DEFUN([AM_AUTOMAKE_VERSION],[am__api_version="1.4"])
36
AC_DEFUN([AM_AUTOMAKE_VERSION], [am__api_version="1.9"])
69
38
# AM_SET_CURRENT_AUTOMAKE_VERSION
70
39
# -------------------------------
71
40
# Call AM_AUTOMAKE_VERSION so it can be traced.
72
41
# This function is AC_REQUIREd by AC_INIT_AUTOMAKE.
73
42
AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION],
74
[AM_AUTOMAKE_VERSION([1.4-p6])])
43
[AM_AUTOMAKE_VERSION([1.9.4])])
45
# Figure out how to run the assembler. -*- Autoconf -*-
49
# Copyright (C) 2001, 2003, 2004 Free Software Foundation, Inc.
51
# This program is free software; you can redistribute it and/or modify
52
# it under the terms of the GNU General Public License as published by
53
# the Free Software Foundation; either version 2, or (at your option)
56
# This program is distributed in the hope that it will be useful,
57
# but WITHOUT ANY WARRANTY; without even the implied warranty of
58
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
59
# GNU General Public License for more details.
61
# You should have received a copy of the GNU General Public License
62
# along with this program; if not, write to the Free Software
63
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
68
AC_DEFUN([AM_PROG_AS],
69
[# By default we simply use the C compiler to build assembly code.
70
AC_REQUIRE([AC_PROG_CC])
71
test "${CCAS+set}" = set || CCAS=$CC
72
test "${CCASFLAGS+set}" = set || CCASFLAGS=$CFLAGS
73
AC_ARG_VAR([CCAS], [assembler compiler command (defaults to CC)])
74
AC_ARG_VAR([CCASFLAGS], [assembler compiler flags (defaults to CFLAGS)])
79
# Copyright (C) 2001, 2003 Free Software Foundation, Inc.
81
# This program is free software; you can redistribute it and/or modify
82
# it under the terms of the GNU General Public License as published by
83
# the Free Software Foundation; either version 2, or (at your option)
86
# This program is distributed in the hope that it will be useful,
87
# but WITHOUT ANY WARRANTY; without even the implied warranty of
88
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
89
# GNU General Public License for more details.
91
# You should have received a copy of the GNU General Public License
92
# along with this program; if not, write to the Free Software
93
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
96
# For projects using AC_CONFIG_AUX_DIR([foo]), Autoconf sets
97
# $ac_aux_dir to `$srcdir/foo'. In other projects, it is set to
98
# `$srcdir', `$srcdir/..', or `$srcdir/../..'.
100
# Of course, Automake must honor this variable whenever it calls a
101
# tool from the auxiliary directory. The problem is that $srcdir (and
102
# therefore $ac_aux_dir as well) can be either absolute or relative,
103
# depending on how configure is run. This is pretty annoying, since
104
# it makes $ac_aux_dir quite unusable in subdirectories: in the top
105
# source directory, any form will work fine, but in subdirectories a
106
# relative path needs to be adjusted first.
108
# $ac_aux_dir/missing
109
# fails when called from a subdirectory if $ac_aux_dir is relative
110
# $top_srcdir/$ac_aux_dir/missing
111
# fails if $ac_aux_dir is absolute,
112
# fails when called from a subdirectory in a VPATH build with
113
# a relative $ac_aux_dir
115
# The reason of the latter failure is that $top_srcdir and $ac_aux_dir
116
# are both prefixed by $srcdir. In an in-source build this is usually
117
# harmless because $srcdir is `.', but things will broke when you
118
# start a VPATH build or use an absolute $srcdir.
120
# So we could use something similar to $top_srcdir/$ac_aux_dir/missing,
121
# iff we strip the leading $srcdir from $ac_aux_dir. That would be:
122
# am_aux_dir='\$(top_srcdir)/'`expr "$ac_aux_dir" : "$srcdir//*\(.*\)"`
123
# and then we would define $MISSING as
124
# MISSING="\${SHELL} $am_aux_dir/missing"
125
# This will work as long as MISSING is not called from configure, because
126
# unfortunately $(top_srcdir) has no meaning in configure.
127
# However there are other variables, like CC, which are often used in
128
# configure, and could therefore not use this "fixed" $ac_aux_dir.
130
# Another solution, used here, is to always expand $ac_aux_dir to an
131
# absolute PATH. The drawback is that using absolute paths prevent a
132
# configured tree to be moved without reconfiguration.
134
AC_DEFUN([AM_AUX_DIR_EXPAND],
135
[dnl Rely on autoconf to set up CDPATH properly.
137
# expand $ac_aux_dir to an absolute path
138
am_aux_dir=`cd $ac_aux_dir && pwd`
141
# AM_CONDITIONAL -*- Autoconf -*-
143
# Copyright (C) 1997, 2000, 2001, 2003, 2004 Free Software Foundation, Inc.
145
# This program is free software; you can redistribute it and/or modify
146
# it under the terms of the GNU General Public License as published by
147
# the Free Software Foundation; either version 2, or (at your option)
150
# This program is distributed in the hope that it will be useful,
151
# but WITHOUT ANY WARRANTY; without even the implied warranty of
152
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
153
# GNU General Public License for more details.
155
# You should have received a copy of the GNU General Public License
156
# along with this program; if not, write to the Free Software
157
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
162
# AM_CONDITIONAL(NAME, SHELL-CONDITION)
163
# -------------------------------------
164
# Define a conditional.
165
AC_DEFUN([AM_CONDITIONAL],
167
ifelse([$1], [TRUE], [AC_FATAL([$0: invalid condition: $1])],
168
[$1], [FALSE], [AC_FATAL([$0: invalid condition: $1])])dnl
178
AC_CONFIG_COMMANDS_PRE(
179
[if test -z "${$1_TRUE}" && test -z "${$1_FALSE}"; then
180
AC_MSG_ERROR([[conditional "$1" was never defined.
181
Usually this means the macro was only invoked conditionally.]])
184
# serial 7 -*- Autoconf -*-
186
# Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004
187
# Free Software Foundation, Inc.
189
# This program is free software; you can redistribute it and/or modify
190
# it under the terms of the GNU General Public License as published by
191
# the Free Software Foundation; either version 2, or (at your option)
194
# This program is distributed in the hope that it will be useful,
195
# but WITHOUT ANY WARRANTY; without even the implied warranty of
196
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
197
# GNU General Public License for more details.
199
# You should have received a copy of the GNU General Public License
200
# along with this program; if not, write to the Free Software
201
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
205
# There are a few dirty hacks below to avoid letting `AC_PROG_CC' be
206
# written in clear, in which case automake, when reading aclocal.m4,
207
# will think it sees a *use*, and therefore will trigger all it's
208
# C support machinery. Also note that it means that autoscan, seeing
209
# CC etc. in the Makefile, will ask for an AC_PROG_CC use...
213
# _AM_DEPENDENCIES(NAME)
214
# ----------------------
215
# See how the compiler implements dependency checking.
216
# NAME is "CC", "CXX", "GCJ", or "OBJC".
217
# We try a few techniques and use that to set a single cache variable.
219
# We don't AC_REQUIRE the corresponding AC_PROG_CC since the latter was
220
# modified to invoke _AM_DEPENDENCIES(CC); we would have a circular
221
# dependency, and given that the user is not expected to run this macro,
222
# just rely on AC_PROG_CC.
223
AC_DEFUN([_AM_DEPENDENCIES],
224
[AC_REQUIRE([AM_SET_DEPDIR])dnl
225
AC_REQUIRE([AM_OUTPUT_DEPENDENCY_COMMANDS])dnl
226
AC_REQUIRE([AM_MAKE_INCLUDE])dnl
227
AC_REQUIRE([AM_DEP_TRACK])dnl
229
ifelse([$1], CC, [depcc="$CC" am_compiler_list=],
230
[$1], CXX, [depcc="$CXX" am_compiler_list=],
231
[$1], OBJC, [depcc="$OBJC" am_compiler_list='gcc3 gcc'],
232
[$1], GCJ, [depcc="$GCJ" am_compiler_list='gcc3 gcc'],
233
[depcc="$$1" am_compiler_list=])
235
AC_CACHE_CHECK([dependency style of $depcc],
236
[am_cv_$1_dependencies_compiler_type],
237
[if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then
238
# We make a subdir and do the tests there. Otherwise we can end up
239
# making bogus files that we don't know about and never remove. For
240
# instance it was reported that on HP-UX the gcc test will end up
241
# making a dummy file named `D' -- because `-MD' means `put the output
244
# Copy depcomp to subdir because otherwise we won't find it if we're
245
# using a relative directory.
246
cp "$am_depcomp" conftest.dir
248
# We will build objects and dependencies in a subdirectory because
249
# it helps to detect inapplicable dependency modes. For instance
250
# both Tru64's cc and ICC support -MD to output dependencies as a
251
# side effect of compilation, but ICC will put the dependencies in
252
# the current directory while Tru64 will put them in the object
256
am_cv_$1_dependencies_compiler_type=none
257
if test "$am_compiler_list" = ""; then
258
am_compiler_list=`sed -n ['s/^#*\([a-zA-Z0-9]*\))$/\1/p'] < ./depcomp`
260
for depmode in $am_compiler_list; do
261
# Setup a source with many dependencies, because some compilers
262
# like to wrap large dependency lists on column 80 (with \), and
263
# we should not choose a depcomp mode which is confused by this.
265
# We need to recreate these files for each test, as the compiler may
266
# overwrite some of them when testing with obscure command lines.
267
# This happens at least with the AIX C compiler.
269
for i in 1 2 3 4 5 6; do
270
echo '#include "conftst'$i'.h"' >> sub/conftest.c
271
# Using `: > sub/conftst$i.h' creates only sub/conftst1.h with
272
# Solaris 8's {/usr,}/bin/sh.
273
touch sub/conftst$i.h
275
echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf
279
# after this tag, mechanisms are not by side-effect, so they'll
280
# only be used when explicitly requested
281
if test "x$enable_dependency_tracking" = xyes; then
289
# We check with `-c' and `-o' for the sake of the "dashmstdout"
290
# mode. It turns out that the SunPro C++ compiler does not properly
291
# handle `-M -o', and we need to detect this.
292
if depmode=$depmode \
293
source=sub/conftest.c object=sub/conftest.${OBJEXT-o} \
294
depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \
295
$SHELL ./depcomp $depcc -c -o sub/conftest.${OBJEXT-o} sub/conftest.c \
296
>/dev/null 2>conftest.err &&
297
grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 &&
298
grep sub/conftest.${OBJEXT-o} sub/conftest.Po > /dev/null 2>&1 &&
299
${MAKE-make} -s -f confmf > /dev/null 2>&1; then
300
# icc doesn't choke on unknown options, it will just issue warnings
301
# or remarks (even with -Werror). So we grep stderr for any message
302
# that says an option was ignored or not supported.
303
# When given -MP, icc 7.0 and 7.1 complain thusly:
304
# icc: Command line warning: ignoring option '-M'; no argument required
305
# The diagnosis changed in icc 8.0:
306
# icc: Command line remark: option '-MP' not supported
307
if (grep 'ignoring option' conftest.err ||
308
grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else
309
am_cv_$1_dependencies_compiler_type=$depmode
318
am_cv_$1_dependencies_compiler_type=none
321
AC_SUBST([$1DEPMODE], [depmode=$am_cv_$1_dependencies_compiler_type])
322
AM_CONDITIONAL([am__fastdep$1], [
323
test "x$enable_dependency_tracking" != xno \
324
&& test "$am_cv_$1_dependencies_compiler_type" = gcc3])
330
# Choose a directory name for dependency files.
331
# This macro is AC_REQUIREd in _AM_DEPENDENCIES
332
AC_DEFUN([AM_SET_DEPDIR],
333
[AC_REQUIRE([AM_SET_LEADING_DOT])dnl
334
AC_SUBST([DEPDIR], ["${am__leading_dot}deps"])dnl
340
AC_DEFUN([AM_DEP_TRACK],
341
[AC_ARG_ENABLE(dependency-tracking,
342
[ --disable-dependency-tracking speeds up one-time build
343
--enable-dependency-tracking do not reject slow dependency extractors])
344
if test "x$enable_dependency_tracking" != xno; then
345
am_depcomp="$ac_aux_dir/depcomp"
348
AM_CONDITIONAL([AMDEP], [test "x$enable_dependency_tracking" != xno])
349
AC_SUBST([AMDEPBACKSLASH])
352
# Generate code to set up dependency tracking. -*- Autoconf -*-
354
# Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004
355
# Free Software Foundation, Inc.
357
# This program is free software; you can redistribute it and/or modify
358
# it under the terms of the GNU General Public License as published by
359
# the Free Software Foundation; either version 2, or (at your option)
362
# This program is distributed in the hope that it will be useful,
363
# but WITHOUT ANY WARRANTY; without even the implied warranty of
364
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
365
# GNU General Public License for more details.
367
# You should have received a copy of the GNU General Public License
368
# along with this program; if not, write to the Free Software
369
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
374
# _AM_OUTPUT_DEPENDENCY_COMMANDS
375
# ------------------------------
376
AC_DEFUN([_AM_OUTPUT_DEPENDENCY_COMMANDS],
377
[for mf in $CONFIG_FILES; do
378
# Strip MF so we end up with the name of the file.
379
mf=`echo "$mf" | sed -e 's/:.*$//'`
380
# Check whether this is an Automake generated Makefile or not.
381
# We used to match only the files named `Makefile.in', but
382
# some people rename them; so instead we look at the file content.
383
# Grep'ing the first line is not enough: some people post-process
384
# each Makefile.in and add a new line on top of each file to say so.
385
# So let's grep whole file.
386
if grep '^#.*generated by automake' $mf > /dev/null 2>&1; then
387
dirpart=`AS_DIRNAME("$mf")`
391
# Extract the definition of DEPDIR, am__include, and am__quote
392
# from the Makefile without running `make'.
393
DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"`
394
test -z "$DEPDIR" && continue
395
am__include=`sed -n 's/^am__include = //p' < "$mf"`
396
test -z "am__include" && continue
397
am__quote=`sed -n 's/^am__quote = //p' < "$mf"`
398
# When using ansi2knr, U may be empty or an underscore; expand it
399
U=`sed -n 's/^U = //p' < "$mf"`
400
# Find all dependency output files, they are included files with
401
# $(DEPDIR) in their names. We invoke sed twice because it is the
402
# simplest approach to changing $(DEPDIR) to its actual value in the
404
for file in `sed -n "
405
s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \
406
sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g' -e 's/\$U/'"$U"'/g'`; do
407
# Make sure the directory exists.
408
test -f "$dirpart/$file" && continue
409
fdir=`AS_DIRNAME(["$file"])`
410
AS_MKDIR_P([$dirpart/$fdir])
411
# echo "creating $dirpart/$file"
412
echo '# dummy' > "$dirpart/$file"
415
])# _AM_OUTPUT_DEPENDENCY_COMMANDS
418
# AM_OUTPUT_DEPENDENCY_COMMANDS
419
# -----------------------------
420
# This macro should only be invoked once -- use via AC_REQUIRE.
422
# This code is only required when automatic dependency tracking
423
# is enabled. FIXME. This creates each `.P' file that we will
424
# need in order to bootstrap the dependency handling code.
425
AC_DEFUN([AM_OUTPUT_DEPENDENCY_COMMANDS],
426
[AC_CONFIG_COMMANDS([depfiles],
427
[test x"$AMDEP_TRUE" != x"" || _AM_OUTPUT_DEPENDENCY_COMMANDS],
428
[AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir"])
431
# Do all the work for Automake. -*- Autoconf -*-
433
# This macro actually does too much some checks are only needed if
434
# your package does certain things. But this isn't really a big deal.
436
# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004
437
# Free Software Foundation, Inc.
439
# This program is free software; you can redistribute it and/or modify
440
# it under the terms of the GNU General Public License as published by
441
# the Free Software Foundation; either version 2, or (at your option)
444
# This program is distributed in the hope that it will be useful,
445
# but WITHOUT ANY WARRANTY; without even the implied warranty of
446
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
447
# GNU General Public License for more details.
449
# You should have received a copy of the GNU General Public License
450
# along with this program; if not, write to the Free Software
451
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
456
# AM_INIT_AUTOMAKE(PACKAGE, VERSION, [NO-DEFINE])
457
# AM_INIT_AUTOMAKE([OPTIONS])
458
# -----------------------------------------------
459
# The call with PACKAGE and VERSION arguments is the old style
460
# call (pre autoconf-2.50), which is being phased out. PACKAGE
461
# and VERSION should now be passed to AC_INIT and removed from
462
# the call to AM_INIT_AUTOMAKE.
463
# We support both call styles for the transition. After
464
# the next Automake release, Autoconf can make the AC_INIT
465
# arguments mandatory, and then we can depend on a new Autoconf
466
# release and drop the old call support.
467
AC_DEFUN([AM_INIT_AUTOMAKE],
468
[AC_PREREQ([2.58])dnl
469
dnl Autoconf wants to disallow AM_ names. We explicitly allow
470
dnl the ones we care about.
471
m4_pattern_allow([^AM_[A-Z]+FLAGS$])dnl
472
AC_REQUIRE([AM_SET_CURRENT_AUTOMAKE_VERSION])dnl
473
AC_REQUIRE([AC_PROG_INSTALL])dnl
474
# test to see if srcdir already configured
475
if test "`cd $srcdir && pwd`" != "`pwd`" &&
476
test -f $srcdir/config.status; then
477
AC_MSG_ERROR([source directory already configured; run "make distclean" there first])
480
# test whether we have cygpath
481
if test -z "$CYGPATH_W"; then
482
if (cygpath --version) >/dev/null 2>/dev/null; then
483
CYGPATH_W='cygpath -w'
488
AC_SUBST([CYGPATH_W])
490
# Define the identity of the package.
491
dnl Distinguish between old-style and new-style calls.
493
[m4_ifval([$3], [_AM_SET_OPTION([no-define])])dnl
494
AC_SUBST([PACKAGE], [$1])dnl
495
AC_SUBST([VERSION], [$2])],
496
[_AM_SET_OPTIONS([$1])dnl
497
AC_SUBST([PACKAGE], ['AC_PACKAGE_TARNAME'])dnl
498
AC_SUBST([VERSION], ['AC_PACKAGE_VERSION'])])dnl
500
_AM_IF_OPTION([no-define],,
501
[AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE", [Name of package])
502
AC_DEFINE_UNQUOTED(VERSION, "$VERSION", [Version number of package])])dnl
504
# Some tools Automake needs.
505
AC_REQUIRE([AM_SANITY_CHECK])dnl
506
AC_REQUIRE([AC_ARG_PROGRAM])dnl
507
AM_MISSING_PROG(ACLOCAL, aclocal-${am__api_version})
508
AM_MISSING_PROG(AUTOCONF, autoconf)
509
AM_MISSING_PROG(AUTOMAKE, automake-${am__api_version})
510
AM_MISSING_PROG(AUTOHEADER, autoheader)
511
AM_MISSING_PROG(MAKEINFO, makeinfo)
513
AM_PROG_INSTALL_STRIP
514
AC_REQUIRE([AM_PROG_MKDIR_P])dnl
515
# We need awk for the "check" target. The system "awk" is bad on
517
AC_REQUIRE([AC_PROG_AWK])dnl
518
AC_REQUIRE([AC_PROG_MAKE_SET])dnl
519
AC_REQUIRE([AM_SET_LEADING_DOT])dnl
520
_AM_IF_OPTION([tar-ustar], [_AM_PROG_TAR([ustar])],
521
[_AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])],
522
[_AM_PROG_TAR([v7])])])
523
_AM_IF_OPTION([no-dependencies],,
524
[AC_PROVIDE_IFELSE([AC_PROG_CC],
525
[_AM_DEPENDENCIES(CC)],
526
[define([AC_PROG_CC],
527
defn([AC_PROG_CC])[_AM_DEPENDENCIES(CC)])])dnl
528
AC_PROVIDE_IFELSE([AC_PROG_CXX],
529
[_AM_DEPENDENCIES(CXX)],
530
[define([AC_PROG_CXX],
531
defn([AC_PROG_CXX])[_AM_DEPENDENCIES(CXX)])])dnl
536
# When config.status generates a header, we must update the stamp-h file.
537
# This file resides in the same directory as the config header
538
# that is generated. The stamp files are numbered to have different names.
540
# Autoconf calls _AC_AM_CONFIG_HEADER_HOOK (when defined) in the
541
# loop where config.status creates the headers, so we can generate
542
# our stamp files there.
543
AC_DEFUN([_AC_AM_CONFIG_HEADER_HOOK],
544
[# Compute $1's index in $config_headers.
546
for _am_header in $config_headers :; do
551
_am_stamp_count=`expr $_am_stamp_count + 1` ;;
554
echo "timestamp for $1" >`AS_DIRNAME([$1])`/stamp-h[]$_am_stamp_count])
558
# Define $install_sh.
560
# Copyright (C) 2001, 2003 Free Software Foundation, Inc.
562
# This program is free software; you can redistribute it and/or modify
563
# it under the terms of the GNU General Public License as published by
564
# the Free Software Foundation; either version 2, or (at your option)
567
# This program is distributed in the hope that it will be useful,
568
# but WITHOUT ANY WARRANTY; without even the implied warranty of
569
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
570
# GNU General Public License for more details.
572
# You should have received a copy of the GNU General Public License
573
# along with this program; if not, write to the Free Software
574
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
577
AC_DEFUN([AM_PROG_INSTALL_SH],
578
[AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
579
install_sh=${install_sh-"$am_aux_dir/install-sh"}
580
AC_SUBST(install_sh)])
583
# Copyright (C) 2003 Free Software Foundation, Inc.
585
# This program is free software; you can redistribute it and/or modify
586
# it under the terms of the GNU General Public License as published by
587
# the Free Software Foundation; either version 2, or (at your option)
590
# This program is distributed in the hope that it will be useful,
591
# but WITHOUT ANY WARRANTY; without even the implied warranty of
592
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
593
# GNU General Public License for more details.
595
# You should have received a copy of the GNU General Public License
596
# along with this program; if not, write to the Free Software
597
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
602
# Check whether the underlying file-system supports filenames
603
# with a leading dot. For instance MS-DOS doesn't.
604
AC_DEFUN([AM_SET_LEADING_DOT],
605
[rm -rf .tst 2>/dev/null
606
mkdir .tst 2>/dev/null
607
if test -d .tst; then
612
rmdir .tst 2>/dev/null
613
AC_SUBST([am__leading_dot])])
615
# Check to see how 'make' treats includes. -*- Autoconf -*-
617
# Copyright (C) 2001, 2002, 2003 Free Software Foundation, Inc.
619
# This program is free software; you can redistribute it and/or modify
620
# it under the terms of the GNU General Public License as published by
621
# the Free Software Foundation; either version 2, or (at your option)
624
# This program is distributed in the hope that it will be useful,
625
# but WITHOUT ANY WARRANTY; without even the implied warranty of
626
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
627
# GNU General Public License for more details.
629
# You should have received a copy of the GNU General Public License
630
# along with this program; if not, write to the Free Software
631
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
638
# Check to see how make treats includes.
639
AC_DEFUN([AM_MAKE_INCLUDE],
640
[am_make=${MAKE-make}
641
cat > confinc << 'END'
646
# If we don't find an include directive, just comment out the code.
647
AC_MSG_CHECKING([for style of include used by $am_make])
651
# First try GNU make style include.
652
echo "include confinc" > confmf
653
# We grep out `Entering directory' and `Leaving directory'
654
# messages which can occur if `w' ends up in MAKEFLAGS.
655
# In particular we don't look at `^make:' because GNU make might
656
# be invoked under some other name (usually "gmake"), in which
657
# case it prints its new name instead of `make'.
658
if test "`$am_make -s -f confmf 2> /dev/null | grep -v 'ing directory'`" = "done"; then
663
# Now try BSD make style include.
664
if test "$am__include" = "#"; then
665
echo '.include "confinc"' > confmf
666
if test "`$am_make -s -f confmf 2> /dev/null`" = "done"; then
672
AC_SUBST([am__include])
673
AC_SUBST([am__quote])
674
AC_MSG_RESULT([$_am_result])
681
# Copyright (C) 1997, 1999, 2000, 2001, 2003 Free Software Foundation, Inc.
683
# This program is free software; you can redistribute it and/or modify
684
# it under the terms of the GNU General Public License as published by
685
# the Free Software Foundation; either version 2, or (at your option)
688
# This program is distributed in the hope that it will be useful,
689
# but WITHOUT ANY WARRANTY; without even the implied warranty of
690
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
691
# GNU General Public License for more details.
693
# You should have received a copy of the GNU General Public License
694
# along with this program; if not, write to the Free Software
695
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
700
# AM_MISSING_PROG(NAME, PROGRAM)
701
# ------------------------------
702
AC_DEFUN([AM_MISSING_PROG],
703
[AC_REQUIRE([AM_MISSING_HAS_RUN])
704
$1=${$1-"${am_missing_run}$2"}
710
# Define MISSING if not defined so far and test if it supports --run.
711
# If it does, set am_missing_run to use it, otherwise, to nothing.
712
AC_DEFUN([AM_MISSING_HAS_RUN],
713
[AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
714
test x"${MISSING+set}" = xset || MISSING="\${SHELL} $am_aux_dir/missing"
715
# Use eval to expand $SHELL
716
if eval "$MISSING --run true"; then
717
am_missing_run="$MISSING --run "
720
AC_MSG_WARN([`missing' script is too old or missing])
726
# Check whether `mkdir -p' is supported, fallback to mkinstalldirs otherwise.
728
# Copyright (C) 2003, 2004 Free Software Foundation, Inc.
730
# This program is free software; you can redistribute it and/or modify
731
# it under the terms of the GNU General Public License as published by
732
# the Free Software Foundation; either version 2, or (at your option)
735
# This program is distributed in the hope that it will be useful,
736
# but WITHOUT ANY WARRANTY; without even the implied warranty of
737
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
738
# GNU General Public License for more details.
740
# You should have received a copy of the GNU General Public License
741
# along with this program; if not, write to the Free Software
742
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
745
# Automake 1.8 used `mkdir -m 0755 -p --' to ensure that directories
746
# created by `make install' are always world readable, even if the
747
# installer happens to have an overly restrictive umask (e.g. 077).
748
# This was a mistake. There are at least two reasons why we must not
750
# - it causes special bits like SGID to be ignored,
751
# - it may be too restrictive (some setups expect 775 directories).
753
# Do not use -m 0755 and let people choose whatever they expect by
756
# We cannot accept any implementation of `mkdir' that recognizes `-p'.
757
# Some implementations (such as Solaris 8's) are not thread-safe: if a
758
# parallel make tries to run `mkdir -p a/b' and `mkdir -p a/c'
759
# concurrently, both version can detect that a/ is missing, but only
760
# one can create it and the other will error out. Consequently we
761
# restrict ourselves to GNU make (using the --version option ensures
763
AC_DEFUN([AM_PROG_MKDIR_P],
764
[if mkdir -p --version . >/dev/null 2>&1 && test ! -d ./--version; then
765
# We used to keeping the `.' as first argument, in order to
766
# allow $(mkdir_p) to be used without argument. As in
767
# $(mkdir_p) $(somedir)
768
# where $(somedir) is conditionally defined. However this is wrong
770
# 1. if the package is installed by a user who cannot write `.'
771
# make install will fail,
772
# 2. the above comment should most certainly read
773
# $(mkdir_p) $(DESTDIR)$(somedir)
774
# so it does not work when $(somedir) is undefined and
776
# To support the latter case, we have to write
777
# test -z "$(somedir)" || $(mkdir_p) $(DESTDIR)$(somedir),
778
# so the `.' trick is pointless.
779
mkdir_p='mkdir -p --'
781
# On NextStep and OpenStep, the `mkdir' command does not
782
# recognize any option. It will interpret all options as
783
# directories to create, and then abort because `.' already
785
for d in ./-p ./--version;
787
test -d $d && rmdir $d
789
# $(mkinstalldirs) is defined by Automake if mkinstalldirs exists.
790
if test -f "$ac_aux_dir/mkinstalldirs"; then
791
mkdir_p='$(mkinstalldirs)'
793
mkdir_p='$(install_sh) -d'
796
AC_SUBST([mkdir_p])])
798
# Helper functions for option handling. -*- Autoconf -*-
800
# Copyright (C) 2001, 2002, 2003 Free Software Foundation, Inc.
802
# This program is free software; you can redistribute it and/or modify
803
# it under the terms of the GNU General Public License as published by
804
# the Free Software Foundation; either version 2, or (at your option)
807
# This program is distributed in the hope that it will be useful,
808
# but WITHOUT ANY WARRANTY; without even the implied warranty of
809
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
810
# GNU General Public License for more details.
812
# You should have received a copy of the GNU General Public License
813
# along with this program; if not, write to the Free Software
814
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
819
# _AM_MANGLE_OPTION(NAME)
820
# -----------------------
821
AC_DEFUN([_AM_MANGLE_OPTION],
822
[[_AM_OPTION_]m4_bpatsubst($1, [[^a-zA-Z0-9_]], [_])])
824
# _AM_SET_OPTION(NAME)
825
# ------------------------------
826
# Set option NAME. Presently that only means defining a flag for this option.
827
AC_DEFUN([_AM_SET_OPTION],
828
[m4_define(_AM_MANGLE_OPTION([$1]), 1)])
830
# _AM_SET_OPTIONS(OPTIONS)
831
# ----------------------------------
832
# OPTIONS is a space-separated list of Automake options.
833
AC_DEFUN([_AM_SET_OPTIONS],
834
[AC_FOREACH([_AM_Option], [$1], [_AM_SET_OPTION(_AM_Option)])])
836
# _AM_IF_OPTION(OPTION, IF-SET, [IF-NOT-SET])
837
# -------------------------------------------
838
# Execute IF-SET if OPTION is set, IF-NOT-SET otherwise.
839
AC_DEFUN([_AM_IF_OPTION],
840
[m4_ifset(_AM_MANGLE_OPTION([$1]), [$2], [$3])])
77
843
# Check to make sure that the build environment is sane.
846
# Copyright (C) 1996, 1997, 2000, 2001, 2003 Free Software Foundation, Inc.
848
# This program is free software; you can redistribute it and/or modify
849
# it under the terms of the GNU General Public License as published by
850
# the Free Software Foundation; either version 2, or (at your option)
853
# This program is distributed in the hope that it will be useful,
854
# but WITHOUT ANY WARRANTY; without even the implied warranty of
855
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
856
# GNU General Public License for more details.
858
# You should have received a copy of the GNU General Public License
859
# along with this program; if not, write to the Free Software
860
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
80
867
AC_DEFUN([AM_SANITY_CHECK],
81
868
[AC_MSG_CHECKING([whether build environment is sane])
84
echo timestamp > conftestfile
871
echo timestamp > conftest.file
85
872
# Do `set' in a subshell so we don't clobber the current shell's
86
873
# arguments. Must try -L first in case configure is actually a
87
874
# symlink; some systems play weird games with the mod time of symlinks
88
875
# (eg FreeBSD returns the mod time of the symlink's containing
91
set X `ls -Lt $srcdir/configure conftestfile 2> /dev/null`
92
if test "[$]*" = "X"; then
878
set X `ls -Lt $srcdir/configure conftest.file 2> /dev/null`
879
if test "$[*]" = "X"; then
94
set X `ls -t $srcdir/configure conftestfile`
881
set X `ls -t $srcdir/configure conftest.file`
96
if test "[$]*" != "X $srcdir/configure conftestfile" \
97
&& test "[$]*" != "X conftestfile $srcdir/configure"; then
884
if test "$[*]" != "X $srcdir/configure conftest.file" \
885
&& test "$[*]" != "X conftest.file $srcdir/configure"; then
99
887
# If neither matched, then we have a broken ls. This can happen
100
888
# if, for instance, CONFIG_SHELL is bash and it inherits a