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