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