]> sourceware.org Git - systemtap.git/blob - aclocal.m4
a261aff3b517fba4b54d4e7e92cbd86128c41754
[systemtap.git] / aclocal.m4
1 # generated automatically by aclocal 1.15 -*- Autoconf -*-
2
3 # Copyright (C) 1996-2014 Free Software Foundation, Inc.
4
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 m4_ifndef([AC_CONFIG_MACRO_DIRS], [m4_defun([_AM_CONFIG_MACRO_DIRS], [])m4_defun([AC_CONFIG_MACRO_DIRS], [_AM_CONFIG_MACRO_DIRS($@)])])
15 m4_ifndef([AC_AUTOCONF_VERSION],
16 [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl
17 m4_if(m4_defn([AC_AUTOCONF_VERSION]), [2.69],,
18 [m4_warning([this file was generated for autoconf 2.69.
19 You have another version of autoconf. It may work, but is not guaranteed to.
20 If you have problems, you may need to regenerate the build system entirely.
21 To do so, use the procedure documented by the package, typically 'autoreconf'.])])
22
23 # intlmacosx.m4 serial 5 (gettext-0.18.2)
24 dnl Copyright (C) 2004-2014 Free Software Foundation, Inc.
25 dnl This file is free software; the Free Software Foundation
26 dnl gives unlimited permission to copy and/or distribute it,
27 dnl with or without modifications, as long as this notice is preserved.
28 dnl
29 dnl This file can be used in projects which are not available under
30 dnl the GNU General Public License or the GNU Library General Public
31 dnl License but which still want to provide support for the GNU gettext
32 dnl functionality.
33 dnl Please note that the actual code of the GNU gettext library is covered
34 dnl by the GNU Library General Public License, and the rest of the GNU
35 dnl gettext package is covered by the GNU General Public License.
36 dnl They are *not* in the public domain.
37
38 dnl Checks for special options needed on Mac OS X.
39 dnl Defines INTL_MACOSX_LIBS.
40 AC_DEFUN([gt_INTL_MACOSX],
41 [
42 dnl Check for API introduced in Mac OS X 10.2.
43 AC_CACHE_CHECK([for CFPreferencesCopyAppValue],
44 [gt_cv_func_CFPreferencesCopyAppValue],
45 [gt_save_LIBS="$LIBS"
46 LIBS="$LIBS -Wl,-framework -Wl,CoreFoundation"
47 AC_LINK_IFELSE(
48 [AC_LANG_PROGRAM(
49 [[#include <CoreFoundation/CFPreferences.h>]],
50 [[CFPreferencesCopyAppValue(NULL, NULL)]])],
51 [gt_cv_func_CFPreferencesCopyAppValue=yes],
52 [gt_cv_func_CFPreferencesCopyAppValue=no])
53 LIBS="$gt_save_LIBS"])
54 if test $gt_cv_func_CFPreferencesCopyAppValue = yes; then
55 AC_DEFINE([HAVE_CFPREFERENCESCOPYAPPVALUE], [1],
56 [Define to 1 if you have the Mac OS X function CFPreferencesCopyAppValue in the CoreFoundation framework.])
57 fi
58 dnl Check for API introduced in Mac OS X 10.3.
59 AC_CACHE_CHECK([for CFLocaleCopyCurrent], [gt_cv_func_CFLocaleCopyCurrent],
60 [gt_save_LIBS="$LIBS"
61 LIBS="$LIBS -Wl,-framework -Wl,CoreFoundation"
62 AC_LINK_IFELSE(
63 [AC_LANG_PROGRAM(
64 [[#include <CoreFoundation/CFLocale.h>]],
65 [[CFLocaleCopyCurrent();]])],
66 [gt_cv_func_CFLocaleCopyCurrent=yes],
67 [gt_cv_func_CFLocaleCopyCurrent=no])
68 LIBS="$gt_save_LIBS"])
69 if test $gt_cv_func_CFLocaleCopyCurrent = yes; then
70 AC_DEFINE([HAVE_CFLOCALECOPYCURRENT], [1],
71 [Define to 1 if you have the Mac OS X function CFLocaleCopyCurrent in the CoreFoundation framework.])
72 fi
73 INTL_MACOSX_LIBS=
74 if test $gt_cv_func_CFPreferencesCopyAppValue = yes || test $gt_cv_func_CFLocaleCopyCurrent = yes; then
75 INTL_MACOSX_LIBS="-Wl,-framework -Wl,CoreFoundation"
76 fi
77 AC_SUBST([INTL_MACOSX_LIBS])
78 ])
79
80 # pkg.m4 - Macros to locate and utilise pkg-config. -*- Autoconf -*-
81 # serial 1 (pkg-config-0.24)
82 #
83 # Copyright © 2004 Scott James Remnant <scott@netsplit.com>.
84 #
85 # This program is free software; you can redistribute it and/or modify
86 # it under the terms of the GNU General Public License as published by
87 # the Free Software Foundation; either version 2 of the License, or
88 # (at your option) any later version.
89 #
90 # This program is distributed in the hope that it will be useful, but
91 # WITHOUT ANY WARRANTY; without even the implied warranty of
92 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
93 # General Public License for more details.
94 #
95 # You should have received a copy of the GNU General Public License
96 # along with this program; if not, write to the Free Software
97 # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
98 #
99 # As a special exception to the GNU General Public License, if you
100 # distribute this file as part of a program that contains a
101 # configuration script generated by Autoconf, you may include it under
102 # the same distribution terms that you use for the rest of that program.
103
104 # PKG_PROG_PKG_CONFIG([MIN-VERSION])
105 # ----------------------------------
106 AC_DEFUN([PKG_PROG_PKG_CONFIG],
107 [m4_pattern_forbid([^_?PKG_[A-Z_]+$])
108 m4_pattern_allow([^PKG_CONFIG(_(PATH|LIBDIR|SYSROOT_DIR|ALLOW_SYSTEM_(CFLAGS|LIBS)))?$])
109 m4_pattern_allow([^PKG_CONFIG_(DISABLE_UNINSTALLED|TOP_BUILD_DIR|DEBUG_SPEW)$])
110 AC_ARG_VAR([PKG_CONFIG], [path to pkg-config utility])
111 AC_ARG_VAR([PKG_CONFIG_PATH], [directories to add to pkg-config's search path])
112 AC_ARG_VAR([PKG_CONFIG_LIBDIR], [path overriding pkg-config's built-in search path])
113
114 if test "x$ac_cv_env_PKG_CONFIG_set" != "xset"; then
115 AC_PATH_TOOL([PKG_CONFIG], [pkg-config])
116 fi
117 if test -n "$PKG_CONFIG"; then
118 _pkg_min_version=m4_default([$1], [0.9.0])
119 AC_MSG_CHECKING([pkg-config is at least version $_pkg_min_version])
120 if $PKG_CONFIG --atleast-pkgconfig-version $_pkg_min_version; then
121 AC_MSG_RESULT([yes])
122 else
123 AC_MSG_RESULT([no])
124 PKG_CONFIG=""
125 fi
126 fi[]dnl
127 ])# PKG_PROG_PKG_CONFIG
128
129 # PKG_CHECK_EXISTS(MODULES, [ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND])
130 #
131 # Check to see whether a particular set of modules exists. Similar
132 # to PKG_CHECK_MODULES(), but does not set variables or print errors.
133 #
134 # Please remember that m4 expands AC_REQUIRE([PKG_PROG_PKG_CONFIG])
135 # only at the first occurence in configure.ac, so if the first place
136 # it's called might be skipped (such as if it is within an "if", you
137 # have to call PKG_CHECK_EXISTS manually
138 # --------------------------------------------------------------
139 AC_DEFUN([PKG_CHECK_EXISTS],
140 [AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl
141 if test -n "$PKG_CONFIG" && \
142 AC_RUN_LOG([$PKG_CONFIG --exists --print-errors "$1"]); then
143 m4_default([$2], [:])
144 m4_ifvaln([$3], [else
145 $3])dnl
146 fi])
147
148 # _PKG_CONFIG([VARIABLE], [COMMAND], [MODULES])
149 # ---------------------------------------------
150 m4_define([_PKG_CONFIG],
151 [if test -n "$$1"; then
152 pkg_cv_[]$1="$$1"
153 elif test -n "$PKG_CONFIG"; then
154 PKG_CHECK_EXISTS([$3],
155 [pkg_cv_[]$1=`$PKG_CONFIG --[]$2 "$3" 2>/dev/null`
156 test "x$?" != "x0" && pkg_failed=yes ],
157 [pkg_failed=yes])
158 else
159 pkg_failed=untried
160 fi[]dnl
161 ])# _PKG_CONFIG
162
163 # _PKG_SHORT_ERRORS_SUPPORTED
164 # -----------------------------
165 AC_DEFUN([_PKG_SHORT_ERRORS_SUPPORTED],
166 [AC_REQUIRE([PKG_PROG_PKG_CONFIG])
167 if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then
168 _pkg_short_errors_supported=yes
169 else
170 _pkg_short_errors_supported=no
171 fi[]dnl
172 ])# _PKG_SHORT_ERRORS_SUPPORTED
173
174
175 # PKG_CHECK_MODULES(VARIABLE-PREFIX, MODULES, [ACTION-IF-FOUND],
176 # [ACTION-IF-NOT-FOUND])
177 #
178 #
179 # Note that if there is a possibility the first call to
180 # PKG_CHECK_MODULES might not happen, you should be sure to include an
181 # explicit call to PKG_PROG_PKG_CONFIG in your configure.ac
182 #
183 #
184 # --------------------------------------------------------------
185 AC_DEFUN([PKG_CHECK_MODULES],
186 [AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl
187 AC_ARG_VAR([$1][_CFLAGS], [C compiler flags for $1, overriding pkg-config])dnl
188 AC_ARG_VAR([$1][_LIBS], [linker flags for $1, overriding pkg-config])dnl
189
190 pkg_failed=no
191 AC_MSG_CHECKING([for $1])
192
193 _PKG_CONFIG([$1][_CFLAGS], [cflags], [$2])
194 _PKG_CONFIG([$1][_LIBS], [libs], [$2])
195
196 m4_define([_PKG_TEXT], [Alternatively, you may set the environment variables $1[]_CFLAGS
197 and $1[]_LIBS to avoid the need to call pkg-config.
198 See the pkg-config man page for more details.])
199
200 if test $pkg_failed = yes; then
201 AC_MSG_RESULT([no])
202 _PKG_SHORT_ERRORS_SUPPORTED
203 if test $_pkg_short_errors_supported = yes; then
204 $1[]_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "$2" 2>&1`
205 else
206 $1[]_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "$2" 2>&1`
207 fi
208 # Put the nasty error message in config.log where it belongs
209 echo "$$1[]_PKG_ERRORS" >&AS_MESSAGE_LOG_FD
210
211 m4_default([$4], [AC_MSG_ERROR(
212 [Package requirements ($2) were not met:
213
214 $$1_PKG_ERRORS
215
216 Consider adjusting the PKG_CONFIG_PATH environment variable if you
217 installed software in a non-standard prefix.
218
219 _PKG_TEXT])[]dnl
220 ])
221 elif test $pkg_failed = untried; then
222 AC_MSG_RESULT([no])
223 m4_default([$4], [AC_MSG_FAILURE(
224 [The pkg-config script could not be found or is too old. Make sure it
225 is in your PATH or set the PKG_CONFIG environment variable to the full
226 path to pkg-config.
227
228 _PKG_TEXT
229
230 To get pkg-config, see <http://pkg-config.freedesktop.org/>.])[]dnl
231 ])
232 else
233 $1[]_CFLAGS=$pkg_cv_[]$1[]_CFLAGS
234 $1[]_LIBS=$pkg_cv_[]$1[]_LIBS
235 AC_MSG_RESULT([yes])
236 $3
237 fi[]dnl
238 ])# PKG_CHECK_MODULES
239
240
241 # PKG_INSTALLDIR(DIRECTORY)
242 # -------------------------
243 # Substitutes the variable pkgconfigdir as the location where a module
244 # should install pkg-config .pc files. By default the directory is
245 # $libdir/pkgconfig, but the default can be changed by passing
246 # DIRECTORY. The user can override through the --with-pkgconfigdir
247 # parameter.
248 AC_DEFUN([PKG_INSTALLDIR],
249 [m4_pushdef([pkg_default], [m4_default([$1], ['${libdir}/pkgconfig'])])
250 m4_pushdef([pkg_description],
251 [pkg-config installation directory @<:@]pkg_default[@:>@])
252 AC_ARG_WITH([pkgconfigdir],
253 [AS_HELP_STRING([--with-pkgconfigdir], pkg_description)],,
254 [with_pkgconfigdir=]pkg_default)
255 AC_SUBST([pkgconfigdir], [$with_pkgconfigdir])
256 m4_popdef([pkg_default])
257 m4_popdef([pkg_description])
258 ]) dnl PKG_INSTALLDIR
259
260
261 # PKG_NOARCH_INSTALLDIR(DIRECTORY)
262 # -------------------------
263 # Substitutes the variable noarch_pkgconfigdir as the location where a
264 # module should install arch-independent pkg-config .pc files. By
265 # default the directory is $datadir/pkgconfig, but the default can be
266 # changed by passing DIRECTORY. The user can override through the
267 # --with-noarch-pkgconfigdir parameter.
268 AC_DEFUN([PKG_NOARCH_INSTALLDIR],
269 [m4_pushdef([pkg_default], [m4_default([$1], ['${datadir}/pkgconfig'])])
270 m4_pushdef([pkg_description],
271 [pkg-config arch-independent installation directory @<:@]pkg_default[@:>@])
272 AC_ARG_WITH([noarch-pkgconfigdir],
273 [AS_HELP_STRING([--with-noarch-pkgconfigdir], pkg_description)],,
274 [with_noarch_pkgconfigdir=]pkg_default)
275 AC_SUBST([noarch_pkgconfigdir], [$with_noarch_pkgconfigdir])
276 m4_popdef([pkg_default])
277 m4_popdef([pkg_description])
278 ]) dnl PKG_NOARCH_INSTALLDIR
279
280
281 # PKG_CHECK_VAR(VARIABLE, MODULE, CONFIG-VARIABLE,
282 # [ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND])
283 # -------------------------------------------
284 # Retrieves the value of the pkg-config variable for the given module.
285 AC_DEFUN([PKG_CHECK_VAR],
286 [AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl
287 AC_ARG_VAR([$1], [value of $3 for $2, overriding pkg-config])dnl
288
289 _PKG_CONFIG([$1], [variable="][$3]["], [$2])
290 AS_VAR_COPY([$1], [pkg_cv_][$1])
291
292 AS_VAR_IF([$1], [""], [$5], [$4])dnl
293 ])# PKG_CHECK_VAR
294
295 # Copyright (C) 2002-2014 Free Software Foundation, Inc.
296 #
297 # This file is free software; the Free Software Foundation
298 # gives unlimited permission to copy and/or distribute it,
299 # with or without modifications, as long as this notice is preserved.
300
301 # AM_AUTOMAKE_VERSION(VERSION)
302 # ----------------------------
303 # Automake X.Y traces this macro to ensure aclocal.m4 has been
304 # generated from the m4 files accompanying Automake X.Y.
305 # (This private macro should not be called outside this file.)
306 AC_DEFUN([AM_AUTOMAKE_VERSION],
307 [am__api_version='1.15'
308 dnl Some users find AM_AUTOMAKE_VERSION and mistake it for a way to
309 dnl require some minimum version. Point them to the right macro.
310 m4_if([$1], [1.15], [],
311 [AC_FATAL([Do not call $0, use AM_INIT_AUTOMAKE([$1]).])])dnl
312 ])
313
314 # _AM_AUTOCONF_VERSION(VERSION)
315 # -----------------------------
316 # aclocal traces this macro to find the Autoconf version.
317 # This is a private macro too. Using m4_define simplifies
318 # the logic in aclocal, which can simply ignore this definition.
319 m4_define([_AM_AUTOCONF_VERSION], [])
320
321 # AM_SET_CURRENT_AUTOMAKE_VERSION
322 # -------------------------------
323 # Call AM_AUTOMAKE_VERSION and AM_AUTOMAKE_VERSION so they can be traced.
324 # This function is AC_REQUIREd by AM_INIT_AUTOMAKE.
325 AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION],
326 [AM_AUTOMAKE_VERSION([1.15])dnl
327 m4_ifndef([AC_AUTOCONF_VERSION],
328 [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl
329 _AM_AUTOCONF_VERSION(m4_defn([AC_AUTOCONF_VERSION]))])
330
331 # AM_AUX_DIR_EXPAND -*- Autoconf -*-
332
333 # Copyright (C) 2001-2014 Free Software Foundation, Inc.
334 #
335 # This file is free software; the Free Software Foundation
336 # gives unlimited permission to copy and/or distribute it,
337 # with or without modifications, as long as this notice is preserved.
338
339 # For projects using AC_CONFIG_AUX_DIR([foo]), Autoconf sets
340 # $ac_aux_dir to '$srcdir/foo'. In other projects, it is set to
341 # '$srcdir', '$srcdir/..', or '$srcdir/../..'.
342 #
343 # Of course, Automake must honor this variable whenever it calls a
344 # tool from the auxiliary directory. The problem is that $srcdir (and
345 # therefore $ac_aux_dir as well) can be either absolute or relative,
346 # depending on how configure is run. This is pretty annoying, since
347 # it makes $ac_aux_dir quite unusable in subdirectories: in the top
348 # source directory, any form will work fine, but in subdirectories a
349 # relative path needs to be adjusted first.
350 #
351 # $ac_aux_dir/missing
352 # fails when called from a subdirectory if $ac_aux_dir is relative
353 # $top_srcdir/$ac_aux_dir/missing
354 # fails if $ac_aux_dir is absolute,
355 # fails when called from a subdirectory in a VPATH build with
356 # a relative $ac_aux_dir
357 #
358 # The reason of the latter failure is that $top_srcdir and $ac_aux_dir
359 # are both prefixed by $srcdir. In an in-source build this is usually
360 # harmless because $srcdir is '.', but things will broke when you
361 # start a VPATH build or use an absolute $srcdir.
362 #
363 # So we could use something similar to $top_srcdir/$ac_aux_dir/missing,
364 # iff we strip the leading $srcdir from $ac_aux_dir. That would be:
365 # am_aux_dir='\$(top_srcdir)/'`expr "$ac_aux_dir" : "$srcdir//*\(.*\)"`
366 # and then we would define $MISSING as
367 # MISSING="\${SHELL} $am_aux_dir/missing"
368 # This will work as long as MISSING is not called from configure, because
369 # unfortunately $(top_srcdir) has no meaning in configure.
370 # However there are other variables, like CC, which are often used in
371 # configure, and could therefore not use this "fixed" $ac_aux_dir.
372 #
373 # Another solution, used here, is to always expand $ac_aux_dir to an
374 # absolute PATH. The drawback is that using absolute paths prevent a
375 # configured tree to be moved without reconfiguration.
376
377 AC_DEFUN([AM_AUX_DIR_EXPAND],
378 [AC_REQUIRE([AC_CONFIG_AUX_DIR_DEFAULT])dnl
379 # Expand $ac_aux_dir to an absolute path.
380 am_aux_dir=`cd "$ac_aux_dir" && pwd`
381 ])
382
383 # AM_CONDITIONAL -*- Autoconf -*-
384
385 # Copyright (C) 1997-2014 Free Software Foundation, Inc.
386 #
387 # This file is free software; the Free Software Foundation
388 # gives unlimited permission to copy and/or distribute it,
389 # with or without modifications, as long as this notice is preserved.
390
391 # AM_CONDITIONAL(NAME, SHELL-CONDITION)
392 # -------------------------------------
393 # Define a conditional.
394 AC_DEFUN([AM_CONDITIONAL],
395 [AC_PREREQ([2.52])dnl
396 m4_if([$1], [TRUE], [AC_FATAL([$0: invalid condition: $1])],
397 [$1], [FALSE], [AC_FATAL([$0: invalid condition: $1])])dnl
398 AC_SUBST([$1_TRUE])dnl
399 AC_SUBST([$1_FALSE])dnl
400 _AM_SUBST_NOTMAKE([$1_TRUE])dnl
401 _AM_SUBST_NOTMAKE([$1_FALSE])dnl
402 m4_define([_AM_COND_VALUE_$1], [$2])dnl
403 if $2; then
404 $1_TRUE=
405 $1_FALSE='#'
406 else
407 $1_TRUE='#'
408 $1_FALSE=
409 fi
410 AC_CONFIG_COMMANDS_PRE(
411 [if test -z "${$1_TRUE}" && test -z "${$1_FALSE}"; then
412 AC_MSG_ERROR([[conditional "$1" was never defined.
413 Usually this means the macro was only invoked conditionally.]])
414 fi])])
415
416 # Copyright (C) 1999-2014 Free Software Foundation, Inc.
417 #
418 # This file is free software; the Free Software Foundation
419 # gives unlimited permission to copy and/or distribute it,
420 # with or without modifications, as long as this notice is preserved.
421
422
423 # There are a few dirty hacks below to avoid letting 'AC_PROG_CC' be
424 # written in clear, in which case automake, when reading aclocal.m4,
425 # will think it sees a *use*, and therefore will trigger all it's
426 # C support machinery. Also note that it means that autoscan, seeing
427 # CC etc. in the Makefile, will ask for an AC_PROG_CC use...
428
429
430 # _AM_DEPENDENCIES(NAME)
431 # ----------------------
432 # See how the compiler implements dependency checking.
433 # NAME is "CC", "CXX", "OBJC", "OBJCXX", "UPC", or "GJC".
434 # We try a few techniques and use that to set a single cache variable.
435 #
436 # We don't AC_REQUIRE the corresponding AC_PROG_CC since the latter was
437 # modified to invoke _AM_DEPENDENCIES(CC); we would have a circular
438 # dependency, and given that the user is not expected to run this macro,
439 # just rely on AC_PROG_CC.
440 AC_DEFUN([_AM_DEPENDENCIES],
441 [AC_REQUIRE([AM_SET_DEPDIR])dnl
442 AC_REQUIRE([AM_OUTPUT_DEPENDENCY_COMMANDS])dnl
443 AC_REQUIRE([AM_MAKE_INCLUDE])dnl
444 AC_REQUIRE([AM_DEP_TRACK])dnl
445
446 m4_if([$1], [CC], [depcc="$CC" am_compiler_list=],
447 [$1], [CXX], [depcc="$CXX" am_compiler_list=],
448 [$1], [OBJC], [depcc="$OBJC" am_compiler_list='gcc3 gcc'],
449 [$1], [OBJCXX], [depcc="$OBJCXX" am_compiler_list='gcc3 gcc'],
450 [$1], [UPC], [depcc="$UPC" am_compiler_list=],
451 [$1], [GCJ], [depcc="$GCJ" am_compiler_list='gcc3 gcc'],
452 [depcc="$$1" am_compiler_list=])
453
454 AC_CACHE_CHECK([dependency style of $depcc],
455 [am_cv_$1_dependencies_compiler_type],
456 [if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then
457 # We make a subdir and do the tests there. Otherwise we can end up
458 # making bogus files that we don't know about and never remove. For
459 # instance it was reported that on HP-UX the gcc test will end up
460 # making a dummy file named 'D' -- because '-MD' means "put the output
461 # in D".
462 rm -rf conftest.dir
463 mkdir conftest.dir
464 # Copy depcomp to subdir because otherwise we won't find it if we're
465 # using a relative directory.
466 cp "$am_depcomp" conftest.dir
467 cd conftest.dir
468 # We will build objects and dependencies in a subdirectory because
469 # it helps to detect inapplicable dependency modes. For instance
470 # both Tru64's cc and ICC support -MD to output dependencies as a
471 # side effect of compilation, but ICC will put the dependencies in
472 # the current directory while Tru64 will put them in the object
473 # directory.
474 mkdir sub
475
476 am_cv_$1_dependencies_compiler_type=none
477 if test "$am_compiler_list" = ""; then
478 am_compiler_list=`sed -n ['s/^#*\([a-zA-Z0-9]*\))$/\1/p'] < ./depcomp`
479 fi
480 am__universal=false
481 m4_case([$1], [CC],
482 [case " $depcc " in #(
483 *\ -arch\ *\ -arch\ *) am__universal=true ;;
484 esac],
485 [CXX],
486 [case " $depcc " in #(
487 *\ -arch\ *\ -arch\ *) am__universal=true ;;
488 esac])
489
490 for depmode in $am_compiler_list; do
491 # Setup a source with many dependencies, because some compilers
492 # like to wrap large dependency lists on column 80 (with \), and
493 # we should not choose a depcomp mode which is confused by this.
494 #
495 # We need to recreate these files for each test, as the compiler may
496 # overwrite some of them when testing with obscure command lines.
497 # This happens at least with the AIX C compiler.
498 : > sub/conftest.c
499 for i in 1 2 3 4 5 6; do
500 echo '#include "conftst'$i'.h"' >> sub/conftest.c
501 # Using ": > sub/conftst$i.h" creates only sub/conftst1.h with
502 # Solaris 10 /bin/sh.
503 echo '/* dummy */' > sub/conftst$i.h
504 done
505 echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf
506
507 # We check with '-c' and '-o' for the sake of the "dashmstdout"
508 # mode. It turns out that the SunPro C++ compiler does not properly
509 # handle '-M -o', and we need to detect this. Also, some Intel
510 # versions had trouble with output in subdirs.
511 am__obj=sub/conftest.${OBJEXT-o}
512 am__minus_obj="-o $am__obj"
513 case $depmode in
514 gcc)
515 # This depmode causes a compiler race in universal mode.
516 test "$am__universal" = false || continue
517 ;;
518 nosideeffect)
519 # After this tag, mechanisms are not by side-effect, so they'll
520 # only be used when explicitly requested.
521 if test "x$enable_dependency_tracking" = xyes; then
522 continue
523 else
524 break
525 fi
526 ;;
527 msvc7 | msvc7msys | msvisualcpp | msvcmsys)
528 # This compiler won't grok '-c -o', but also, the minuso test has
529 # not run yet. These depmodes are late enough in the game, and
530 # so weak that their functioning should not be impacted.
531 am__obj=conftest.${OBJEXT-o}
532 am__minus_obj=
533 ;;
534 none) break ;;
535 esac
536 if depmode=$depmode \
537 source=sub/conftest.c object=$am__obj \
538 depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \
539 $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \
540 >/dev/null 2>conftest.err &&
541 grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 &&
542 grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 &&
543 grep $am__obj sub/conftest.Po > /dev/null 2>&1 &&
544 ${MAKE-make} -s -f confmf > /dev/null 2>&1; then
545 # icc doesn't choke on unknown options, it will just issue warnings
546 # or remarks (even with -Werror). So we grep stderr for any message
547 # that says an option was ignored or not supported.
548 # When given -MP, icc 7.0 and 7.1 complain thusly:
549 # icc: Command line warning: ignoring option '-M'; no argument required
550 # The diagnosis changed in icc 8.0:
551 # icc: Command line remark: option '-MP' not supported
552 if (grep 'ignoring option' conftest.err ||
553 grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else
554 am_cv_$1_dependencies_compiler_type=$depmode
555 break
556 fi
557 fi
558 done
559
560 cd ..
561 rm -rf conftest.dir
562 else
563 am_cv_$1_dependencies_compiler_type=none
564 fi
565 ])
566 AC_SUBST([$1DEPMODE], [depmode=$am_cv_$1_dependencies_compiler_type])
567 AM_CONDITIONAL([am__fastdep$1], [
568 test "x$enable_dependency_tracking" != xno \
569 && test "$am_cv_$1_dependencies_compiler_type" = gcc3])
570 ])
571
572
573 # AM_SET_DEPDIR
574 # -------------
575 # Choose a directory name for dependency files.
576 # This macro is AC_REQUIREd in _AM_DEPENDENCIES.
577 AC_DEFUN([AM_SET_DEPDIR],
578 [AC_REQUIRE([AM_SET_LEADING_DOT])dnl
579 AC_SUBST([DEPDIR], ["${am__leading_dot}deps"])dnl
580 ])
581
582
583 # AM_DEP_TRACK
584 # ------------
585 AC_DEFUN([AM_DEP_TRACK],
586 [AC_ARG_ENABLE([dependency-tracking], [dnl
587 AS_HELP_STRING(
588 [--enable-dependency-tracking],
589 [do not reject slow dependency extractors])
590 AS_HELP_STRING(
591 [--disable-dependency-tracking],
592 [speeds up one-time build])])
593 if test "x$enable_dependency_tracking" != xno; then
594 am_depcomp="$ac_aux_dir/depcomp"
595 AMDEPBACKSLASH='\'
596 am__nodep='_no'
597 fi
598 AM_CONDITIONAL([AMDEP], [test "x$enable_dependency_tracking" != xno])
599 AC_SUBST([AMDEPBACKSLASH])dnl
600 _AM_SUBST_NOTMAKE([AMDEPBACKSLASH])dnl
601 AC_SUBST([am__nodep])dnl
602 _AM_SUBST_NOTMAKE([am__nodep])dnl
603 ])
604
605 # Generate code to set up dependency tracking. -*- Autoconf -*-
606
607 # Copyright (C) 1999-2014 Free Software Foundation, Inc.
608 #
609 # This file is free software; the Free Software Foundation
610 # gives unlimited permission to copy and/or distribute it,
611 # with or without modifications, as long as this notice is preserved.
612
613
614 # _AM_OUTPUT_DEPENDENCY_COMMANDS
615 # ------------------------------
616 AC_DEFUN([_AM_OUTPUT_DEPENDENCY_COMMANDS],
617 [{
618 # Older Autoconf quotes --file arguments for eval, but not when files
619 # are listed without --file. Let's play safe and only enable the eval
620 # if we detect the quoting.
621 case $CONFIG_FILES in
622 *\'*) eval set x "$CONFIG_FILES" ;;
623 *) set x $CONFIG_FILES ;;
624 esac
625 shift
626 for mf
627 do
628 # Strip MF so we end up with the name of the file.
629 mf=`echo "$mf" | sed -e 's/:.*$//'`
630 # Check whether this is an Automake generated Makefile or not.
631 # We used to match only the files named 'Makefile.in', but
632 # some people rename them; so instead we look at the file content.
633 # Grep'ing the first line is not enough: some people post-process
634 # each Makefile.in and add a new line on top of each file to say so.
635 # Grep'ing the whole file is not good either: AIX grep has a line
636 # limit of 2048, but all sed's we know have understand at least 4000.
637 if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then
638 dirpart=`AS_DIRNAME("$mf")`
639 else
640 continue
641 fi
642 # Extract the definition of DEPDIR, am__include, and am__quote
643 # from the Makefile without running 'make'.
644 DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"`
645 test -z "$DEPDIR" && continue
646 am__include=`sed -n 's/^am__include = //p' < "$mf"`
647 test -z "$am__include" && continue
648 am__quote=`sed -n 's/^am__quote = //p' < "$mf"`
649 # Find all dependency output files, they are included files with
650 # $(DEPDIR) in their names. We invoke sed twice because it is the
651 # simplest approach to changing $(DEPDIR) to its actual value in the
652 # expansion.
653 for file in `sed -n "
654 s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \
655 sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g'`; do
656 # Make sure the directory exists.
657 test -f "$dirpart/$file" && continue
658 fdir=`AS_DIRNAME(["$file"])`
659 AS_MKDIR_P([$dirpart/$fdir])
660 # echo "creating $dirpart/$file"
661 echo '# dummy' > "$dirpart/$file"
662 done
663 done
664 }
665 ])# _AM_OUTPUT_DEPENDENCY_COMMANDS
666
667
668 # AM_OUTPUT_DEPENDENCY_COMMANDS
669 # -----------------------------
670 # This macro should only be invoked once -- use via AC_REQUIRE.
671 #
672 # This code is only required when automatic dependency tracking
673 # is enabled. FIXME. This creates each '.P' file that we will
674 # need in order to bootstrap the dependency handling code.
675 AC_DEFUN([AM_OUTPUT_DEPENDENCY_COMMANDS],
676 [AC_CONFIG_COMMANDS([depfiles],
677 [test x"$AMDEP_TRUE" != x"" || _AM_OUTPUT_DEPENDENCY_COMMANDS],
678 [AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir"])
679 ])
680
681 # Do all the work for Automake. -*- Autoconf -*-
682
683 # Copyright (C) 1996-2014 Free Software Foundation, Inc.
684 #
685 # This file is free software; the Free Software Foundation
686 # gives unlimited permission to copy and/or distribute it,
687 # with or without modifications, as long as this notice is preserved.
688
689 # This macro actually does too much. Some checks are only needed if
690 # your package does certain things. But this isn't really a big deal.
691
692 dnl Redefine AC_PROG_CC to automatically invoke _AM_PROG_CC_C_O.
693 m4_define([AC_PROG_CC],
694 m4_defn([AC_PROG_CC])
695 [_AM_PROG_CC_C_O
696 ])
697
698 # AM_INIT_AUTOMAKE(PACKAGE, VERSION, [NO-DEFINE])
699 # AM_INIT_AUTOMAKE([OPTIONS])
700 # -----------------------------------------------
701 # The call with PACKAGE and VERSION arguments is the old style
702 # call (pre autoconf-2.50), which is being phased out. PACKAGE
703 # and VERSION should now be passed to AC_INIT and removed from
704 # the call to AM_INIT_AUTOMAKE.
705 # We support both call styles for the transition. After
706 # the next Automake release, Autoconf can make the AC_INIT
707 # arguments mandatory, and then we can depend on a new Autoconf
708 # release and drop the old call support.
709 AC_DEFUN([AM_INIT_AUTOMAKE],
710 [AC_PREREQ([2.65])dnl
711 dnl Autoconf wants to disallow AM_ names. We explicitly allow
712 dnl the ones we care about.
713 m4_pattern_allow([^AM_[A-Z]+FLAGS$])dnl
714 AC_REQUIRE([AM_SET_CURRENT_AUTOMAKE_VERSION])dnl
715 AC_REQUIRE([AC_PROG_INSTALL])dnl
716 if test "`cd $srcdir && pwd`" != "`pwd`"; then
717 # Use -I$(srcdir) only when $(srcdir) != ., so that make's output
718 # is not polluted with repeated "-I."
719 AC_SUBST([am__isrc], [' -I$(srcdir)'])_AM_SUBST_NOTMAKE([am__isrc])dnl
720 # test to see if srcdir already configured
721 if test -f $srcdir/config.status; then
722 AC_MSG_ERROR([source directory already configured; run "make distclean" there first])
723 fi
724 fi
725
726 # test whether we have cygpath
727 if test -z "$CYGPATH_W"; then
728 if (cygpath --version) >/dev/null 2>/dev/null; then
729 CYGPATH_W='cygpath -w'
730 else
731 CYGPATH_W=echo
732 fi
733 fi
734 AC_SUBST([CYGPATH_W])
735
736 # Define the identity of the package.
737 dnl Distinguish between old-style and new-style calls.
738 m4_ifval([$2],
739 [AC_DIAGNOSE([obsolete],
740 [$0: two- and three-arguments forms are deprecated.])
741 m4_ifval([$3], [_AM_SET_OPTION([no-define])])dnl
742 AC_SUBST([PACKAGE], [$1])dnl
743 AC_SUBST([VERSION], [$2])],
744 [_AM_SET_OPTIONS([$1])dnl
745 dnl Diagnose old-style AC_INIT with new-style AM_AUTOMAKE_INIT.
746 m4_if(
747 m4_ifdef([AC_PACKAGE_NAME], [ok]):m4_ifdef([AC_PACKAGE_VERSION], [ok]),
748 [ok:ok],,
749 [m4_fatal([AC_INIT should be called with package and version arguments])])dnl
750 AC_SUBST([PACKAGE], ['AC_PACKAGE_TARNAME'])dnl
751 AC_SUBST([VERSION], ['AC_PACKAGE_VERSION'])])dnl
752
753 _AM_IF_OPTION([no-define],,
754 [AC_DEFINE_UNQUOTED([PACKAGE], ["$PACKAGE"], [Name of package])
755 AC_DEFINE_UNQUOTED([VERSION], ["$VERSION"], [Version number of package])])dnl
756
757 # Some tools Automake needs.
758 AC_REQUIRE([AM_SANITY_CHECK])dnl
759 AC_REQUIRE([AC_ARG_PROGRAM])dnl
760 AM_MISSING_PROG([ACLOCAL], [aclocal-${am__api_version}])
761 AM_MISSING_PROG([AUTOCONF], [autoconf])
762 AM_MISSING_PROG([AUTOMAKE], [automake-${am__api_version}])
763 AM_MISSING_PROG([AUTOHEADER], [autoheader])
764 AM_MISSING_PROG([MAKEINFO], [makeinfo])
765 AC_REQUIRE([AM_PROG_INSTALL_SH])dnl
766 AC_REQUIRE([AM_PROG_INSTALL_STRIP])dnl
767 AC_REQUIRE([AC_PROG_MKDIR_P])dnl
768 # For better backward compatibility. To be removed once Automake 1.9.x
769 # dies out for good. For more background, see:
770 # <http://lists.gnu.org/archive/html/automake/2012-07/msg00001.html>
771 # <http://lists.gnu.org/archive/html/automake/2012-07/msg00014.html>
772 AC_SUBST([mkdir_p], ['$(MKDIR_P)'])
773 # We need awk for the "check" target (and possibly the TAP driver). The
774 # system "awk" is bad on some platforms.
775 AC_REQUIRE([AC_PROG_AWK])dnl
776 AC_REQUIRE([AC_PROG_MAKE_SET])dnl
777 AC_REQUIRE([AM_SET_LEADING_DOT])dnl
778 _AM_IF_OPTION([tar-ustar], [_AM_PROG_TAR([ustar])],
779 [_AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])],
780 [_AM_PROG_TAR([v7])])])
781 _AM_IF_OPTION([no-dependencies],,
782 [AC_PROVIDE_IFELSE([AC_PROG_CC],
783 [_AM_DEPENDENCIES([CC])],
784 [m4_define([AC_PROG_CC],
785 m4_defn([AC_PROG_CC])[_AM_DEPENDENCIES([CC])])])dnl
786 AC_PROVIDE_IFELSE([AC_PROG_CXX],
787 [_AM_DEPENDENCIES([CXX])],
788 [m4_define([AC_PROG_CXX],
789 m4_defn([AC_PROG_CXX])[_AM_DEPENDENCIES([CXX])])])dnl
790 AC_PROVIDE_IFELSE([AC_PROG_OBJC],
791 [_AM_DEPENDENCIES([OBJC])],
792 [m4_define([AC_PROG_OBJC],
793 m4_defn([AC_PROG_OBJC])[_AM_DEPENDENCIES([OBJC])])])dnl
794 AC_PROVIDE_IFELSE([AC_PROG_OBJCXX],
795 [_AM_DEPENDENCIES([OBJCXX])],
796 [m4_define([AC_PROG_OBJCXX],
797 m4_defn([AC_PROG_OBJCXX])[_AM_DEPENDENCIES([OBJCXX])])])dnl
798 ])
799 AC_REQUIRE([AM_SILENT_RULES])dnl
800 dnl The testsuite driver may need to know about EXEEXT, so add the
801 dnl 'am__EXEEXT' conditional if _AM_COMPILER_EXEEXT was seen. This
802 dnl macro is hooked onto _AC_COMPILER_EXEEXT early, see below.
803 AC_CONFIG_COMMANDS_PRE(dnl
804 [m4_provide_if([_AM_COMPILER_EXEEXT],
805 [AM_CONDITIONAL([am__EXEEXT], [test -n "$EXEEXT"])])])dnl
806
807 # POSIX will say in a future version that running "rm -f" with no argument
808 # is OK; and we want to be able to make that assumption in our Makefile
809 # recipes. So use an aggressive probe to check that the usage we want is
810 # actually supported "in the wild" to an acceptable degree.
811 # See automake bug#10828.
812 # To make any issue more visible, cause the running configure to be aborted
813 # by default if the 'rm' program in use doesn't match our expectations; the
814 # user can still override this though.
815 if rm -f && rm -fr && rm -rf; then : OK; else
816 cat >&2 <<'END'
817 Oops!
818
819 Your 'rm' program seems unable to run without file operands specified
820 on the command line, even when the '-f' option is present. This is contrary
821 to the behaviour of most rm programs out there, and not conforming with
822 the upcoming POSIX standard: <http://austingroupbugs.net/view.php?id=542>
823
824 Please tell bug-automake@gnu.org about your system, including the value
825 of your $PATH and any error possibly output before this message. This
826 can help us improve future automake versions.
827
828 END
829 if test x"$ACCEPT_INFERIOR_RM_PROGRAM" = x"yes"; then
830 echo 'Configuration will proceed anyway, since you have set the' >&2
831 echo 'ACCEPT_INFERIOR_RM_PROGRAM variable to "yes"' >&2
832 echo >&2
833 else
834 cat >&2 <<'END'
835 Aborting the configuration process, to ensure you take notice of the issue.
836
837 You can download and install GNU coreutils to get an 'rm' implementation
838 that behaves properly: <http://www.gnu.org/software/coreutils/>.
839
840 If you want to complete the configuration process using your problematic
841 'rm' anyway, export the environment variable ACCEPT_INFERIOR_RM_PROGRAM
842 to "yes", and re-run configure.
843
844 END
845 AC_MSG_ERROR([Your 'rm' program is bad, sorry.])
846 fi
847 fi
848 dnl The trailing newline in this macro's definition is deliberate, for
849 dnl backward compatibility and to allow trailing 'dnl'-style comments
850 dnl after the AM_INIT_AUTOMAKE invocation. See automake bug#16841.
851 ])
852
853 dnl Hook into '_AC_COMPILER_EXEEXT' early to learn its expansion. Do not
854 dnl add the conditional right here, as _AC_COMPILER_EXEEXT may be further
855 dnl mangled by Autoconf and run in a shell conditional statement.
856 m4_define([_AC_COMPILER_EXEEXT],
857 m4_defn([_AC_COMPILER_EXEEXT])[m4_provide([_AM_COMPILER_EXEEXT])])
858
859 # When config.status generates a header, we must update the stamp-h file.
860 # This file resides in the same directory as the config header
861 # that is generated. The stamp files are numbered to have different names.
862
863 # Autoconf calls _AC_AM_CONFIG_HEADER_HOOK (when defined) in the
864 # loop where config.status creates the headers, so we can generate
865 # our stamp files there.
866 AC_DEFUN([_AC_AM_CONFIG_HEADER_HOOK],
867 [# Compute $1's index in $config_headers.
868 _am_arg=$1
869 _am_stamp_count=1
870 for _am_header in $config_headers :; do
871 case $_am_header in
872 $_am_arg | $_am_arg:* )
873 break ;;
874 * )
875 _am_stamp_count=`expr $_am_stamp_count + 1` ;;
876 esac
877 done
878 echo "timestamp for $_am_arg" >`AS_DIRNAME(["$_am_arg"])`/stamp-h[]$_am_stamp_count])
879
880 # Copyright (C) 2001-2014 Free Software Foundation, Inc.
881 #
882 # This file is free software; the Free Software Foundation
883 # gives unlimited permission to copy and/or distribute it,
884 # with or without modifications, as long as this notice is preserved.
885
886 # AM_PROG_INSTALL_SH
887 # ------------------
888 # Define $install_sh.
889 AC_DEFUN([AM_PROG_INSTALL_SH],
890 [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
891 if test x"${install_sh+set}" != xset; then
892 case $am_aux_dir in
893 *\ * | *\ *)
894 install_sh="\${SHELL} '$am_aux_dir/install-sh'" ;;
895 *)
896 install_sh="\${SHELL} $am_aux_dir/install-sh"
897 esac
898 fi
899 AC_SUBST([install_sh])])
900
901 # Copyright (C) 2003-2014 Free Software Foundation, Inc.
902 #
903 # This file is free software; the Free Software Foundation
904 # gives unlimited permission to copy and/or distribute it,
905 # with or without modifications, as long as this notice is preserved.
906
907 # Check whether the underlying file-system supports filenames
908 # with a leading dot. For instance MS-DOS doesn't.
909 AC_DEFUN([AM_SET_LEADING_DOT],
910 [rm -rf .tst 2>/dev/null
911 mkdir .tst 2>/dev/null
912 if test -d .tst; then
913 am__leading_dot=.
914 else
915 am__leading_dot=_
916 fi
917 rmdir .tst 2>/dev/null
918 AC_SUBST([am__leading_dot])])
919
920 # Add --enable-maintainer-mode option to configure. -*- Autoconf -*-
921 # From Jim Meyering
922
923 # Copyright (C) 1996-2014 Free Software Foundation, Inc.
924 #
925 # This file is free software; the Free Software Foundation
926 # gives unlimited permission to copy and/or distribute it,
927 # with or without modifications, as long as this notice is preserved.
928
929 # AM_MAINTAINER_MODE([DEFAULT-MODE])
930 # ----------------------------------
931 # Control maintainer-specific portions of Makefiles.
932 # Default is to disable them, unless 'enable' is passed literally.
933 # For symmetry, 'disable' may be passed as well. Anyway, the user
934 # can override the default with the --enable/--disable switch.
935 AC_DEFUN([AM_MAINTAINER_MODE],
936 [m4_case(m4_default([$1], [disable]),
937 [enable], [m4_define([am_maintainer_other], [disable])],
938 [disable], [m4_define([am_maintainer_other], [enable])],
939 [m4_define([am_maintainer_other], [enable])
940 m4_warn([syntax], [unexpected argument to AM@&t@_MAINTAINER_MODE: $1])])
941 AC_MSG_CHECKING([whether to enable maintainer-specific portions of Makefiles])
942 dnl maintainer-mode's default is 'disable' unless 'enable' is passed
943 AC_ARG_ENABLE([maintainer-mode],
944 [AS_HELP_STRING([--]am_maintainer_other[-maintainer-mode],
945 am_maintainer_other[ make rules and dependencies not useful
946 (and sometimes confusing) to the casual installer])],
947 [USE_MAINTAINER_MODE=$enableval],
948 [USE_MAINTAINER_MODE=]m4_if(am_maintainer_other, [enable], [no], [yes]))
949 AC_MSG_RESULT([$USE_MAINTAINER_MODE])
950 AM_CONDITIONAL([MAINTAINER_MODE], [test $USE_MAINTAINER_MODE = yes])
951 MAINT=$MAINTAINER_MODE_TRUE
952 AC_SUBST([MAINT])dnl
953 ]
954 )
955
956 # Check to see how 'make' treats includes. -*- Autoconf -*-
957
958 # Copyright (C) 2001-2014 Free Software Foundation, Inc.
959 #
960 # This file is free software; the Free Software Foundation
961 # gives unlimited permission to copy and/or distribute it,
962 # with or without modifications, as long as this notice is preserved.
963
964 # AM_MAKE_INCLUDE()
965 # -----------------
966 # Check to see how make treats includes.
967 AC_DEFUN([AM_MAKE_INCLUDE],
968 [am_make=${MAKE-make}
969 cat > confinc << 'END'
970 am__doit:
971 @echo this is the am__doit target
972 .PHONY: am__doit
973 END
974 # If we don't find an include directive, just comment out the code.
975 AC_MSG_CHECKING([for style of include used by $am_make])
976 am__include="#"
977 am__quote=
978 _am_result=none
979 # First try GNU make style include.
980 echo "include confinc" > confmf
981 # Ignore all kinds of additional output from 'make'.
982 case `$am_make -s -f confmf 2> /dev/null` in #(
983 *the\ am__doit\ target*)
984 am__include=include
985 am__quote=
986 _am_result=GNU
987 ;;
988 esac
989 # Now try BSD make style include.
990 if test "$am__include" = "#"; then
991 echo '.include "confinc"' > confmf
992 case `$am_make -s -f confmf 2> /dev/null` in #(
993 *the\ am__doit\ target*)
994 am__include=.include
995 am__quote="\""
996 _am_result=BSD
997 ;;
998 esac
999 fi
1000 AC_SUBST([am__include])
1001 AC_SUBST([am__quote])
1002 AC_MSG_RESULT([$_am_result])
1003 rm -f confinc confmf
1004 ])
1005
1006 # Fake the existence of programs that GNU maintainers use. -*- Autoconf -*-
1007
1008 # Copyright (C) 1997-2014 Free Software Foundation, Inc.
1009 #
1010 # This file is free software; the Free Software Foundation
1011 # gives unlimited permission to copy and/or distribute it,
1012 # with or without modifications, as long as this notice is preserved.
1013
1014 # AM_MISSING_PROG(NAME, PROGRAM)
1015 # ------------------------------
1016 AC_DEFUN([AM_MISSING_PROG],
1017 [AC_REQUIRE([AM_MISSING_HAS_RUN])
1018 $1=${$1-"${am_missing_run}$2"}
1019 AC_SUBST($1)])
1020
1021 # AM_MISSING_HAS_RUN
1022 # ------------------
1023 # Define MISSING if not defined so far and test if it is modern enough.
1024 # If it is, set am_missing_run to use it, otherwise, to nothing.
1025 AC_DEFUN([AM_MISSING_HAS_RUN],
1026 [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
1027 AC_REQUIRE_AUX_FILE([missing])dnl
1028 if test x"${MISSING+set}" != xset; then
1029 case $am_aux_dir in
1030 *\ * | *\ *)
1031 MISSING="\${SHELL} \"$am_aux_dir/missing\"" ;;
1032 *)
1033 MISSING="\${SHELL} $am_aux_dir/missing" ;;
1034 esac
1035 fi
1036 # Use eval to expand $SHELL
1037 if eval "$MISSING --is-lightweight"; then
1038 am_missing_run="$MISSING "
1039 else
1040 am_missing_run=
1041 AC_MSG_WARN(['missing' script is too old or missing])
1042 fi
1043 ])
1044
1045 # -*- Autoconf -*-
1046 # Obsolete and "removed" macros, that must however still report explicit
1047 # error messages when used, to smooth transition.
1048 #
1049 # Copyright (C) 1996-2014 Free Software Foundation, Inc.
1050 #
1051 # This file is free software; the Free Software Foundation
1052 # gives unlimited permission to copy and/or distribute it,
1053 # with or without modifications, as long as this notice is preserved.
1054
1055 AC_DEFUN([AM_CONFIG_HEADER],
1056 [AC_DIAGNOSE([obsolete],
1057 ['$0': this macro is obsolete.
1058 You should use the 'AC][_CONFIG_HEADERS' macro instead.])dnl
1059 AC_CONFIG_HEADERS($@)])
1060
1061 AC_DEFUN([AM_PROG_CC_STDC],
1062 [AC_PROG_CC
1063 am_cv_prog_cc_stdc=$ac_cv_prog_cc_stdc
1064 AC_DIAGNOSE([obsolete],
1065 ['$0': this macro is obsolete.
1066 You should simply use the 'AC][_PROG_CC' macro instead.
1067 Also, your code should no longer depend upon 'am_cv_prog_cc_stdc',
1068 but upon 'ac_cv_prog_cc_stdc'.])])
1069
1070 AC_DEFUN([AM_C_PROTOTYPES],
1071 [AC_FATAL([automatic de-ANSI-fication support has been removed])])
1072 AU_DEFUN([fp_C_PROTOTYPES], [AM_C_PROTOTYPES])
1073
1074 # Helper functions for option handling. -*- Autoconf -*-
1075
1076 # Copyright (C) 2001-2014 Free Software Foundation, Inc.
1077 #
1078 # This file is free software; the Free Software Foundation
1079 # gives unlimited permission to copy and/or distribute it,
1080 # with or without modifications, as long as this notice is preserved.
1081
1082 # _AM_MANGLE_OPTION(NAME)
1083 # -----------------------
1084 AC_DEFUN([_AM_MANGLE_OPTION],
1085 [[_AM_OPTION_]m4_bpatsubst($1, [[^a-zA-Z0-9_]], [_])])
1086
1087 # _AM_SET_OPTION(NAME)
1088 # --------------------
1089 # Set option NAME. Presently that only means defining a flag for this option.
1090 AC_DEFUN([_AM_SET_OPTION],
1091 [m4_define(_AM_MANGLE_OPTION([$1]), [1])])
1092
1093 # _AM_SET_OPTIONS(OPTIONS)
1094 # ------------------------
1095 # OPTIONS is a space-separated list of Automake options.
1096 AC_DEFUN([_AM_SET_OPTIONS],
1097 [m4_foreach_w([_AM_Option], [$1], [_AM_SET_OPTION(_AM_Option)])])
1098
1099 # _AM_IF_OPTION(OPTION, IF-SET, [IF-NOT-SET])
1100 # -------------------------------------------
1101 # Execute IF-SET if OPTION is set, IF-NOT-SET otherwise.
1102 AC_DEFUN([_AM_IF_OPTION],
1103 [m4_ifset(_AM_MANGLE_OPTION([$1]), [$2], [$3])])
1104
1105 # Copyright (C) 1999-2014 Free Software Foundation, Inc.
1106 #
1107 # This file is free software; the Free Software Foundation
1108 # gives unlimited permission to copy and/or distribute it,
1109 # with or without modifications, as long as this notice is preserved.
1110
1111 # _AM_PROG_CC_C_O
1112 # ---------------
1113 # Like AC_PROG_CC_C_O, but changed for automake. We rewrite AC_PROG_CC
1114 # to automatically call this.
1115 AC_DEFUN([_AM_PROG_CC_C_O],
1116 [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
1117 AC_REQUIRE_AUX_FILE([compile])dnl
1118 AC_LANG_PUSH([C])dnl
1119 AC_CACHE_CHECK(
1120 [whether $CC understands -c and -o together],
1121 [am_cv_prog_cc_c_o],
1122 [AC_LANG_CONFTEST([AC_LANG_PROGRAM([])])
1123 # Make sure it works both with $CC and with simple cc.
1124 # Following AC_PROG_CC_C_O, we do the test twice because some
1125 # compilers refuse to overwrite an existing .o file with -o,
1126 # though they will create one.
1127 am_cv_prog_cc_c_o=yes
1128 for am_i in 1 2; do
1129 if AM_RUN_LOG([$CC -c conftest.$ac_ext -o conftest2.$ac_objext]) \
1130 && test -f conftest2.$ac_objext; then
1131 : OK
1132 else
1133 am_cv_prog_cc_c_o=no
1134 break
1135 fi
1136 done
1137 rm -f core conftest*
1138 unset am_i])
1139 if test "$am_cv_prog_cc_c_o" != yes; then
1140 # Losing compiler, so override with the script.
1141 # FIXME: It is wrong to rewrite CC.
1142 # But if we don't then we get into trouble of one sort or another.
1143 # A longer-term fix would be to have automake use am__CC in this case,
1144 # and then we could set am__CC="\$(top_srcdir)/compile \$(CC)"
1145 CC="$am_aux_dir/compile $CC"
1146 fi
1147 AC_LANG_POP([C])])
1148
1149 # For backward compatibility.
1150 AC_DEFUN_ONCE([AM_PROG_CC_C_O], [AC_REQUIRE([AC_PROG_CC])])
1151
1152 # Copyright (C) 2001-2014 Free Software Foundation, Inc.
1153 #
1154 # This file is free software; the Free Software Foundation
1155 # gives unlimited permission to copy and/or distribute it,
1156 # with or without modifications, as long as this notice is preserved.
1157
1158 # AM_RUN_LOG(COMMAND)
1159 # -------------------
1160 # Run COMMAND, save the exit status in ac_status, and log it.
1161 # (This has been adapted from Autoconf's _AC_RUN_LOG macro.)
1162 AC_DEFUN([AM_RUN_LOG],
1163 [{ echo "$as_me:$LINENO: $1" >&AS_MESSAGE_LOG_FD
1164 ($1) >&AS_MESSAGE_LOG_FD 2>&AS_MESSAGE_LOG_FD
1165 ac_status=$?
1166 echo "$as_me:$LINENO: \$? = $ac_status" >&AS_MESSAGE_LOG_FD
1167 (exit $ac_status); }])
1168
1169 # Check to make sure that the build environment is sane. -*- Autoconf -*-
1170
1171 # Copyright (C) 1996-2014 Free Software Foundation, Inc.
1172 #
1173 # This file is free software; the Free Software Foundation
1174 # gives unlimited permission to copy and/or distribute it,
1175 # with or without modifications, as long as this notice is preserved.
1176
1177 # AM_SANITY_CHECK
1178 # ---------------
1179 AC_DEFUN([AM_SANITY_CHECK],
1180 [AC_MSG_CHECKING([whether build environment is sane])
1181 # Reject unsafe characters in $srcdir or the absolute working directory
1182 # name. Accept space and tab only in the latter.
1183 am_lf='
1184 '
1185 case `pwd` in
1186 *[[\\\"\#\$\&\'\`$am_lf]]*)
1187 AC_MSG_ERROR([unsafe absolute working directory name]);;
1188 esac
1189 case $srcdir in
1190 *[[\\\"\#\$\&\'\`$am_lf\ \ ]]*)
1191 AC_MSG_ERROR([unsafe srcdir value: '$srcdir']);;
1192 esac
1193
1194 # Do 'set' in a subshell so we don't clobber the current shell's
1195 # arguments. Must try -L first in case configure is actually a
1196 # symlink; some systems play weird games with the mod time of symlinks
1197 # (eg FreeBSD returns the mod time of the symlink's containing
1198 # directory).
1199 if (
1200 am_has_slept=no
1201 for am_try in 1 2; do
1202 echo "timestamp, slept: $am_has_slept" > conftest.file
1203 set X `ls -Lt "$srcdir/configure" conftest.file 2> /dev/null`
1204 if test "$[*]" = "X"; then
1205 # -L didn't work.
1206 set X `ls -t "$srcdir/configure" conftest.file`
1207 fi
1208 if test "$[*]" != "X $srcdir/configure conftest.file" \
1209 && test "$[*]" != "X conftest.file $srcdir/configure"; then
1210
1211 # If neither matched, then we have a broken ls. This can happen
1212 # if, for instance, CONFIG_SHELL is bash and it inherits a
1213 # broken ls alias from the environment. This has actually
1214 # happened. Such a system could not be considered "sane".
1215 AC_MSG_ERROR([ls -t appears to fail. Make sure there is not a broken
1216 alias in your environment])
1217 fi
1218 if test "$[2]" = conftest.file || test $am_try -eq 2; then
1219 break
1220 fi
1221 # Just in case.
1222 sleep 1
1223 am_has_slept=yes
1224 done
1225 test "$[2]" = conftest.file
1226 )
1227 then
1228 # Ok.
1229 :
1230 else
1231 AC_MSG_ERROR([newly created file is older than distributed files!
1232 Check your system clock])
1233 fi
1234 AC_MSG_RESULT([yes])
1235 # If we didn't sleep, we still need to ensure time stamps of config.status and
1236 # generated files are strictly newer.
1237 am_sleep_pid=
1238 if grep 'slept: no' conftest.file >/dev/null 2>&1; then
1239 ( sleep 1 ) &
1240 am_sleep_pid=$!
1241 fi
1242 AC_CONFIG_COMMANDS_PRE(
1243 [AC_MSG_CHECKING([that generated files are newer than configure])
1244 if test -n "$am_sleep_pid"; then
1245 # Hide warnings about reused PIDs.
1246 wait $am_sleep_pid 2>/dev/null
1247 fi
1248 AC_MSG_RESULT([done])])
1249 rm -f conftest.file
1250 ])
1251
1252 # Copyright (C) 2009-2014 Free Software Foundation, Inc.
1253 #
1254 # This file is free software; the Free Software Foundation
1255 # gives unlimited permission to copy and/or distribute it,
1256 # with or without modifications, as long as this notice is preserved.
1257
1258 # AM_SILENT_RULES([DEFAULT])
1259 # --------------------------
1260 # Enable less verbose build rules; with the default set to DEFAULT
1261 # ("yes" being less verbose, "no" or empty being verbose).
1262 AC_DEFUN([AM_SILENT_RULES],
1263 [AC_ARG_ENABLE([silent-rules], [dnl
1264 AS_HELP_STRING(
1265 [--enable-silent-rules],
1266 [less verbose build output (undo: "make V=1")])
1267 AS_HELP_STRING(
1268 [--disable-silent-rules],
1269 [verbose build output (undo: "make V=0")])dnl
1270 ])
1271 case $enable_silent_rules in @%:@ (((
1272 yes) AM_DEFAULT_VERBOSITY=0;;
1273 no) AM_DEFAULT_VERBOSITY=1;;
1274 *) AM_DEFAULT_VERBOSITY=m4_if([$1], [yes], [0], [1]);;
1275 esac
1276 dnl
1277 dnl A few 'make' implementations (e.g., NonStop OS and NextStep)
1278 dnl do not support nested variable expansions.
1279 dnl See automake bug#9928 and bug#10237.
1280 am_make=${MAKE-make}
1281 AC_CACHE_CHECK([whether $am_make supports nested variables],
1282 [am_cv_make_support_nested_variables],
1283 [if AS_ECHO([['TRUE=$(BAR$(V))
1284 BAR0=false
1285 BAR1=true
1286 V=1
1287 am__doit:
1288 @$(TRUE)
1289 .PHONY: am__doit']]) | $am_make -f - >/dev/null 2>&1; then
1290 am_cv_make_support_nested_variables=yes
1291 else
1292 am_cv_make_support_nested_variables=no
1293 fi])
1294 if test $am_cv_make_support_nested_variables = yes; then
1295 dnl Using '$V' instead of '$(V)' breaks IRIX make.
1296 AM_V='$(V)'
1297 AM_DEFAULT_V='$(AM_DEFAULT_VERBOSITY)'
1298 else
1299 AM_V=$AM_DEFAULT_VERBOSITY
1300 AM_DEFAULT_V=$AM_DEFAULT_VERBOSITY
1301 fi
1302 AC_SUBST([AM_V])dnl
1303 AM_SUBST_NOTMAKE([AM_V])dnl
1304 AC_SUBST([AM_DEFAULT_V])dnl
1305 AM_SUBST_NOTMAKE([AM_DEFAULT_V])dnl
1306 AC_SUBST([AM_DEFAULT_VERBOSITY])dnl
1307 AM_BACKSLASH='\'
1308 AC_SUBST([AM_BACKSLASH])dnl
1309 _AM_SUBST_NOTMAKE([AM_BACKSLASH])dnl
1310 ])
1311
1312 # Copyright (C) 2001-2014 Free Software Foundation, Inc.
1313 #
1314 # This file is free software; the Free Software Foundation
1315 # gives unlimited permission to copy and/or distribute it,
1316 # with or without modifications, as long as this notice is preserved.
1317
1318 # AM_PROG_INSTALL_STRIP
1319 # ---------------------
1320 # One issue with vendor 'install' (even GNU) is that you can't
1321 # specify the program used to strip binaries. This is especially
1322 # annoying in cross-compiling environments, where the build's strip
1323 # is unlikely to handle the host's binaries.
1324 # Fortunately install-sh will honor a STRIPPROG variable, so we
1325 # always use install-sh in "make install-strip", and initialize
1326 # STRIPPROG with the value of the STRIP variable (set by the user).
1327 AC_DEFUN([AM_PROG_INSTALL_STRIP],
1328 [AC_REQUIRE([AM_PROG_INSTALL_SH])dnl
1329 # Installed binaries are usually stripped using 'strip' when the user
1330 # run "make install-strip". However 'strip' might not be the right
1331 # tool to use in cross-compilation environments, therefore Automake
1332 # will honor the 'STRIP' environment variable to overrule this program.
1333 dnl Don't test for $cross_compiling = yes, because it might be 'maybe'.
1334 if test "$cross_compiling" != no; then
1335 AC_CHECK_TOOL([STRIP], [strip], :)
1336 fi
1337 INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s"
1338 AC_SUBST([INSTALL_STRIP_PROGRAM])])
1339
1340 # Copyright (C) 2006-2014 Free Software Foundation, Inc.
1341 #
1342 # This file is free software; the Free Software Foundation
1343 # gives unlimited permission to copy and/or distribute it,
1344 # with or without modifications, as long as this notice is preserved.
1345
1346 # _AM_SUBST_NOTMAKE(VARIABLE)
1347 # ---------------------------
1348 # Prevent Automake from outputting VARIABLE = @VARIABLE@ in Makefile.in.
1349 # This macro is traced by Automake.
1350 AC_DEFUN([_AM_SUBST_NOTMAKE])
1351
1352 # AM_SUBST_NOTMAKE(VARIABLE)
1353 # --------------------------
1354 # Public sister of _AM_SUBST_NOTMAKE.
1355 AC_DEFUN([AM_SUBST_NOTMAKE], [_AM_SUBST_NOTMAKE($@)])
1356
1357 # Check how to create a tarball. -*- Autoconf -*-
1358
1359 # Copyright (C) 2004-2014 Free Software Foundation, Inc.
1360 #
1361 # This file is free software; the Free Software Foundation
1362 # gives unlimited permission to copy and/or distribute it,
1363 # with or without modifications, as long as this notice is preserved.
1364
1365 # _AM_PROG_TAR(FORMAT)
1366 # --------------------
1367 # Check how to create a tarball in format FORMAT.
1368 # FORMAT should be one of 'v7', 'ustar', or 'pax'.
1369 #
1370 # Substitute a variable $(am__tar) that is a command
1371 # writing to stdout a FORMAT-tarball containing the directory
1372 # $tardir.
1373 # tardir=directory && $(am__tar) > result.tar
1374 #
1375 # Substitute a variable $(am__untar) that extract such
1376 # a tarball read from stdin.
1377 # $(am__untar) < result.tar
1378 #
1379 AC_DEFUN([_AM_PROG_TAR],
1380 [# Always define AMTAR for backward compatibility. Yes, it's still used
1381 # in the wild :-( We should find a proper way to deprecate it ...
1382 AC_SUBST([AMTAR], ['$${TAR-tar}'])
1383
1384 # We'll loop over all known methods to create a tar archive until one works.
1385 _am_tools='gnutar m4_if([$1], [ustar], [plaintar]) pax cpio none'
1386
1387 m4_if([$1], [v7],
1388 [am__tar='$${TAR-tar} chof - "$$tardir"' am__untar='$${TAR-tar} xf -'],
1389
1390 [m4_case([$1],
1391 [ustar],
1392 [# The POSIX 1988 'ustar' format is defined with fixed-size fields.
1393 # There is notably a 21 bits limit for the UID and the GID. In fact,
1394 # the 'pax' utility can hang on bigger UID/GID (see automake bug#8343
1395 # and bug#13588).
1396 am_max_uid=2097151 # 2^21 - 1
1397 am_max_gid=$am_max_uid
1398 # The $UID and $GID variables are not portable, so we need to resort
1399 # to the POSIX-mandated id(1) utility. Errors in the 'id' calls
1400 # below are definitely unexpected, so allow the users to see them
1401 # (that is, avoid stderr redirection).
1402 am_uid=`id -u || echo unknown`
1403 am_gid=`id -g || echo unknown`
1404 AC_MSG_CHECKING([whether UID '$am_uid' is supported by ustar format])
1405 if test $am_uid -le $am_max_uid; then
1406 AC_MSG_RESULT([yes])
1407 else
1408 AC_MSG_RESULT([no])
1409 _am_tools=none
1410 fi
1411 AC_MSG_CHECKING([whether GID '$am_gid' is supported by ustar format])
1412 if test $am_gid -le $am_max_gid; then
1413 AC_MSG_RESULT([yes])
1414 else
1415 AC_MSG_RESULT([no])
1416 _am_tools=none
1417 fi],
1418
1419 [pax],
1420 [],
1421
1422 [m4_fatal([Unknown tar format])])
1423
1424 AC_MSG_CHECKING([how to create a $1 tar archive])
1425
1426 # Go ahead even if we have the value already cached. We do so because we
1427 # need to set the values for the 'am__tar' and 'am__untar' variables.
1428 _am_tools=${am_cv_prog_tar_$1-$_am_tools}
1429
1430 for _am_tool in $_am_tools; do
1431 case $_am_tool in
1432 gnutar)
1433 for _am_tar in tar gnutar gtar; do
1434 AM_RUN_LOG([$_am_tar --version]) && break
1435 done
1436 am__tar="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$$tardir"'
1437 am__tar_="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$tardir"'
1438 am__untar="$_am_tar -xf -"
1439 ;;
1440 plaintar)
1441 # Must skip GNU tar: if it does not support --format= it doesn't create
1442 # ustar tarball either.
1443 (tar --version) >/dev/null 2>&1 && continue
1444 am__tar='tar chf - "$$tardir"'
1445 am__tar_='tar chf - "$tardir"'
1446 am__untar='tar xf -'
1447 ;;
1448 pax)
1449 am__tar='pax -L -x $1 -w "$$tardir"'
1450 am__tar_='pax -L -x $1 -w "$tardir"'
1451 am__untar='pax -r'
1452 ;;
1453 cpio)
1454 am__tar='find "$$tardir" -print | cpio -o -H $1 -L'
1455 am__tar_='find "$tardir" -print | cpio -o -H $1 -L'
1456 am__untar='cpio -i -H $1 -d'
1457 ;;
1458 none)
1459 am__tar=false
1460 am__tar_=false
1461 am__untar=false
1462 ;;
1463 esac
1464
1465 # If the value was cached, stop now. We just wanted to have am__tar
1466 # and am__untar set.
1467 test -n "${am_cv_prog_tar_$1}" && break
1468
1469 # tar/untar a dummy directory, and stop if the command works.
1470 rm -rf conftest.dir
1471 mkdir conftest.dir
1472 echo GrepMe > conftest.dir/file
1473 AM_RUN_LOG([tardir=conftest.dir && eval $am__tar_ >conftest.tar])
1474 rm -rf conftest.dir
1475 if test -s conftest.tar; then
1476 AM_RUN_LOG([$am__untar <conftest.tar])
1477 AM_RUN_LOG([cat conftest.dir/file])
1478 grep GrepMe conftest.dir/file >/dev/null 2>&1 && break
1479 fi
1480 done
1481 rm -rf conftest.dir
1482
1483 AC_CACHE_VAL([am_cv_prog_tar_$1], [am_cv_prog_tar_$1=$_am_tool])
1484 AC_MSG_RESULT([$am_cv_prog_tar_$1])])
1485
1486 AC_SUBST([am__tar])
1487 AC_SUBST([am__untar])
1488 ]) # _AM_PROG_TAR
1489
1490 m4_include([m4/ax_check_compile_flag.m4])
1491 m4_include([m4/gettext.m4])
1492 m4_include([m4/iconv.m4])
1493 m4_include([m4/lib-ld.m4])
1494 m4_include([m4/lib-link.m4])
1495 m4_include([m4/lib-prefix.m4])
1496 m4_include([m4/nls.m4])
1497 m4_include([m4/po.m4])
1498 m4_include([m4/progtest.m4])
This page took 0.098852 seconds and 5 git commands to generate.