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