source: projects/vine-manual-build/trunk/aclocal.m4 @ 2801

Revision 2801, 30.2 KB checked in by yasumichi, 13 years ago (diff)

gnome-doc-utils への対応

Line 
1# generated automatically by aclocal 1.11.1 -*- Autoconf -*-
2
3# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
4# 2005, 2006, 2007, 2008, 2009  Free Software Foundation, Inc.
5# This file is free software; the Free Software Foundation
6# gives unlimited permission to copy and/or distribute it,
7# with or without modifications, as long as this notice is preserved.
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
14m4_ifndef([AC_AUTOCONF_VERSION],
15  [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl
16m4_if(m4_defn([AC_AUTOCONF_VERSION]), [2.65],,
17[m4_warning([this file was generated for autoconf 2.65.
18You have another version of autoconf.  It may work, but is not guaranteed to.
19If you have problems, you may need to regenerate the build system entirely.
20To do so, use the procedure documented by the package, typically `autoreconf'.])])
21
22# pkg.m4 - Macros to locate and utilise pkg-config.            -*- Autoconf -*-
23# serial 1 (pkg-config-0.24)
24#
25# Copyright © 2004 Scott James Remnant <scott@netsplit.com>.
26#
27# This program is free software; you can redistribute it and/or modify
28# it under the terms of the GNU General Public License as published by
29# the Free Software Foundation; either version 2 of the License, or
30# (at your option) any later version.
31#
32# This program is distributed in the hope that it will be useful, but
33# WITHOUT ANY WARRANTY; without even the implied warranty of
34# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
35# General Public License for more details.
36#
37# You should have received a copy of the GNU General Public License
38# along with this program; if not, write to the Free Software
39# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
40#
41# As a special exception to the GNU General Public License, if you
42# distribute this file as part of a program that contains a
43# configuration script generated by Autoconf, you may include it under
44# the same distribution terms that you use for the rest of that program.
45
46# PKG_PROG_PKG_CONFIG([MIN-VERSION])
47# ----------------------------------
48AC_DEFUN([PKG_PROG_PKG_CONFIG],
49[m4_pattern_forbid([^_?PKG_[A-Z_]+$])
50m4_pattern_allow([^PKG_CONFIG(_PATH)?$])
51AC_ARG_VAR([PKG_CONFIG], [path to pkg-config utility])
52AC_ARG_VAR([PKG_CONFIG_PATH], [directories to add to pkg-config's search path])
53AC_ARG_VAR([PKG_CONFIG_LIBDIR], [path overriding pkg-config's built-in search path])
54
55if test "x$ac_cv_env_PKG_CONFIG_set" != "xset"; then
56        AC_PATH_TOOL([PKG_CONFIG], [pkg-config])
57fi
58if test -n "$PKG_CONFIG"; then
59        _pkg_min_version=m4_default([$1], [0.9.0])
60        AC_MSG_CHECKING([pkg-config is at least version $_pkg_min_version])
61        if $PKG_CONFIG --atleast-pkgconfig-version $_pkg_min_version; then
62                AC_MSG_RESULT([yes])
63        else
64                AC_MSG_RESULT([no])
65                PKG_CONFIG=""
66        fi
67fi[]dnl
68])# PKG_PROG_PKG_CONFIG
69
70# PKG_CHECK_EXISTS(MODULES, [ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND])
71#
72# Check to see whether a particular set of modules exists.  Similar
73# to PKG_CHECK_MODULES(), but does not set variables or print errors.
74#
75# Please remember that m4 expands AC_REQUIRE([PKG_PROG_PKG_CONFIG])
76# only at the first occurence in configure.ac, so if the first place
77# it's called might be skipped (such as if it is within an "if", you
78# have to call PKG_CHECK_EXISTS manually
79# --------------------------------------------------------------
80AC_DEFUN([PKG_CHECK_EXISTS],
81[AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl
82if test -n "$PKG_CONFIG" && \
83    AC_RUN_LOG([$PKG_CONFIG --exists --print-errors "$1"]); then
84  m4_default([$2], [:])
85m4_ifvaln([$3], [else
86  $3])dnl
87fi])
88
89# _PKG_CONFIG([VARIABLE], [COMMAND], [MODULES])
90# ---------------------------------------------
91m4_define([_PKG_CONFIG],
92[if test -n "$$1"; then
93    pkg_cv_[]$1="$$1"
94 elif test -n "$PKG_CONFIG"; then
95    PKG_CHECK_EXISTS([$3],
96                     [pkg_cv_[]$1=`$PKG_CONFIG --[]$2 "$3" 2>/dev/null`],
97                     [pkg_failed=yes])
98 else
99    pkg_failed=untried
100fi[]dnl
101])# _PKG_CONFIG
102
103# _PKG_SHORT_ERRORS_SUPPORTED
104# -----------------------------
105AC_DEFUN([_PKG_SHORT_ERRORS_SUPPORTED],
106[AC_REQUIRE([PKG_PROG_PKG_CONFIG])
107if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then
108        _pkg_short_errors_supported=yes
109else
110        _pkg_short_errors_supported=no
111fi[]dnl
112])# _PKG_SHORT_ERRORS_SUPPORTED
113
114
115# PKG_CHECK_MODULES(VARIABLE-PREFIX, MODULES, [ACTION-IF-FOUND],
116# [ACTION-IF-NOT-FOUND])
117#
118#
119# Note that if there is a possibility the first call to
120# PKG_CHECK_MODULES might not happen, you should be sure to include an
121# explicit call to PKG_PROG_PKG_CONFIG in your configure.ac
122#
123#
124# --------------------------------------------------------------
125AC_DEFUN([PKG_CHECK_MODULES],
126[AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl
127AC_ARG_VAR([$1][_CFLAGS], [C compiler flags for $1, overriding pkg-config])dnl
128AC_ARG_VAR([$1][_LIBS], [linker flags for $1, overriding pkg-config])dnl
129
130pkg_failed=no
131AC_MSG_CHECKING([for $1])
132
133_PKG_CONFIG([$1][_CFLAGS], [cflags], [$2])
134_PKG_CONFIG([$1][_LIBS], [libs], [$2])
135
136m4_define([_PKG_TEXT], [Alternatively, you may set the environment variables $1[]_CFLAGS
137and $1[]_LIBS to avoid the need to call pkg-config.
138See the pkg-config man page for more details.])
139
140if test $pkg_failed = yes; then
141        AC_MSG_RESULT([no])
142        _PKG_SHORT_ERRORS_SUPPORTED
143        if test $_pkg_short_errors_supported = yes; then
144                $1[]_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors "$2" 2>&1`
145        else
146                $1[]_PKG_ERRORS=`$PKG_CONFIG --print-errors "$2" 2>&1`
147        fi
148        # Put the nasty error message in config.log where it belongs
149        echo "$$1[]_PKG_ERRORS" >&AS_MESSAGE_LOG_FD
150
151        m4_default([$4], [AC_MSG_ERROR(
152[Package requirements ($2) were not met:
153
154$$1_PKG_ERRORS
155
156Consider adjusting the PKG_CONFIG_PATH environment variable if you
157installed software in a non-standard prefix.
158
159_PKG_TEXT])dnl
160        ])
161elif test $pkg_failed = untried; then
162        AC_MSG_RESULT([no])
163        m4_default([$4], [AC_MSG_FAILURE(
164[The pkg-config script could not be found or is too old.  Make sure it
165is in your PATH or set the PKG_CONFIG environment variable to the full
166path to pkg-config.
167
168_PKG_TEXT
169
170To get pkg-config, see <http://pkg-config.freedesktop.org/>.])dnl
171        ])
172else
173        $1[]_CFLAGS=$pkg_cv_[]$1[]_CFLAGS
174        $1[]_LIBS=$pkg_cv_[]$1[]_LIBS
175        AC_MSG_RESULT([yes])
176        $3
177fi[]dnl
178])# PKG_CHECK_MODULES
179
180# Copyright (C) 2002, 2003, 2005, 2006, 2007, 2008  Free Software Foundation, Inc.
181#
182# This file is free software; the Free Software Foundation
183# gives unlimited permission to copy and/or distribute it,
184# with or without modifications, as long as this notice is preserved.
185
186# AM_AUTOMAKE_VERSION(VERSION)
187# ----------------------------
188# Automake X.Y traces this macro to ensure aclocal.m4 has been
189# generated from the m4 files accompanying Automake X.Y.
190# (This private macro should not be called outside this file.)
191AC_DEFUN([AM_AUTOMAKE_VERSION],
192[am__api_version='1.11'
193dnl Some users find AM_AUTOMAKE_VERSION and mistake it for a way to
194dnl require some minimum version.  Point them to the right macro.
195m4_if([$1], [1.11.1], [],
196      [AC_FATAL([Do not call $0, use AM_INIT_AUTOMAKE([$1]).])])dnl
197])
198
199# _AM_AUTOCONF_VERSION(VERSION)
200# -----------------------------
201# aclocal traces this macro to find the Autoconf version.
202# This is a private macro too.  Using m4_define simplifies
203# the logic in aclocal, which can simply ignore this definition.
204m4_define([_AM_AUTOCONF_VERSION], [])
205
206# AM_SET_CURRENT_AUTOMAKE_VERSION
207# -------------------------------
208# Call AM_AUTOMAKE_VERSION and AM_AUTOMAKE_VERSION so they can be traced.
209# This function is AC_REQUIREd by AM_INIT_AUTOMAKE.
210AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION],
211[AM_AUTOMAKE_VERSION([1.11.1])dnl
212m4_ifndef([AC_AUTOCONF_VERSION],
213  [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl
214_AM_AUTOCONF_VERSION(m4_defn([AC_AUTOCONF_VERSION]))])
215
216# AM_AUX_DIR_EXPAND                                         -*- Autoconf -*-
217
218# Copyright (C) 2001, 2003, 2005  Free Software Foundation, Inc.
219#
220# This file is free software; the Free Software Foundation
221# gives unlimited permission to copy and/or distribute it,
222# with or without modifications, as long as this notice is preserved.
223
224# For projects using AC_CONFIG_AUX_DIR([foo]), Autoconf sets
225# $ac_aux_dir to `$srcdir/foo'.  In other projects, it is set to
226# `$srcdir', `$srcdir/..', or `$srcdir/../..'.
227#
228# Of course, Automake must honor this variable whenever it calls a
229# tool from the auxiliary directory.  The problem is that $srcdir (and
230# therefore $ac_aux_dir as well) can be either absolute or relative,
231# depending on how configure is run.  This is pretty annoying, since
232# it makes $ac_aux_dir quite unusable in subdirectories: in the top
233# source directory, any form will work fine, but in subdirectories a
234# relative path needs to be adjusted first.
235#
236# $ac_aux_dir/missing
237#    fails when called from a subdirectory if $ac_aux_dir is relative
238# $top_srcdir/$ac_aux_dir/missing
239#    fails if $ac_aux_dir is absolute,
240#    fails when called from a subdirectory in a VPATH build with
241#          a relative $ac_aux_dir
242#
243# The reason of the latter failure is that $top_srcdir and $ac_aux_dir
244# are both prefixed by $srcdir.  In an in-source build this is usually
245# harmless because $srcdir is `.', but things will broke when you
246# start a VPATH build or use an absolute $srcdir.
247#
248# So we could use something similar to $top_srcdir/$ac_aux_dir/missing,
249# iff we strip the leading $srcdir from $ac_aux_dir.  That would be:
250#   am_aux_dir='\$(top_srcdir)/'`expr "$ac_aux_dir" : "$srcdir//*\(.*\)"`
251# and then we would define $MISSING as
252#   MISSING="\${SHELL} $am_aux_dir/missing"
253# This will work as long as MISSING is not called from configure, because
254# unfortunately $(top_srcdir) has no meaning in configure.
255# However there are other variables, like CC, which are often used in
256# configure, and could therefore not use this "fixed" $ac_aux_dir.
257#
258# Another solution, used here, is to always expand $ac_aux_dir to an
259# absolute PATH.  The drawback is that using absolute paths prevent a
260# configured tree to be moved without reconfiguration.
261
262AC_DEFUN([AM_AUX_DIR_EXPAND],
263[dnl Rely on autoconf to set up CDPATH properly.
264AC_PREREQ([2.50])dnl
265# expand $ac_aux_dir to an absolute path
266am_aux_dir=`cd $ac_aux_dir && pwd`
267])
268
269# AM_CONDITIONAL                                            -*- Autoconf -*-
270
271# Copyright (C) 1997, 2000, 2001, 2003, 2004, 2005, 2006, 2008
272# Free Software Foundation, Inc.
273#
274# This file is free software; the Free Software Foundation
275# gives unlimited permission to copy and/or distribute it,
276# with or without modifications, as long as this notice is preserved.
277
278# serial 9
279
280# AM_CONDITIONAL(NAME, SHELL-CONDITION)
281# -------------------------------------
282# Define a conditional.
283AC_DEFUN([AM_CONDITIONAL],
284[AC_PREREQ(2.52)dnl
285 ifelse([$1], [TRUE],  [AC_FATAL([$0: invalid condition: $1])],
286        [$1], [FALSE], [AC_FATAL([$0: invalid condition: $1])])dnl
287AC_SUBST([$1_TRUE])dnl
288AC_SUBST([$1_FALSE])dnl
289_AM_SUBST_NOTMAKE([$1_TRUE])dnl
290_AM_SUBST_NOTMAKE([$1_FALSE])dnl
291m4_define([_AM_COND_VALUE_$1], [$2])dnl
292if $2; then
293  $1_TRUE=
294  $1_FALSE='#'
295else
296  $1_TRUE='#'
297  $1_FALSE=
298fi
299AC_CONFIG_COMMANDS_PRE(
300[if test -z "${$1_TRUE}" && test -z "${$1_FALSE}"; then
301  AC_MSG_ERROR([[conditional "$1" was never defined.
302Usually this means the macro was only invoked conditionally.]])
303fi])])
304
305# Do all the work for Automake.                             -*- Autoconf -*-
306
307# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
308# 2005, 2006, 2008, 2009 Free Software Foundation, Inc.
309#
310# This file is free software; the Free Software Foundation
311# gives unlimited permission to copy and/or distribute it,
312# with or without modifications, as long as this notice is preserved.
313
314# serial 16
315
316# This macro actually does too much.  Some checks are only needed if
317# your package does certain things.  But this isn't really a big deal.
318
319# AM_INIT_AUTOMAKE(PACKAGE, VERSION, [NO-DEFINE])
320# AM_INIT_AUTOMAKE([OPTIONS])
321# -----------------------------------------------
322# The call with PACKAGE and VERSION arguments is the old style
323# call (pre autoconf-2.50), which is being phased out.  PACKAGE
324# and VERSION should now be passed to AC_INIT and removed from
325# the call to AM_INIT_AUTOMAKE.
326# We support both call styles for the transition.  After
327# the next Automake release, Autoconf can make the AC_INIT
328# arguments mandatory, and then we can depend on a new Autoconf
329# release and drop the old call support.
330AC_DEFUN([AM_INIT_AUTOMAKE],
331[AC_PREREQ([2.62])dnl
332dnl Autoconf wants to disallow AM_ names.  We explicitly allow
333dnl the ones we care about.
334m4_pattern_allow([^AM_[A-Z]+FLAGS$])dnl
335AC_REQUIRE([AM_SET_CURRENT_AUTOMAKE_VERSION])dnl
336AC_REQUIRE([AC_PROG_INSTALL])dnl
337if test "`cd $srcdir && pwd`" != "`pwd`"; then
338  # Use -I$(srcdir) only when $(srcdir) != ., so that make's output
339  # is not polluted with repeated "-I."
340  AC_SUBST([am__isrc], [' -I$(srcdir)'])_AM_SUBST_NOTMAKE([am__isrc])dnl
341  # test to see if srcdir already configured
342  if test -f $srcdir/config.status; then
343    AC_MSG_ERROR([source directory already configured; run "make distclean" there first])
344  fi
345fi
346
347# test whether we have cygpath
348if test -z "$CYGPATH_W"; then
349  if (cygpath --version) >/dev/null 2>/dev/null; then
350    CYGPATH_W='cygpath -w'
351  else
352    CYGPATH_W=echo
353  fi
354fi
355AC_SUBST([CYGPATH_W])
356
357# Define the identity of the package.
358dnl Distinguish between old-style and new-style calls.
359m4_ifval([$2],
360[m4_ifval([$3], [_AM_SET_OPTION([no-define])])dnl
361 AC_SUBST([PACKAGE], [$1])dnl
362 AC_SUBST([VERSION], [$2])],
363[_AM_SET_OPTIONS([$1])dnl
364dnl Diagnose old-style AC_INIT with new-style AM_AUTOMAKE_INIT.
365m4_if(m4_ifdef([AC_PACKAGE_NAME], 1)m4_ifdef([AC_PACKAGE_VERSION], 1), 11,,
366  [m4_fatal([AC_INIT should be called with package and version arguments])])dnl
367 AC_SUBST([PACKAGE], ['AC_PACKAGE_TARNAME'])dnl
368 AC_SUBST([VERSION], ['AC_PACKAGE_VERSION'])])dnl
369
370_AM_IF_OPTION([no-define],,
371[AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE", [Name of package])
372 AC_DEFINE_UNQUOTED(VERSION, "$VERSION", [Version number of package])])dnl
373
374# Some tools Automake needs.
375AC_REQUIRE([AM_SANITY_CHECK])dnl
376AC_REQUIRE([AC_ARG_PROGRAM])dnl
377AM_MISSING_PROG(ACLOCAL, aclocal-${am__api_version})
378AM_MISSING_PROG(AUTOCONF, autoconf)
379AM_MISSING_PROG(AUTOMAKE, automake-${am__api_version})
380AM_MISSING_PROG(AUTOHEADER, autoheader)
381AM_MISSING_PROG(MAKEINFO, makeinfo)
382AC_REQUIRE([AM_PROG_INSTALL_SH])dnl
383AC_REQUIRE([AM_PROG_INSTALL_STRIP])dnl
384AC_REQUIRE([AM_PROG_MKDIR_P])dnl
385# We need awk for the "check" target.  The system "awk" is bad on
386# some platforms.
387AC_REQUIRE([AC_PROG_AWK])dnl
388AC_REQUIRE([AC_PROG_MAKE_SET])dnl
389AC_REQUIRE([AM_SET_LEADING_DOT])dnl
390_AM_IF_OPTION([tar-ustar], [_AM_PROG_TAR([ustar])],
391              [_AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])],
392                             [_AM_PROG_TAR([v7])])])
393_AM_IF_OPTION([no-dependencies],,
394[AC_PROVIDE_IFELSE([AC_PROG_CC],
395                  [_AM_DEPENDENCIES(CC)],
396                  [define([AC_PROG_CC],
397                          defn([AC_PROG_CC])[_AM_DEPENDENCIES(CC)])])dnl
398AC_PROVIDE_IFELSE([AC_PROG_CXX],
399                  [_AM_DEPENDENCIES(CXX)],
400                  [define([AC_PROG_CXX],
401                          defn([AC_PROG_CXX])[_AM_DEPENDENCIES(CXX)])])dnl
402AC_PROVIDE_IFELSE([AC_PROG_OBJC],
403                  [_AM_DEPENDENCIES(OBJC)],
404                  [define([AC_PROG_OBJC],
405                          defn([AC_PROG_OBJC])[_AM_DEPENDENCIES(OBJC)])])dnl
406])
407_AM_IF_OPTION([silent-rules], [AC_REQUIRE([AM_SILENT_RULES])])dnl
408dnl The `parallel-tests' driver may need to know about EXEEXT, so add the
409dnl `am__EXEEXT' conditional if _AM_COMPILER_EXEEXT was seen.  This macro
410dnl is hooked onto _AC_COMPILER_EXEEXT early, see below.
411AC_CONFIG_COMMANDS_PRE(dnl
412[m4_provide_if([_AM_COMPILER_EXEEXT],
413  [AM_CONDITIONAL([am__EXEEXT], [test -n "$EXEEXT"])])])dnl
414])
415
416dnl Hook into `_AC_COMPILER_EXEEXT' early to learn its expansion.  Do not
417dnl add the conditional right here, as _AC_COMPILER_EXEEXT may be further
418dnl mangled by Autoconf and run in a shell conditional statement.
419m4_define([_AC_COMPILER_EXEEXT],
420m4_defn([_AC_COMPILER_EXEEXT])[m4_provide([_AM_COMPILER_EXEEXT])])
421
422
423# When config.status generates a header, we must update the stamp-h file.
424# This file resides in the same directory as the config header
425# that is generated.  The stamp files are numbered to have different names.
426
427# Autoconf calls _AC_AM_CONFIG_HEADER_HOOK (when defined) in the
428# loop where config.status creates the headers, so we can generate
429# our stamp files there.
430AC_DEFUN([_AC_AM_CONFIG_HEADER_HOOK],
431[# Compute $1's index in $config_headers.
432_am_arg=$1
433_am_stamp_count=1
434for _am_header in $config_headers :; do
435  case $_am_header in
436    $_am_arg | $_am_arg:* )
437      break ;;
438    * )
439      _am_stamp_count=`expr $_am_stamp_count + 1` ;;
440  esac
441done
442echo "timestamp for $_am_arg" >`AS_DIRNAME(["$_am_arg"])`/stamp-h[]$_am_stamp_count])
443
444# Copyright (C) 2001, 2003, 2005, 2008  Free Software Foundation, Inc.
445#
446# This file is free software; the Free Software Foundation
447# gives unlimited permission to copy and/or distribute it,
448# with or without modifications, as long as this notice is preserved.
449
450# AM_PROG_INSTALL_SH
451# ------------------
452# Define $install_sh.
453AC_DEFUN([AM_PROG_INSTALL_SH],
454[AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
455if test x"${install_sh}" != xset; then
456  case $am_aux_dir in
457  *\ * | *\     *)
458    install_sh="\${SHELL} '$am_aux_dir/install-sh'" ;;
459  *)
460    install_sh="\${SHELL} $am_aux_dir/install-sh"
461  esac
462fi
463AC_SUBST(install_sh)])
464
465# Copyright (C) 2003, 2005  Free Software Foundation, Inc.
466#
467# This file is free software; the Free Software Foundation
468# gives unlimited permission to copy and/or distribute it,
469# with or without modifications, as long as this notice is preserved.
470
471# serial 2
472
473# Check whether the underlying file-system supports filenames
474# with a leading dot.  For instance MS-DOS doesn't.
475AC_DEFUN([AM_SET_LEADING_DOT],
476[rm -rf .tst 2>/dev/null
477mkdir .tst 2>/dev/null
478if test -d .tst; then
479  am__leading_dot=.
480else
481  am__leading_dot=_
482fi
483rmdir .tst 2>/dev/null
484AC_SUBST([am__leading_dot])])
485
486# Add --enable-maintainer-mode option to configure.         -*- Autoconf -*-
487# From Jim Meyering
488
489# Copyright (C) 1996, 1998, 2000, 2001, 2002, 2003, 2004, 2005, 2008
490# Free Software Foundation, Inc.
491#
492# This file is free software; the Free Software Foundation
493# gives unlimited permission to copy and/or distribute it,
494# with or without modifications, as long as this notice is preserved.
495
496# serial 5
497
498# AM_MAINTAINER_MODE([DEFAULT-MODE])
499# ----------------------------------
500# Control maintainer-specific portions of Makefiles.
501# Default is to disable them, unless `enable' is passed literally.
502# For symmetry, `disable' may be passed as well.  Anyway, the user
503# can override the default with the --enable/--disable switch.
504AC_DEFUN([AM_MAINTAINER_MODE],
505[m4_case(m4_default([$1], [disable]),
506       [enable], [m4_define([am_maintainer_other], [disable])],
507       [disable], [m4_define([am_maintainer_other], [enable])],
508       [m4_define([am_maintainer_other], [enable])
509        m4_warn([syntax], [unexpected argument to AM@&t@_MAINTAINER_MODE: $1])])
510AC_MSG_CHECKING([whether to am_maintainer_other maintainer-specific portions of Makefiles])
511  dnl maintainer-mode's default is 'disable' unless 'enable' is passed
512  AC_ARG_ENABLE([maintainer-mode],
513[  --][am_maintainer_other][-maintainer-mode  am_maintainer_other make rules and dependencies not useful
514                          (and sometimes confusing) to the casual installer],
515      [USE_MAINTAINER_MODE=$enableval],
516      [USE_MAINTAINER_MODE=]m4_if(am_maintainer_other, [enable], [no], [yes]))
517  AC_MSG_RESULT([$USE_MAINTAINER_MODE])
518  AM_CONDITIONAL([MAINTAINER_MODE], [test $USE_MAINTAINER_MODE = yes])
519  MAINT=$MAINTAINER_MODE_TRUE
520  AC_SUBST([MAINT])dnl
521]
522)
523
524AU_DEFUN([jm_MAINTAINER_MODE], [AM_MAINTAINER_MODE])
525
526# Fake the existence of programs that GNU maintainers use.  -*- Autoconf -*-
527
528# Copyright (C) 1997, 1999, 2000, 2001, 2003, 2004, 2005, 2008
529# Free Software Foundation, Inc.
530#
531# This file is free software; the Free Software Foundation
532# gives unlimited permission to copy and/or distribute it,
533# with or without modifications, as long as this notice is preserved.
534
535# serial 6
536
537# AM_MISSING_PROG(NAME, PROGRAM)
538# ------------------------------
539AC_DEFUN([AM_MISSING_PROG],
540[AC_REQUIRE([AM_MISSING_HAS_RUN])
541$1=${$1-"${am_missing_run}$2"}
542AC_SUBST($1)])
543
544
545# AM_MISSING_HAS_RUN
546# ------------------
547# Define MISSING if not defined so far and test if it supports --run.
548# If it does, set am_missing_run to use it, otherwise, to nothing.
549AC_DEFUN([AM_MISSING_HAS_RUN],
550[AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
551AC_REQUIRE_AUX_FILE([missing])dnl
552if test x"${MISSING+set}" != xset; then
553  case $am_aux_dir in
554  *\ * | *\     *)
555    MISSING="\${SHELL} \"$am_aux_dir/missing\"" ;;
556  *)
557    MISSING="\${SHELL} $am_aux_dir/missing" ;;
558  esac
559fi
560# Use eval to expand $SHELL
561if eval "$MISSING --run true"; then
562  am_missing_run="$MISSING --run "
563else
564  am_missing_run=
565  AC_MSG_WARN([`missing' script is too old or missing])
566fi
567])
568
569# Copyright (C) 2003, 2004, 2005, 2006  Free Software Foundation, Inc.
570#
571# This file is free software; the Free Software Foundation
572# gives unlimited permission to copy and/or distribute it,
573# with or without modifications, as long as this notice is preserved.
574
575# AM_PROG_MKDIR_P
576# ---------------
577# Check for `mkdir -p'.
578AC_DEFUN([AM_PROG_MKDIR_P],
579[AC_PREREQ([2.60])dnl
580AC_REQUIRE([AC_PROG_MKDIR_P])dnl
581dnl Automake 1.8 to 1.9.6 used to define mkdir_p.  We now use MKDIR_P,
582dnl while keeping a definition of mkdir_p for backward compatibility.
583dnl @MKDIR_P@ is magic: AC_OUTPUT adjusts its value for each Makefile.
584dnl However we cannot define mkdir_p as $(MKDIR_P) for the sake of
585dnl Makefile.ins that do not define MKDIR_P, so we do our own
586dnl adjustment using top_builddir (which is defined more often than
587dnl MKDIR_P).
588AC_SUBST([mkdir_p], ["$MKDIR_P"])dnl
589case $mkdir_p in
590  [[\\/$]]* | ?:[[\\/]]*) ;;
591  */*) mkdir_p="\$(top_builddir)/$mkdir_p" ;;
592esac
593])
594
595# Helper functions for option handling.                     -*- Autoconf -*-
596
597# Copyright (C) 2001, 2002, 2003, 2005, 2008  Free Software Foundation, Inc.
598#
599# This file is free software; the Free Software Foundation
600# gives unlimited permission to copy and/or distribute it,
601# with or without modifications, as long as this notice is preserved.
602
603# serial 4
604
605# _AM_MANGLE_OPTION(NAME)
606# -----------------------
607AC_DEFUN([_AM_MANGLE_OPTION],
608[[_AM_OPTION_]m4_bpatsubst($1, [[^a-zA-Z0-9_]], [_])])
609
610# _AM_SET_OPTION(NAME)
611# ------------------------------
612# Set option NAME.  Presently that only means defining a flag for this option.
613AC_DEFUN([_AM_SET_OPTION],
614[m4_define(_AM_MANGLE_OPTION([$1]), 1)])
615
616# _AM_SET_OPTIONS(OPTIONS)
617# ----------------------------------
618# OPTIONS is a space-separated list of Automake options.
619AC_DEFUN([_AM_SET_OPTIONS],
620[m4_foreach_w([_AM_Option], [$1], [_AM_SET_OPTION(_AM_Option)])])
621
622# _AM_IF_OPTION(OPTION, IF-SET, [IF-NOT-SET])
623# -------------------------------------------
624# Execute IF-SET if OPTION is set, IF-NOT-SET otherwise.
625AC_DEFUN([_AM_IF_OPTION],
626[m4_ifset(_AM_MANGLE_OPTION([$1]), [$2], [$3])])
627
628# Copyright (C) 2001, 2003, 2005  Free Software Foundation, Inc.
629#
630# This file is free software; the Free Software Foundation
631# gives unlimited permission to copy and/or distribute it,
632# with or without modifications, as long as this notice is preserved.
633
634# AM_RUN_LOG(COMMAND)
635# -------------------
636# Run COMMAND, save the exit status in ac_status, and log it.
637# (This has been adapted from Autoconf's _AC_RUN_LOG macro.)
638AC_DEFUN([AM_RUN_LOG],
639[{ echo "$as_me:$LINENO: $1" >&AS_MESSAGE_LOG_FD
640   ($1) >&AS_MESSAGE_LOG_FD 2>&AS_MESSAGE_LOG_FD
641   ac_status=$?
642   echo "$as_me:$LINENO: \$? = $ac_status" >&AS_MESSAGE_LOG_FD
643   (exit $ac_status); }])
644
645# Check to make sure that the build environment is sane.    -*- Autoconf -*-
646
647# Copyright (C) 1996, 1997, 2000, 2001, 2003, 2005, 2008
648# Free Software Foundation, Inc.
649#
650# This file is free software; the Free Software Foundation
651# gives unlimited permission to copy and/or distribute it,
652# with or without modifications, as long as this notice is preserved.
653
654# serial 5
655
656# AM_SANITY_CHECK
657# ---------------
658AC_DEFUN([AM_SANITY_CHECK],
659[AC_MSG_CHECKING([whether build environment is sane])
660# Just in case
661sleep 1
662echo timestamp > conftest.file
663# Reject unsafe characters in $srcdir or the absolute working directory
664# name.  Accept space and tab only in the latter.
665am_lf='
666'
667case `pwd` in
668  *[[\\\"\#\$\&\'\`$am_lf]]*)
669    AC_MSG_ERROR([unsafe absolute working directory name]);;
670esac
671case $srcdir in
672  *[[\\\"\#\$\&\'\`$am_lf\ \    ]]*)
673    AC_MSG_ERROR([unsafe srcdir value: `$srcdir']);;
674esac
675
676# Do `set' in a subshell so we don't clobber the current shell's
677# arguments.  Must try -L first in case configure is actually a
678# symlink; some systems play weird games with the mod time of symlinks
679# (eg FreeBSD returns the mod time of the symlink's containing
680# directory).
681if (
682   set X `ls -Lt "$srcdir/configure" conftest.file 2> /dev/null`
683   if test "$[*]" = "X"; then
684      # -L didn't work.
685      set X `ls -t "$srcdir/configure" conftest.file`
686   fi
687   rm -f conftest.file
688   if test "$[*]" != "X $srcdir/configure conftest.file" \
689      && test "$[*]" != "X conftest.file $srcdir/configure"; then
690
691      # If neither matched, then we have a broken ls.  This can happen
692      # if, for instance, CONFIG_SHELL is bash and it inherits a
693      # broken ls alias from the environment.  This has actually
694      # happened.  Such a system could not be considered "sane".
695      AC_MSG_ERROR([ls -t appears to fail.  Make sure there is not a broken
696alias in your environment])
697   fi
698
699   test "$[2]" = conftest.file
700   )
701then
702   # Ok.
703   :
704else
705   AC_MSG_ERROR([newly created file is older than distributed files!
706Check your system clock])
707fi
708AC_MSG_RESULT(yes)])
709
710# Copyright (C) 2001, 2003, 2005  Free Software Foundation, Inc.
711#
712# This file is free software; the Free Software Foundation
713# gives unlimited permission to copy and/or distribute it,
714# with or without modifications, as long as this notice is preserved.
715
716# AM_PROG_INSTALL_STRIP
717# ---------------------
718# One issue with vendor `install' (even GNU) is that you can't
719# specify the program used to strip binaries.  This is especially
720# annoying in cross-compiling environments, where the build's strip
721# is unlikely to handle the host's binaries.
722# Fortunately install-sh will honor a STRIPPROG variable, so we
723# always use install-sh in `make install-strip', and initialize
724# STRIPPROG with the value of the STRIP variable (set by the user).
725AC_DEFUN([AM_PROG_INSTALL_STRIP],
726[AC_REQUIRE([AM_PROG_INSTALL_SH])dnl
727# Installed binaries are usually stripped using `strip' when the user
728# run `make install-strip'.  However `strip' might not be the right
729# tool to use in cross-compilation environments, therefore Automake
730# will honor the `STRIP' environment variable to overrule this program.
731dnl Don't test for $cross_compiling = yes, because it might be `maybe'.
732if test "$cross_compiling" != no; then
733  AC_CHECK_TOOL([STRIP], [strip], :)
734fi
735INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s"
736AC_SUBST([INSTALL_STRIP_PROGRAM])])
737
738# Copyright (C) 2006, 2008  Free Software Foundation, Inc.
739#
740# This file is free software; the Free Software Foundation
741# gives unlimited permission to copy and/or distribute it,
742# with or without modifications, as long as this notice is preserved.
743
744# serial 2
745
746# _AM_SUBST_NOTMAKE(VARIABLE)
747# ---------------------------
748# Prevent Automake from outputting VARIABLE = @VARIABLE@ in Makefile.in.
749# This macro is traced by Automake.
750AC_DEFUN([_AM_SUBST_NOTMAKE])
751
752# AM_SUBST_NOTMAKE(VARIABLE)
753# ---------------------------
754# Public sister of _AM_SUBST_NOTMAKE.
755AC_DEFUN([AM_SUBST_NOTMAKE], [_AM_SUBST_NOTMAKE($@)])
756
757# Check how to create a tarball.                            -*- Autoconf -*-
758
759# Copyright (C) 2004, 2005  Free Software Foundation, Inc.
760#
761# This file is free software; the Free Software Foundation
762# gives unlimited permission to copy and/or distribute it,
763# with or without modifications, as long as this notice is preserved.
764
765# serial 2
766
767# _AM_PROG_TAR(FORMAT)
768# --------------------
769# Check how to create a tarball in format FORMAT.
770# FORMAT should be one of `v7', `ustar', or `pax'.
771#
772# Substitute a variable $(am__tar) that is a command
773# writing to stdout a FORMAT-tarball containing the directory
774# $tardir.
775#     tardir=directory && $(am__tar) > result.tar
776#
777# Substitute a variable $(am__untar) that extract such
778# a tarball read from stdin.
779#     $(am__untar) < result.tar
780AC_DEFUN([_AM_PROG_TAR],
781[# Always define AMTAR for backward compatibility.
782AM_MISSING_PROG([AMTAR], [tar])
783m4_if([$1], [v7],
784     [am__tar='${AMTAR} chof - "$$tardir"'; am__untar='${AMTAR} xf -'],
785     [m4_case([$1], [ustar],, [pax],,
786              [m4_fatal([Unknown tar format])])
787AC_MSG_CHECKING([how to create a $1 tar archive])
788# Loop over all known methods to create a tar archive until one works.
789_am_tools='gnutar m4_if([$1], [ustar], [plaintar]) pax cpio none'
790_am_tools=${am_cv_prog_tar_$1-$_am_tools}
791# Do not fold the above two line into one, because Tru64 sh and
792# Solaris sh will not grok spaces in the rhs of `-'.
793for _am_tool in $_am_tools
794do
795  case $_am_tool in
796  gnutar)
797    for _am_tar in tar gnutar gtar;
798    do
799      AM_RUN_LOG([$_am_tar --version]) && break
800    done
801    am__tar="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$$tardir"'
802    am__tar_="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$tardir"'
803    am__untar="$_am_tar -xf -"
804    ;;
805  plaintar)
806    # Must skip GNU tar: if it does not support --format= it doesn't create
807    # ustar tarball either.
808    (tar --version) >/dev/null 2>&1 && continue
809    am__tar='tar chf - "$$tardir"'
810    am__tar_='tar chf - "$tardir"'
811    am__untar='tar xf -'
812    ;;
813  pax)
814    am__tar='pax -L -x $1 -w "$$tardir"'
815    am__tar_='pax -L -x $1 -w "$tardir"'
816    am__untar='pax -r'
817    ;;
818  cpio)
819    am__tar='find "$$tardir" -print | cpio -o -H $1 -L'
820    am__tar_='find "$tardir" -print | cpio -o -H $1 -L'
821    am__untar='cpio -i -H $1 -d'
822    ;;
823  none)
824    am__tar=false
825    am__tar_=false
826    am__untar=false
827    ;;
828  esac
829
830  # If the value was cached, stop now.  We just wanted to have am__tar
831  # and am__untar set.
832  test -n "${am_cv_prog_tar_$1}" && break
833
834  # tar/untar a dummy directory, and stop if the command works
835  rm -rf conftest.dir
836  mkdir conftest.dir
837  echo GrepMe > conftest.dir/file
838  AM_RUN_LOG([tardir=conftest.dir && eval $am__tar_ >conftest.tar])
839  rm -rf conftest.dir
840  if test -s conftest.tar; then
841    AM_RUN_LOG([$am__untar <conftest.tar])
842    grep GrepMe conftest.dir/file >/dev/null 2>&1 && break
843  fi
844done
845rm -rf conftest.dir
846
847AC_CACHE_VAL([am_cv_prog_tar_$1], [am_cv_prog_tar_$1=$_am_tool])
848AC_MSG_RESULT([$am_cv_prog_tar_$1])])
849AC_SUBST([am__tar])
850AC_SUBST([am__untar])
851]) # _AM_PROG_TAR
852
Note: See TracBrowser for help on using the repository browser.