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