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