976110314dbdb7bb91ff2f12fbfb7542b869a512
[platform/upstream/fontconfig.git] / aclocal.m4
1 # generated automatically by aclocal 1.12.2 -*- 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.2], [],
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.2])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 # For better backward compatibility.  To be removed once Automake 1.9.x
702 # dies out for good.  For more background, see:
703 # <http://lists.gnu.org/archive/html/automake/2012-07/msg00001.html>
704 # <http://lists.gnu.org/archive/html/automake/2012-07/msg00014.html>
705 AC_SUBST([mkdir_p], ['$(MKDIR_P)'])
706 # We need awk for the "check" target.  The system "awk" is bad on
707 # some platforms.
708 AC_REQUIRE([AC_PROG_AWK])dnl
709 AC_REQUIRE([AC_PROG_MAKE_SET])dnl
710 AC_REQUIRE([AM_SET_LEADING_DOT])dnl
711 _AM_IF_OPTION([tar-ustar], [_AM_PROG_TAR([ustar])],
712               [_AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])],
713                              [_AM_PROG_TAR([v7])])])
714 _AM_IF_OPTION([no-dependencies],,
715 [AC_PROVIDE_IFELSE([AC_PROG_CC],
716                   [_AM_DEPENDENCIES([CC])],
717                   [m4_define([AC_PROG_CC],
718                              m4_defn([AC_PROG_CC])[_AM_DEPENDENCIES([CC])])])dnl
719 AC_PROVIDE_IFELSE([AC_PROG_CXX],
720                   [_AM_DEPENDENCIES([CXX])],
721                   [m4_define([AC_PROG_CXX],
722                              m4_defn([AC_PROG_CXX])[_AM_DEPENDENCIES([CXX])])])dnl
723 AC_PROVIDE_IFELSE([AC_PROG_OBJC],
724                   [_AM_DEPENDENCIES([OBJC])],
725                   [m4_define([AC_PROG_OBJC],
726                              m4_defn([AC_PROG_OBJC])[_AM_DEPENDENCIES([OBJC])])])dnl
727 dnl Support for Objective C++ was only introduced in Autoconf 2.65,
728 dnl but we still cater to Autoconf 2.62.
729 m4_ifdef([AC_PROG_OBJCXX],
730 [AC_PROVIDE_IFELSE([AC_PROG_OBJCXX],
731                   [_AM_DEPENDENCIES([OBJCXX])],
732                   [m4_define([AC_PROG_OBJCXX],
733                              m4_defn([AC_PROG_OBJCXX])[_AM_DEPENDENCIES([OBJCXX])])])])dnl
734 ])
735 _AM_IF_OPTION([silent-rules], [AC_REQUIRE([AM_SILENT_RULES])])dnl
736 dnl The 'parallel-tests' driver may need to know about EXEEXT, so add the
737 dnl 'am__EXEEXT' conditional if _AM_COMPILER_EXEEXT was seen.  This macro
738 dnl is hooked onto _AC_COMPILER_EXEEXT early, see below.
739 AC_CONFIG_COMMANDS_PRE(dnl
740 [m4_provide_if([_AM_COMPILER_EXEEXT],
741   [AM_CONDITIONAL([am__EXEEXT], [test -n "$EXEEXT"])])])dnl
742 ])
743
744 dnl Hook into '_AC_COMPILER_EXEEXT' early to learn its expansion.  Do not
745 dnl add the conditional right here, as _AC_COMPILER_EXEEXT may be further
746 dnl mangled by Autoconf and run in a shell conditional statement.
747 m4_define([_AC_COMPILER_EXEEXT],
748 m4_defn([_AC_COMPILER_EXEEXT])[m4_provide([_AM_COMPILER_EXEEXT])])
749
750
751 # When config.status generates a header, we must update the stamp-h file.
752 # This file resides in the same directory as the config header
753 # that is generated.  The stamp files are numbered to have different names.
754
755 # Autoconf calls _AC_AM_CONFIG_HEADER_HOOK (when defined) in the
756 # loop where config.status creates the headers, so we can generate
757 # our stamp files there.
758 AC_DEFUN([_AC_AM_CONFIG_HEADER_HOOK],
759 [# Compute $1's index in $config_headers.
760 _am_arg=$1
761 _am_stamp_count=1
762 for _am_header in $config_headers :; do
763   case $_am_header in
764     $_am_arg | $_am_arg:* )
765       break ;;
766     * )
767       _am_stamp_count=`expr $_am_stamp_count + 1` ;;
768   esac
769 done
770 echo "timestamp for $_am_arg" >`AS_DIRNAME(["$_am_arg"])`/stamp-h[]$_am_stamp_count])
771
772 # Copyright (C) 2001-2012 Free Software Foundation, Inc.
773 #
774 # This file is free software; the Free Software Foundation
775 # gives unlimited permission to copy and/or distribute it,
776 # with or without modifications, as long as this notice is preserved.
777
778 # serial 8
779
780 # AM_PROG_INSTALL_SH
781 # ------------------
782 # Define $install_sh.
783 AC_DEFUN([AM_PROG_INSTALL_SH],
784 [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
785 if test x"${install_sh}" != xset; then
786   case $am_aux_dir in
787   *\ * | *\     *)
788     install_sh="\${SHELL} '$am_aux_dir/install-sh'" ;;
789   *)
790     install_sh="\${SHELL} $am_aux_dir/install-sh"
791   esac
792 fi
793 AC_SUBST([install_sh])])
794
795 # Copyright (C) 2003-2012 Free Software Foundation, Inc.
796 #
797 # This file is free software; the Free Software Foundation
798 # gives unlimited permission to copy and/or distribute it,
799 # with or without modifications, as long as this notice is preserved.
800
801 # serial 2
802
803 # Check whether the underlying file-system supports filenames
804 # with a leading dot.  For instance MS-DOS doesn't.
805 AC_DEFUN([AM_SET_LEADING_DOT],
806 [rm -rf .tst 2>/dev/null
807 mkdir .tst 2>/dev/null
808 if test -d .tst; then
809   am__leading_dot=.
810 else
811   am__leading_dot=_
812 fi
813 rmdir .tst 2>/dev/null
814 AC_SUBST([am__leading_dot])])
815
816 # Check to see how 'make' treats includes.                  -*- Autoconf -*-
817
818 # Copyright (C) 2001-2012 Free Software Foundation, Inc.
819 #
820 # This file is free software; the Free Software Foundation
821 # gives unlimited permission to copy and/or distribute it,
822 # with or without modifications, as long as this notice is preserved.
823
824 # serial 5
825
826 # AM_MAKE_INCLUDE()
827 # -----------------
828 # Check to see how make treats includes.
829 AC_DEFUN([AM_MAKE_INCLUDE],
830 [am_make=${MAKE-make}
831 cat > confinc << 'END'
832 am__doit:
833         @echo this is the am__doit target
834 .PHONY: am__doit
835 END
836 # If we don't find an include directive, just comment out the code.
837 AC_MSG_CHECKING([for style of include used by $am_make])
838 am__include="#"
839 am__quote=
840 _am_result=none
841 # First try GNU make style include.
842 echo "include confinc" > confmf
843 # Ignore all kinds of additional output from 'make'.
844 case `$am_make -s -f confmf 2> /dev/null` in #(
845 *the\ am__doit\ target*)
846   am__include=include
847   am__quote=
848   _am_result=GNU
849   ;;
850 esac
851 # Now try BSD make style include.
852 if test "$am__include" = "#"; then
853    echo '.include "confinc"' > confmf
854    case `$am_make -s -f confmf 2> /dev/null` in #(
855    *the\ am__doit\ target*)
856      am__include=.include
857      am__quote="\""
858      _am_result=BSD
859      ;;
860    esac
861 fi
862 AC_SUBST([am__include])
863 AC_SUBST([am__quote])
864 AC_MSG_RESULT([$_am_result])
865 rm -f confinc confmf
866 ])
867
868 # Fake the existence of programs that GNU maintainers use.  -*- Autoconf -*-
869
870 # Copyright (C) 1997-2012 Free Software Foundation, Inc.
871 #
872 # This file is free software; the Free Software Foundation
873 # gives unlimited permission to copy and/or distribute it,
874 # with or without modifications, as long as this notice is preserved.
875
876 # serial 7
877
878 # AM_MISSING_PROG(NAME, PROGRAM)
879 # ------------------------------
880 AC_DEFUN([AM_MISSING_PROG],
881 [AC_REQUIRE([AM_MISSING_HAS_RUN])
882 $1=${$1-"${am_missing_run}$2"}
883 AC_SUBST($1)])
884
885
886 # AM_MISSING_HAS_RUN
887 # ------------------
888 # Define MISSING if not defined so far and test if it supports --run.
889 # If it does, set am_missing_run to use it, otherwise, to nothing.
890 AC_DEFUN([AM_MISSING_HAS_RUN],
891 [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
892 AC_REQUIRE_AUX_FILE([missing])dnl
893 if test x"${MISSING+set}" != xset; then
894   case $am_aux_dir in
895   *\ * | *\     *)
896     MISSING="\${SHELL} \"$am_aux_dir/missing\"" ;;
897   *)
898     MISSING="\${SHELL} $am_aux_dir/missing" ;;
899   esac
900 fi
901 # Use eval to expand $SHELL
902 if eval "$MISSING --run true"; then
903   am_missing_run="$MISSING --run "
904 else
905   am_missing_run=
906   AC_MSG_WARN(['missing' script is too old or missing])
907 fi
908 ])
909
910 # Helper functions for option handling.                     -*- Autoconf -*-
911
912 # Copyright (C) 2001-2012 Free Software Foundation, Inc.
913 #
914 # This file is free software; the Free Software Foundation
915 # gives unlimited permission to copy and/or distribute it,
916 # with or without modifications, as long as this notice is preserved.
917
918 # serial 6
919
920 # _AM_MANGLE_OPTION(NAME)
921 # -----------------------
922 AC_DEFUN([_AM_MANGLE_OPTION],
923 [[_AM_OPTION_]m4_bpatsubst($1, [[^a-zA-Z0-9_]], [_])])
924
925 # _AM_SET_OPTION(NAME)
926 # --------------------
927 # Set option NAME.  Presently that only means defining a flag for this option.
928 AC_DEFUN([_AM_SET_OPTION],
929 [m4_define(_AM_MANGLE_OPTION([$1]), [1])])
930
931 # _AM_SET_OPTIONS(OPTIONS)
932 # ------------------------
933 # OPTIONS is a space-separated list of Automake options.
934 AC_DEFUN([_AM_SET_OPTIONS],
935 [m4_foreach_w([_AM_Option], [$1], [_AM_SET_OPTION(_AM_Option)])])
936
937 # _AM_IF_OPTION(OPTION, IF-SET, [IF-NOT-SET])
938 # -------------------------------------------
939 # Execute IF-SET if OPTION is set, IF-NOT-SET otherwise.
940 AC_DEFUN([_AM_IF_OPTION],
941 [m4_ifset(_AM_MANGLE_OPTION([$1]), [$2], [$3])])
942
943 # Check to make sure that the build environment is sane.    -*- Autoconf -*-
944
945 # Copyright (C) 1996-2012 Free Software Foundation, Inc.
946 #
947 # This file is free software; the Free Software Foundation
948 # gives unlimited permission to copy and/or distribute it,
949 # with or without modifications, as long as this notice is preserved.
950
951 # serial 9
952
953 # AM_SANITY_CHECK
954 # ---------------
955 AC_DEFUN([AM_SANITY_CHECK],
956 [AC_MSG_CHECKING([whether build environment is sane])
957 # Reject unsafe characters in $srcdir or the absolute working directory
958 # name.  Accept space and tab only in the latter.
959 am_lf='
960 '
961 case `pwd` in
962   *[[\\\"\#\$\&\'\`$am_lf]]*)
963     AC_MSG_ERROR([unsafe absolute working directory name]);;
964 esac
965 case $srcdir in
966   *[[\\\"\#\$\&\'\`$am_lf\ \    ]]*)
967     AC_MSG_ERROR([unsafe srcdir value: '$srcdir']);;
968 esac
969
970 # Do 'set' in a subshell so we don't clobber the current shell's
971 # arguments.  Must try -L first in case configure is actually a
972 # symlink; some systems play weird games with the mod time of symlinks
973 # (eg FreeBSD returns the mod time of the symlink's containing
974 # directory).
975 if (
976    am_has_slept=no
977    for am_try in 1 2; do
978      echo "timestamp, slept: $am_has_slept" > conftest.file
979      set X `ls -Lt "$srcdir/configure" conftest.file 2> /dev/null`
980      if test "$[*]" = "X"; then
981         # -L didn't work.
982         set X `ls -t "$srcdir/configure" conftest.file`
983      fi
984      if test "$[*]" != "X $srcdir/configure conftest.file" \
985         && test "$[*]" != "X conftest.file $srcdir/configure"; then
986
987         # If neither matched, then we have a broken ls.  This can happen
988         # if, for instance, CONFIG_SHELL is bash and it inherits a
989         # broken ls alias from the environment.  This has actually
990         # happened.  Such a system could not be considered "sane".
991         AC_MSG_ERROR([ls -t appears to fail.  Make sure there is not a broken
992   alias in your environment])
993      fi
994      if test "$[2]" = conftest.file || test $am_try -eq 2; then
995        break
996      fi
997      # Just in case.
998      sleep 1
999      am_has_slept=yes
1000    done
1001    test "$[2]" = conftest.file
1002    )
1003 then
1004    # Ok.
1005    :
1006 else
1007    AC_MSG_ERROR([newly created file is older than distributed files!
1008 Check your system clock])
1009 fi
1010 AC_MSG_RESULT([yes])
1011 # If we didn't sleep, we still need to ensure time stamps of config.status and
1012 # generated files are strictly newer.
1013 am_sleep_pid=
1014 if grep 'slept: no' conftest.file >/dev/null 2>&1; then
1015   ( sleep 1 ) &
1016   am_sleep_pid=$!
1017 fi
1018 AC_CONFIG_COMMANDS_PRE(
1019   [AC_MSG_CHECKING([that generated files are newer than configure])
1020    if test -n "$am_sleep_pid"; then
1021      # Hide warnings about reused PIDs.
1022      wait $am_sleep_pid 2>/dev/null
1023    fi
1024    AC_MSG_RESULT([done])])
1025 rm -f conftest.file
1026 ])
1027
1028 # Copyright (C) 2009-2012 Free Software Foundation, Inc.
1029 #
1030 # This file is free software; the Free Software Foundation
1031 # gives unlimited permission to copy and/or distribute it,
1032 # with or without modifications, as long as this notice is preserved.
1033
1034 # serial 3
1035
1036 # AM_SILENT_RULES([DEFAULT])
1037 # --------------------------
1038 # Enable less verbose build rules; with the default set to DEFAULT
1039 # ("yes" being less verbose, "no" or empty being verbose).
1040 AC_DEFUN([AM_SILENT_RULES],
1041 [AC_ARG_ENABLE([silent-rules], [dnl
1042 AS_HELP_STRING(
1043   [--enable-silent-rules],
1044   [less verbose build output (undo: "make V=1")])
1045 AS_HELP_STRING(
1046   [--disable-silent-rules],
1047   [verbose build output (undo: "make V=0")])dnl
1048 ])
1049 case $enable_silent_rules in @%:@ (((
1050   yes) AM_DEFAULT_VERBOSITY=0;;
1051    no) AM_DEFAULT_VERBOSITY=1;;
1052     *) AM_DEFAULT_VERBOSITY=m4_if([$1], [yes], [0], [1]);;
1053 esac
1054 dnl
1055 dnl A few 'make' implementations (e.g., NonStop OS and NextStep)
1056 dnl do not support nested variable expansions.
1057 dnl See automake bug#9928 and bug#10237.
1058 am_make=${MAKE-make}
1059 AC_CACHE_CHECK([whether $am_make supports nested variables],
1060    [am_cv_make_support_nested_variables],
1061    [if AS_ECHO([['TRUE=$(BAR$(V))
1062 BAR0=false
1063 BAR1=true
1064 V=1
1065 am__doit:
1066         @$(TRUE)
1067 .PHONY: am__doit']]) | $am_make -f - >/dev/null 2>&1; then
1068   am_cv_make_support_nested_variables=yes
1069 else
1070   am_cv_make_support_nested_variables=no
1071 fi])
1072 if test $am_cv_make_support_nested_variables = yes; then
1073   dnl Using '$V' instead of '$(V)' breaks IRIX make.
1074   AM_V='$(V)'
1075   AM_DEFAULT_V='$(AM_DEFAULT_VERBOSITY)'
1076 else
1077   AM_V=$AM_DEFAULT_VERBOSITY
1078   AM_DEFAULT_V=$AM_DEFAULT_VERBOSITY
1079 fi
1080 AC_SUBST([AM_V])dnl
1081 AM_SUBST_NOTMAKE([AM_V])dnl
1082 AC_SUBST([AM_DEFAULT_V])dnl
1083 AM_SUBST_NOTMAKE([AM_DEFAULT_V])dnl
1084 AC_SUBST([AM_DEFAULT_VERBOSITY])dnl
1085 AM_BACKSLASH='\'
1086 AC_SUBST([AM_BACKSLASH])dnl
1087 _AM_SUBST_NOTMAKE([AM_BACKSLASH])dnl
1088 ])
1089
1090 # Copyright (C) 2001-2012 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 # serial 2
1097
1098 # AM_PROG_INSTALL_STRIP
1099 # ---------------------
1100 # One issue with vendor 'install' (even GNU) is that you can't
1101 # specify the program used to strip binaries.  This is especially
1102 # annoying in cross-compiling environments, where the build's strip
1103 # is unlikely to handle the host's binaries.
1104 # Fortunately install-sh will honor a STRIPPROG variable, so we
1105 # always use install-sh in "make install-strip", and initialize
1106 # STRIPPROG with the value of the STRIP variable (set by the user).
1107 AC_DEFUN([AM_PROG_INSTALL_STRIP],
1108 [AC_REQUIRE([AM_PROG_INSTALL_SH])dnl
1109 # Installed binaries are usually stripped using 'strip' when the user
1110 # run "make install-strip".  However 'strip' might not be the right
1111 # tool to use in cross-compilation environments, therefore Automake
1112 # will honor the 'STRIP' environment variable to overrule this program.
1113 dnl Don't test for $cross_compiling = yes, because it might be 'maybe'.
1114 if test "$cross_compiling" != no; then
1115   AC_CHECK_TOOL([STRIP], [strip], :)
1116 fi
1117 INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s"
1118 AC_SUBST([INSTALL_STRIP_PROGRAM])])
1119
1120 # Copyright (C) 2006-2012 Free Software Foundation, Inc.
1121 #
1122 # This file is free software; the Free Software Foundation
1123 # gives unlimited permission to copy and/or distribute it,
1124 # with or without modifications, as long as this notice is preserved.
1125
1126 # serial 3
1127
1128 # _AM_SUBST_NOTMAKE(VARIABLE)
1129 # ---------------------------
1130 # Prevent Automake from outputting VARIABLE = @VARIABLE@ in Makefile.in.
1131 # This macro is traced by Automake.
1132 AC_DEFUN([_AM_SUBST_NOTMAKE])
1133
1134 # AM_SUBST_NOTMAKE(VARIABLE)
1135 # --------------------------
1136 # Public sister of _AM_SUBST_NOTMAKE.
1137 AC_DEFUN([AM_SUBST_NOTMAKE], [_AM_SUBST_NOTMAKE($@)])
1138
1139 # Check how to create a tarball.                            -*- Autoconf -*-
1140
1141 # Copyright (C) 2004-2012 Free Software Foundation, Inc.
1142 #
1143 # This file is free software; the Free Software Foundation
1144 # gives unlimited permission to copy and/or distribute it,
1145 # with or without modifications, as long as this notice is preserved.
1146
1147 # serial 3
1148
1149 # _AM_PROG_TAR(FORMAT)
1150 # --------------------
1151 # Check how to create a tarball in format FORMAT.
1152 # FORMAT should be one of 'v7', 'ustar', or 'pax'.
1153 #
1154 # Substitute a variable $(am__tar) that is a command
1155 # writing to stdout a FORMAT-tarball containing the directory
1156 # $tardir.
1157 #     tardir=directory && $(am__tar) > result.tar
1158 #
1159 # Substitute a variable $(am__untar) that extract such
1160 # a tarball read from stdin.
1161 #     $(am__untar) < result.tar
1162 AC_DEFUN([_AM_PROG_TAR],
1163 [# Always define AMTAR for backward compatibility.  Yes, it's still used
1164 # in the wild :-(  We should find a proper way to deprecate it ...
1165 AC_SUBST([AMTAR], ['$${TAR-tar}'])
1166 m4_if([$1], [v7],
1167      [am__tar='$${TAR-tar} chof - "$$tardir"' am__untar='$${TAR-tar} xf -'],
1168      [m4_case([$1], [ustar],, [pax],,
1169               [m4_fatal([Unknown tar format])])
1170 AC_MSG_CHECKING([how to create a $1 tar archive])
1171 # Loop over all known methods to create a tar archive until one works.
1172 _am_tools='gnutar m4_if([$1], [ustar], [plaintar]) pax cpio none'
1173 _am_tools=${am_cv_prog_tar_$1-$_am_tools}
1174 # Do not fold the above two line into one, because Tru64 sh and
1175 # Solaris sh will not grok spaces in the rhs of '-'.
1176 for _am_tool in $_am_tools
1177 do
1178   case $_am_tool in
1179   gnutar)
1180     for _am_tar in tar gnutar gtar;
1181     do
1182       AM_RUN_LOG([$_am_tar --version]) && break
1183     done
1184     am__tar="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$$tardir"'
1185     am__tar_="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$tardir"'
1186     am__untar="$_am_tar -xf -"
1187     ;;
1188   plaintar)
1189     # Must skip GNU tar: if it does not support --format= it doesn't create
1190     # ustar tarball either.
1191     (tar --version) >/dev/null 2>&1 && continue
1192     am__tar='tar chf - "$$tardir"'
1193     am__tar_='tar chf - "$tardir"'
1194     am__untar='tar xf -'
1195     ;;
1196   pax)
1197     am__tar='pax -L -x $1 -w "$$tardir"'
1198     am__tar_='pax -L -x $1 -w "$tardir"'
1199     am__untar='pax -r'
1200     ;;
1201   cpio)
1202     am__tar='find "$$tardir" -print | cpio -o -H $1 -L'
1203     am__tar_='find "$tardir" -print | cpio -o -H $1 -L'
1204     am__untar='cpio -i -H $1 -d'
1205     ;;
1206   none)
1207     am__tar=false
1208     am__tar_=false
1209     am__untar=false
1210     ;;
1211   esac
1212
1213   # If the value was cached, stop now.  We just wanted to have am__tar
1214   # and am__untar set.
1215   test -n "${am_cv_prog_tar_$1}" && break
1216
1217   # tar/untar a dummy directory, and stop if the command works
1218   rm -rf conftest.dir
1219   mkdir conftest.dir
1220   echo GrepMe > conftest.dir/file
1221   AM_RUN_LOG([tardir=conftest.dir && eval $am__tar_ >conftest.tar])
1222   rm -rf conftest.dir
1223   if test -s conftest.tar; then
1224     AM_RUN_LOG([$am__untar <conftest.tar])
1225     grep GrepMe conftest.dir/file >/dev/null 2>&1 && break
1226   fi
1227 done
1228 rm -rf conftest.dir
1229
1230 AC_CACHE_VAL([am_cv_prog_tar_$1], [am_cv_prog_tar_$1=$_am_tool])
1231 AC_MSG_RESULT([$am_cv_prog_tar_$1])])
1232 AC_SUBST([am__tar])
1233 AC_SUBST([am__untar])
1234 ]) # _AM_PROG_TAR
1235
1236 m4_include([m4/ax_cc_for_build.m4])
1237 m4_include([m4/ax_create_stdint_h.m4])
1238 m4_include([m4/ax_pthread.m4])
1239 m4_include([m4/libtool.m4])
1240 m4_include([m4/ltoptions.m4])
1241 m4_include([m4/ltsugar.m4])
1242 m4_include([m4/ltversion.m4])
1243 m4_include([m4/lt~obsolete.m4])