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