Merge branch 'tizen' into mw
[sdk/emulator/libs/spice-server.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 # Copyright (C) 2011-2012 Free Software Foundation, Inc.
261 #
262 # This file is free software; the Free Software Foundation
263 # gives unlimited permission to copy and/or distribute it,
264 # with or without modifications, as long as this notice is preserved.
265
266 # serial 1
267
268 # AM_PROG_AR([ACT-IF-FAIL])
269 # -------------------------
270 # Try to determine the archiver interface, and trigger the ar-lib wrapper
271 # if it is needed.  If the detection of archiver interface fails, run
272 # ACT-IF-FAIL (default is to abort configure with a proper error message).
273 AC_DEFUN([AM_PROG_AR],
274 [AC_BEFORE([$0], [LT_INIT])dnl
275 AC_BEFORE([$0], [AC_PROG_LIBTOOL])dnl
276 AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
277 AC_REQUIRE_AUX_FILE([ar-lib])dnl
278 AC_CHECK_TOOLS([AR], [ar lib "link -lib"], [false])
279 : ${AR=ar}
280
281 AC_CACHE_CHECK([the archiver ($AR) interface], [am_cv_ar_interface],
282   [am_cv_ar_interface=ar
283    AC_COMPILE_IFELSE([AC_LANG_SOURCE([[int some_variable = 0;]])],
284      [am_ar_try='$AR cru libconftest.a conftest.$ac_objext >&AS_MESSAGE_LOG_FD'
285       AC_TRY_EVAL([am_ar_try])
286       if test "$ac_status" -eq 0; then
287         am_cv_ar_interface=ar
288       else
289         am_ar_try='$AR -NOLOGO -OUT:conftest.lib conftest.$ac_objext >&AS_MESSAGE_LOG_FD'
290         AC_TRY_EVAL([am_ar_try])
291         if test "$ac_status" -eq 0; then
292           am_cv_ar_interface=lib
293         else
294           am_cv_ar_interface=unknown
295         fi
296       fi
297       rm -f conftest.lib libconftest.a
298      ])
299    ])
300
301 case $am_cv_ar_interface in
302 ar)
303   ;;
304 lib)
305   # Microsoft lib, so override with the ar-lib wrapper script.
306   # FIXME: It is wrong to rewrite AR.
307   # But if we don't then we get into trouble of one sort or another.
308   # A longer-term fix would be to have automake use am__AR in this case,
309   # and then we could set am__AR="$am_aux_dir/ar-lib \$(AR)" or something
310   # similar.
311   AR="$am_aux_dir/ar-lib $AR"
312   ;;
313 unknown)
314   m4_default([$1],
315              [AC_MSG_ERROR([could not determine $AR interface])])
316   ;;
317 esac
318 AC_SUBST([AR])dnl
319 ])
320
321 # AM_AUX_DIR_EXPAND                                         -*- Autoconf -*-
322
323 # Copyright (C) 2001-2012 Free Software Foundation, Inc.
324 #
325 # This file is free software; the Free Software Foundation
326 # gives unlimited permission to copy and/or distribute it,
327 # with or without modifications, as long as this notice is preserved.
328
329 # serial 2
330
331 # For projects using AC_CONFIG_AUX_DIR([foo]), Autoconf sets
332 # $ac_aux_dir to '$srcdir/foo'.  In other projects, it is set to
333 # '$srcdir', '$srcdir/..', or '$srcdir/../..'.
334 #
335 # Of course, Automake must honor this variable whenever it calls a
336 # tool from the auxiliary directory.  The problem is that $srcdir (and
337 # therefore $ac_aux_dir as well) can be either absolute or relative,
338 # depending on how configure is run.  This is pretty annoying, since
339 # it makes $ac_aux_dir quite unusable in subdirectories: in the top
340 # source directory, any form will work fine, but in subdirectories a
341 # relative path needs to be adjusted first.
342 #
343 # $ac_aux_dir/missing
344 #    fails when called from a subdirectory if $ac_aux_dir is relative
345 # $top_srcdir/$ac_aux_dir/missing
346 #    fails if $ac_aux_dir is absolute,
347 #    fails when called from a subdirectory in a VPATH build with
348 #          a relative $ac_aux_dir
349 #
350 # The reason of the latter failure is that $top_srcdir and $ac_aux_dir
351 # are both prefixed by $srcdir.  In an in-source build this is usually
352 # harmless because $srcdir is '.', but things will broke when you
353 # start a VPATH build or use an absolute $srcdir.
354 #
355 # So we could use something similar to $top_srcdir/$ac_aux_dir/missing,
356 # iff we strip the leading $srcdir from $ac_aux_dir.  That would be:
357 #   am_aux_dir='\$(top_srcdir)/'`expr "$ac_aux_dir" : "$srcdir//*\(.*\)"`
358 # and then we would define $MISSING as
359 #   MISSING="\${SHELL} $am_aux_dir/missing"
360 # This will work as long as MISSING is not called from configure, because
361 # unfortunately $(top_srcdir) has no meaning in configure.
362 # However there are other variables, like CC, which are often used in
363 # configure, and could therefore not use this "fixed" $ac_aux_dir.
364 #
365 # Another solution, used here, is to always expand $ac_aux_dir to an
366 # absolute PATH.  The drawback is that using absolute paths prevent a
367 # configured tree to be moved without reconfiguration.
368
369 AC_DEFUN([AM_AUX_DIR_EXPAND],
370 [dnl Rely on autoconf to set up CDPATH properly.
371 AC_PREREQ([2.50])dnl
372 # expand $ac_aux_dir to an absolute path
373 am_aux_dir=`cd $ac_aux_dir && pwd`
374 ])
375
376 # AM_CONDITIONAL                                            -*- Autoconf -*-
377
378 # Copyright (C) 1997-2012 Free Software Foundation, Inc.
379 #
380 # This file is free software; the Free Software Foundation
381 # gives unlimited permission to copy and/or distribute it,
382 # with or without modifications, as long as this notice is preserved.
383
384 # serial 10
385
386 # AM_CONDITIONAL(NAME, SHELL-CONDITION)
387 # -------------------------------------
388 # Define a conditional.
389 AC_DEFUN([AM_CONDITIONAL],
390 [AC_PREREQ([2.52])dnl
391  m4_if([$1], [TRUE],  [AC_FATAL([$0: invalid condition: $1])],
392        [$1], [FALSE], [AC_FATAL([$0: invalid condition: $1])])dnl
393 AC_SUBST([$1_TRUE])dnl
394 AC_SUBST([$1_FALSE])dnl
395 _AM_SUBST_NOTMAKE([$1_TRUE])dnl
396 _AM_SUBST_NOTMAKE([$1_FALSE])dnl
397 m4_define([_AM_COND_VALUE_$1], [$2])dnl
398 if $2; then
399   $1_TRUE=
400   $1_FALSE='#'
401 else
402   $1_TRUE='#'
403   $1_FALSE=
404 fi
405 AC_CONFIG_COMMANDS_PRE(
406 [if test -z "${$1_TRUE}" && test -z "${$1_FALSE}"; then
407   AC_MSG_ERROR([[conditional "$1" was never defined.
408 Usually this means the macro was only invoked conditionally.]])
409 fi])])
410
411 # Copyright (C) 1999-2012 Free Software Foundation, Inc.
412 #
413 # This file is free software; the Free Software Foundation
414 # gives unlimited permission to copy and/or distribute it,
415 # with or without modifications, as long as this notice is preserved.
416
417 # serial 17
418
419 # There are a few dirty hacks below to avoid letting 'AC_PROG_CC' be
420 # written in clear, in which case automake, when reading aclocal.m4,
421 # will think it sees a *use*, and therefore will trigger all it's
422 # C support machinery.  Also note that it means that autoscan, seeing
423 # CC etc. in the Makefile, will ask for an AC_PROG_CC use...
424
425
426 # _AM_DEPENDENCIES(NAME)
427 # ----------------------
428 # See how the compiler implements dependency checking.
429 # NAME is "CC", "CXX", "OBJC", "OBJCXX", "UPC", or "GJC".
430 # We try a few techniques and use that to set a single cache variable.
431 #
432 # We don't AC_REQUIRE the corresponding AC_PROG_CC since the latter was
433 # modified to invoke _AM_DEPENDENCIES(CC); we would have a circular
434 # dependency, and given that the user is not expected to run this macro,
435 # just rely on AC_PROG_CC.
436 AC_DEFUN([_AM_DEPENDENCIES],
437 [AC_REQUIRE([AM_SET_DEPDIR])dnl
438 AC_REQUIRE([AM_OUTPUT_DEPENDENCY_COMMANDS])dnl
439 AC_REQUIRE([AM_MAKE_INCLUDE])dnl
440 AC_REQUIRE([AM_DEP_TRACK])dnl
441
442 m4_if([$1], [CC],   [depcc="$CC"   am_compiler_list=],
443       [$1], [CXX],  [depcc="$CXX"  am_compiler_list=],
444       [$1], [OBJC], [depcc="$OBJC" am_compiler_list='gcc3 gcc'],
445       [$1], [OBJCXX], [depcc="$OBJCXX" am_compiler_list='gcc3 gcc'],
446       [$1], [UPC],  [depcc="$UPC"  am_compiler_list=],
447       [$1], [GCJ],  [depcc="$GCJ"  am_compiler_list='gcc3 gcc'],
448                     [depcc="$$1"   am_compiler_list=])
449
450 AC_CACHE_CHECK([dependency style of $depcc],
451                [am_cv_$1_dependencies_compiler_type],
452 [if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then
453   # We make a subdir and do the tests there.  Otherwise we can end up
454   # making bogus files that we don't know about and never remove.  For
455   # instance it was reported that on HP-UX the gcc test will end up
456   # making a dummy file named 'D' -- because '-MD' means "put the output
457   # in D".
458   rm -rf conftest.dir
459   mkdir conftest.dir
460   # Copy depcomp to subdir because otherwise we won't find it if we're
461   # using a relative directory.
462   cp "$am_depcomp" conftest.dir
463   cd conftest.dir
464   # We will build objects and dependencies in a subdirectory because
465   # it helps to detect inapplicable dependency modes.  For instance
466   # both Tru64's cc and ICC support -MD to output dependencies as a
467   # side effect of compilation, but ICC will put the dependencies in
468   # the current directory while Tru64 will put them in the object
469   # directory.
470   mkdir sub
471
472   am_cv_$1_dependencies_compiler_type=none
473   if test "$am_compiler_list" = ""; then
474      am_compiler_list=`sed -n ['s/^#*\([a-zA-Z0-9]*\))$/\1/p'] < ./depcomp`
475   fi
476   am__universal=false
477   m4_case([$1], [CC],
478     [case " $depcc " in #(
479      *\ -arch\ *\ -arch\ *) am__universal=true ;;
480      esac],
481     [CXX],
482     [case " $depcc " in #(
483      *\ -arch\ *\ -arch\ *) am__universal=true ;;
484      esac])
485
486   for depmode in $am_compiler_list; do
487     # Setup a source with many dependencies, because some compilers
488     # like to wrap large dependency lists on column 80 (with \), and
489     # we should not choose a depcomp mode which is confused by this.
490     #
491     # We need to recreate these files for each test, as the compiler may
492     # overwrite some of them when testing with obscure command lines.
493     # This happens at least with the AIX C compiler.
494     : > sub/conftest.c
495     for i in 1 2 3 4 5 6; do
496       echo '#include "conftst'$i'.h"' >> sub/conftest.c
497       # Using ": > sub/conftst$i.h" creates only sub/conftst1.h with
498       # Solaris 10 /bin/sh.
499       echo '/* dummy */' > sub/conftst$i.h
500     done
501     echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf
502
503     # We check with '-c' and '-o' for the sake of the "dashmstdout"
504     # mode.  It turns out that the SunPro C++ compiler does not properly
505     # handle '-M -o', and we need to detect this.  Also, some Intel
506     # versions had trouble with output in subdirs.
507     am__obj=sub/conftest.${OBJEXT-o}
508     am__minus_obj="-o $am__obj"
509     case $depmode in
510     gcc)
511       # This depmode causes a compiler race in universal mode.
512       test "$am__universal" = false || continue
513       ;;
514     nosideeffect)
515       # After this tag, mechanisms are not by side-effect, so they'll
516       # only be used when explicitly requested.
517       if test "x$enable_dependency_tracking" = xyes; then
518         continue
519       else
520         break
521       fi
522       ;;
523     msvc7 | msvc7msys | msvisualcpp | msvcmsys)
524       # This compiler won't grok '-c -o', but also, the minuso test has
525       # not run yet.  These depmodes are late enough in the game, and
526       # so weak that their functioning should not be impacted.
527       am__obj=conftest.${OBJEXT-o}
528       am__minus_obj=
529       ;;
530     none) break ;;
531     esac
532     if depmode=$depmode \
533        source=sub/conftest.c object=$am__obj \
534        depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \
535        $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \
536          >/dev/null 2>conftest.err &&
537        grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 &&
538        grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 &&
539        grep $am__obj sub/conftest.Po > /dev/null 2>&1 &&
540        ${MAKE-make} -s -f confmf > /dev/null 2>&1; then
541       # icc doesn't choke on unknown options, it will just issue warnings
542       # or remarks (even with -Werror).  So we grep stderr for any message
543       # that says an option was ignored or not supported.
544       # When given -MP, icc 7.0 and 7.1 complain thusly:
545       #   icc: Command line warning: ignoring option '-M'; no argument required
546       # The diagnosis changed in icc 8.0:
547       #   icc: Command line remark: option '-MP' not supported
548       if (grep 'ignoring option' conftest.err ||
549           grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else
550         am_cv_$1_dependencies_compiler_type=$depmode
551         break
552       fi
553     fi
554   done
555
556   cd ..
557   rm -rf conftest.dir
558 else
559   am_cv_$1_dependencies_compiler_type=none
560 fi
561 ])
562 AC_SUBST([$1DEPMODE], [depmode=$am_cv_$1_dependencies_compiler_type])
563 AM_CONDITIONAL([am__fastdep$1], [
564   test "x$enable_dependency_tracking" != xno \
565   && test "$am_cv_$1_dependencies_compiler_type" = gcc3])
566 ])
567
568
569 # AM_SET_DEPDIR
570 # -------------
571 # Choose a directory name for dependency files.
572 # This macro is AC_REQUIREd in _AM_DEPENDENCIES.
573 AC_DEFUN([AM_SET_DEPDIR],
574 [AC_REQUIRE([AM_SET_LEADING_DOT])dnl
575 AC_SUBST([DEPDIR], ["${am__leading_dot}deps"])dnl
576 ])
577
578
579 # AM_DEP_TRACK
580 # ------------
581 AC_DEFUN([AM_DEP_TRACK],
582 [AC_ARG_ENABLE([dependency-tracking], [dnl
583 AS_HELP_STRING(
584   [--enable-dependency-tracking],
585   [do not reject slow dependency extractors])
586 AS_HELP_STRING(
587   [--disable-dependency-tracking],
588   [speeds up one-time build])])
589 if test "x$enable_dependency_tracking" != xno; then
590   am_depcomp="$ac_aux_dir/depcomp"
591   AMDEPBACKSLASH='\'
592   am__nodep='_no'
593 fi
594 AM_CONDITIONAL([AMDEP], [test "x$enable_dependency_tracking" != xno])
595 AC_SUBST([AMDEPBACKSLASH])dnl
596 _AM_SUBST_NOTMAKE([AMDEPBACKSLASH])dnl
597 AC_SUBST([am__nodep])dnl
598 _AM_SUBST_NOTMAKE([am__nodep])dnl
599 ])
600
601 # Generate code to set up dependency tracking.              -*- Autoconf -*-
602
603 # Copyright (C) 1999-2012 Free Software Foundation, Inc.
604 #
605 # This file is free software; the Free Software Foundation
606 # gives unlimited permission to copy and/or distribute it,
607 # with or without modifications, as long as this notice is preserved.
608
609 # serial 6
610
611 # _AM_OUTPUT_DEPENDENCY_COMMANDS
612 # ------------------------------
613 AC_DEFUN([_AM_OUTPUT_DEPENDENCY_COMMANDS],
614 [{
615   # Autoconf 2.62 quotes --file arguments for eval, but not when files
616   # are listed without --file.  Let's play safe and only enable the eval
617   # if we detect the quoting.
618   case $CONFIG_FILES in
619   *\'*) eval set x "$CONFIG_FILES" ;;
620   *)   set x $CONFIG_FILES ;;
621   esac
622   shift
623   for mf
624   do
625     # Strip MF so we end up with the name of the file.
626     mf=`echo "$mf" | sed -e 's/:.*$//'`
627     # Check whether this is an Automake generated Makefile or not.
628     # We used to match only the files named 'Makefile.in', but
629     # some people rename them; so instead we look at the file content.
630     # Grep'ing the first line is not enough: some people post-process
631     # each Makefile.in and add a new line on top of each file to say so.
632     # Grep'ing the whole file is not good either: AIX grep has a line
633     # limit of 2048, but all sed's we know have understand at least 4000.
634     if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then
635       dirpart=`AS_DIRNAME("$mf")`
636     else
637       continue
638     fi
639     # Extract the definition of DEPDIR, am__include, and am__quote
640     # from the Makefile without running 'make'.
641     DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"`
642     test -z "$DEPDIR" && continue
643     am__include=`sed -n 's/^am__include = //p' < "$mf"`
644     test -z "am__include" && continue
645     am__quote=`sed -n 's/^am__quote = //p' < "$mf"`
646     # Find all dependency output files, they are included files with
647     # $(DEPDIR) in their names.  We invoke sed twice because it is the
648     # simplest approach to changing $(DEPDIR) to its actual value in the
649     # expansion.
650     for file in `sed -n "
651       s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \
652          sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g'`; do
653       # Make sure the directory exists.
654       test -f "$dirpart/$file" && continue
655       fdir=`AS_DIRNAME(["$file"])`
656       AS_MKDIR_P([$dirpart/$fdir])
657       # echo "creating $dirpart/$file"
658       echo '# dummy' > "$dirpart/$file"
659     done
660   done
661 }
662 ])# _AM_OUTPUT_DEPENDENCY_COMMANDS
663
664
665 # AM_OUTPUT_DEPENDENCY_COMMANDS
666 # -----------------------------
667 # This macro should only be invoked once -- use via AC_REQUIRE.
668 #
669 # This code is only required when automatic dependency tracking
670 # is enabled.  FIXME.  This creates each '.P' file that we will
671 # need in order to bootstrap the dependency handling code.
672 AC_DEFUN([AM_OUTPUT_DEPENDENCY_COMMANDS],
673 [AC_CONFIG_COMMANDS([depfiles],
674      [test x"$AMDEP_TRUE" != x"" || _AM_OUTPUT_DEPENDENCY_COMMANDS],
675      [AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir"])
676 ])
677
678 # Copyright (C) 1996-2012 Free Software Foundation, Inc.
679 #
680 # This file is free software; the Free Software Foundation
681 # gives unlimited permission to copy and/or distribute it,
682 # with or without modifications, as long as this notice is preserved.
683
684 # serial 8
685
686 # AM_CONFIG_HEADER is obsolete.  It has been replaced by AC_CONFIG_HEADERS.
687 AU_DEFUN([AM_CONFIG_HEADER], [AC_CONFIG_HEADERS($@)])
688
689 # Do all the work for Automake.                             -*- Autoconf -*-
690
691 # Copyright (C) 1996-2012 Free Software Foundation, Inc.
692 #
693 # This file is free software; the Free Software Foundation
694 # gives unlimited permission to copy and/or distribute it,
695 # with or without modifications, as long as this notice is preserved.
696
697 # serial 19
698
699 # This macro actually does too much.  Some checks are only needed if
700 # your package does certain things.  But this isn't really a big deal.
701
702 # AM_INIT_AUTOMAKE(PACKAGE, VERSION, [NO-DEFINE])
703 # AM_INIT_AUTOMAKE([OPTIONS])
704 # -----------------------------------------------
705 # The call with PACKAGE and VERSION arguments is the old style
706 # call (pre autoconf-2.50), which is being phased out.  PACKAGE
707 # and VERSION should now be passed to AC_INIT and removed from
708 # the call to AM_INIT_AUTOMAKE.
709 # We support both call styles for the transition.  After
710 # the next Automake release, Autoconf can make the AC_INIT
711 # arguments mandatory, and then we can depend on a new Autoconf
712 # release and drop the old call support.
713 AC_DEFUN([AM_INIT_AUTOMAKE],
714 [AC_PREREQ([2.62])dnl
715 dnl Autoconf wants to disallow AM_ names.  We explicitly allow
716 dnl the ones we care about.
717 m4_pattern_allow([^AM_[A-Z]+FLAGS$])dnl
718 AC_REQUIRE([AM_SET_CURRENT_AUTOMAKE_VERSION])dnl
719 AC_REQUIRE([AC_PROG_INSTALL])dnl
720 if test "`cd $srcdir && pwd`" != "`pwd`"; then
721   # Use -I$(srcdir) only when $(srcdir) != ., so that make's output
722   # is not polluted with repeated "-I."
723   AC_SUBST([am__isrc], [' -I$(srcdir)'])_AM_SUBST_NOTMAKE([am__isrc])dnl
724   # test to see if srcdir already configured
725   if test -f $srcdir/config.status; then
726     AC_MSG_ERROR([source directory already configured; run "make distclean" there first])
727   fi
728 fi
729
730 # test whether we have cygpath
731 if test -z "$CYGPATH_W"; then
732   if (cygpath --version) >/dev/null 2>/dev/null; then
733     CYGPATH_W='cygpath -w'
734   else
735     CYGPATH_W=echo
736   fi
737 fi
738 AC_SUBST([CYGPATH_W])
739
740 # Define the identity of the package.
741 dnl Distinguish between old-style and new-style calls.
742 m4_ifval([$2],
743 [AC_DIAGNOSE([obsolete],
744 [$0: two- and three-arguments forms are deprecated.  For more info, see:
745 http://www.gnu.org/software/automake/manual/automake.html#Modernize-AM_INIT_AUTOMAKE-invocation])
746 m4_ifval([$3], [_AM_SET_OPTION([no-define])])dnl
747  AC_SUBST([PACKAGE], [$1])dnl
748  AC_SUBST([VERSION], [$2])],
749 [_AM_SET_OPTIONS([$1])dnl
750 dnl Diagnose old-style AC_INIT with new-style AM_AUTOMAKE_INIT.
751 m4_if(
752   m4_ifdef([AC_PACKAGE_NAME], [ok]):m4_ifdef([AC_PACKAGE_VERSION], [ok]),
753   [ok:ok],,
754   [m4_fatal([AC_INIT should be called with package and version arguments])])dnl
755  AC_SUBST([PACKAGE], ['AC_PACKAGE_TARNAME'])dnl
756  AC_SUBST([VERSION], ['AC_PACKAGE_VERSION'])])dnl
757
758 _AM_IF_OPTION([no-define],,
759 [AC_DEFINE_UNQUOTED([PACKAGE], ["$PACKAGE"], [Name of package])
760  AC_DEFINE_UNQUOTED([VERSION], ["$VERSION"], [Version number of package])])dnl
761
762 # Some tools Automake needs.
763 AC_REQUIRE([AM_SANITY_CHECK])dnl
764 AC_REQUIRE([AC_ARG_PROGRAM])dnl
765 AM_MISSING_PROG([ACLOCAL], [aclocal-${am__api_version}])
766 AM_MISSING_PROG([AUTOCONF], [autoconf])
767 AM_MISSING_PROG([AUTOMAKE], [automake-${am__api_version}])
768 AM_MISSING_PROG([AUTOHEADER], [autoheader])
769 AM_MISSING_PROG([MAKEINFO], [makeinfo])
770 AC_REQUIRE([AM_PROG_INSTALL_SH])dnl
771 AC_REQUIRE([AM_PROG_INSTALL_STRIP])dnl
772 AC_REQUIRE([AC_PROG_MKDIR_P])dnl
773 # For better backward compatibility.  To be removed once Automake 1.9.x
774 # dies out for good.  For more background, see:
775 # <http://lists.gnu.org/archive/html/automake/2012-07/msg00001.html>
776 # <http://lists.gnu.org/archive/html/automake/2012-07/msg00014.html>
777 AC_SUBST([mkdir_p], ['$(MKDIR_P)'])
778 # We need awk for the "check" target.  The system "awk" is bad on
779 # some platforms.
780 AC_REQUIRE([AC_PROG_AWK])dnl
781 AC_REQUIRE([AC_PROG_MAKE_SET])dnl
782 AC_REQUIRE([AM_SET_LEADING_DOT])dnl
783 _AM_IF_OPTION([tar-ustar], [_AM_PROG_TAR([ustar])],
784               [_AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])],
785                              [_AM_PROG_TAR([v7])])])
786 _AM_IF_OPTION([no-dependencies],,
787 [AC_PROVIDE_IFELSE([AC_PROG_CC],
788                   [_AM_DEPENDENCIES([CC])],
789                   [m4_define([AC_PROG_CC],
790                              m4_defn([AC_PROG_CC])[_AM_DEPENDENCIES([CC])])])dnl
791 AC_PROVIDE_IFELSE([AC_PROG_CXX],
792                   [_AM_DEPENDENCIES([CXX])],
793                   [m4_define([AC_PROG_CXX],
794                              m4_defn([AC_PROG_CXX])[_AM_DEPENDENCIES([CXX])])])dnl
795 AC_PROVIDE_IFELSE([AC_PROG_OBJC],
796                   [_AM_DEPENDENCIES([OBJC])],
797                   [m4_define([AC_PROG_OBJC],
798                              m4_defn([AC_PROG_OBJC])[_AM_DEPENDENCIES([OBJC])])])dnl
799 dnl Support for Objective C++ was only introduced in Autoconf 2.65,
800 dnl but we still cater to Autoconf 2.62.
801 m4_ifdef([AC_PROG_OBJCXX],
802 [AC_PROVIDE_IFELSE([AC_PROG_OBJCXX],
803                   [_AM_DEPENDENCIES([OBJCXX])],
804                   [m4_define([AC_PROG_OBJCXX],
805                              m4_defn([AC_PROG_OBJCXX])[_AM_DEPENDENCIES([OBJCXX])])])])dnl
806 ])
807 _AM_IF_OPTION([silent-rules], [AC_REQUIRE([AM_SILENT_RULES])])dnl
808 dnl The 'parallel-tests' driver may need to know about EXEEXT, so add the
809 dnl 'am__EXEEXT' conditional if _AM_COMPILER_EXEEXT was seen.  This macro
810 dnl is hooked onto _AC_COMPILER_EXEEXT early, see below.
811 AC_CONFIG_COMMANDS_PRE(dnl
812 [m4_provide_if([_AM_COMPILER_EXEEXT],
813   [AM_CONDITIONAL([am__EXEEXT], [test -n "$EXEEXT"])])])dnl
814 ])
815
816 dnl Hook into '_AC_COMPILER_EXEEXT' early to learn its expansion.  Do not
817 dnl add the conditional right here, as _AC_COMPILER_EXEEXT may be further
818 dnl mangled by Autoconf and run in a shell conditional statement.
819 m4_define([_AC_COMPILER_EXEEXT],
820 m4_defn([_AC_COMPILER_EXEEXT])[m4_provide([_AM_COMPILER_EXEEXT])])
821
822
823 # When config.status generates a header, we must update the stamp-h file.
824 # This file resides in the same directory as the config header
825 # that is generated.  The stamp files are numbered to have different names.
826
827 # Autoconf calls _AC_AM_CONFIG_HEADER_HOOK (when defined) in the
828 # loop where config.status creates the headers, so we can generate
829 # our stamp files there.
830 AC_DEFUN([_AC_AM_CONFIG_HEADER_HOOK],
831 [# Compute $1's index in $config_headers.
832 _am_arg=$1
833 _am_stamp_count=1
834 for _am_header in $config_headers :; do
835   case $_am_header in
836     $_am_arg | $_am_arg:* )
837       break ;;
838     * )
839       _am_stamp_count=`expr $_am_stamp_count + 1` ;;
840   esac
841 done
842 echo "timestamp for $_am_arg" >`AS_DIRNAME(["$_am_arg"])`/stamp-h[]$_am_stamp_count])
843
844 # Copyright (C) 2001-2012 Free Software Foundation, Inc.
845 #
846 # This file is free software; the Free Software Foundation
847 # gives unlimited permission to copy and/or distribute it,
848 # with or without modifications, as long as this notice is preserved.
849
850 # serial 8
851
852 # AM_PROG_INSTALL_SH
853 # ------------------
854 # Define $install_sh.
855 AC_DEFUN([AM_PROG_INSTALL_SH],
856 [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
857 if test x"${install_sh}" != xset; then
858   case $am_aux_dir in
859   *\ * | *\     *)
860     install_sh="\${SHELL} '$am_aux_dir/install-sh'" ;;
861   *)
862     install_sh="\${SHELL} $am_aux_dir/install-sh"
863   esac
864 fi
865 AC_SUBST([install_sh])])
866
867 # Copyright (C) 2003-2012 Free Software Foundation, Inc.
868 #
869 # This file is free software; the Free Software Foundation
870 # gives unlimited permission to copy and/or distribute it,
871 # with or without modifications, as long as this notice is preserved.
872
873 # serial 2
874
875 # Check whether the underlying file-system supports filenames
876 # with a leading dot.  For instance MS-DOS doesn't.
877 AC_DEFUN([AM_SET_LEADING_DOT],
878 [rm -rf .tst 2>/dev/null
879 mkdir .tst 2>/dev/null
880 if test -d .tst; then
881   am__leading_dot=.
882 else
883   am__leading_dot=_
884 fi
885 rmdir .tst 2>/dev/null
886 AC_SUBST([am__leading_dot])])
887
888 # Add --enable-maintainer-mode option to configure.         -*- Autoconf -*-
889 # From Jim Meyering
890
891 # Copyright (C) 1996-2012 Free Software Foundation, Inc.
892 #
893 # This file is free software; the Free Software Foundation
894 # gives unlimited permission to copy and/or distribute it,
895 # with or without modifications, as long as this notice is preserved.
896
897 # serial 7
898
899 # AM_MAINTAINER_MODE([DEFAULT-MODE])
900 # ----------------------------------
901 # Control maintainer-specific portions of Makefiles.
902 # Default is to disable them, unless 'enable' is passed literally.
903 # For symmetry, 'disable' may be passed as well.  Anyway, the user
904 # can override the default with the --enable/--disable switch.
905 AC_DEFUN([AM_MAINTAINER_MODE],
906 [m4_case(m4_default([$1], [disable]),
907        [enable], [m4_define([am_maintainer_other], [disable])],
908        [disable], [m4_define([am_maintainer_other], [enable])],
909        [m4_define([am_maintainer_other], [enable])
910         m4_warn([syntax], [unexpected argument to AM@&t@_MAINTAINER_MODE: $1])])
911 AC_MSG_CHECKING([whether to enable maintainer-specific portions of Makefiles])
912   dnl maintainer-mode's default is 'disable' unless 'enable' is passed
913   AC_ARG_ENABLE([maintainer-mode],
914     [AS_HELP_STRING([--]am_maintainer_other[-maintainer-mode],
915       am_maintainer_other[ make rules and dependencies not useful
916       (and sometimes confusing) to the casual installer])],
917     [USE_MAINTAINER_MODE=$enableval],
918     [USE_MAINTAINER_MODE=]m4_if(am_maintainer_other, [enable], [no], [yes]))
919   AC_MSG_RESULT([$USE_MAINTAINER_MODE])
920   AM_CONDITIONAL([MAINTAINER_MODE], [test $USE_MAINTAINER_MODE = yes])
921   MAINT=$MAINTAINER_MODE_TRUE
922   AC_SUBST([MAINT])dnl
923 ]
924 )
925
926 AU_DEFUN([jm_MAINTAINER_MODE], [AM_MAINTAINER_MODE])
927
928 # Check to see how 'make' treats includes.                  -*- Autoconf -*-
929
930 # Copyright (C) 2001-2012 Free Software Foundation, Inc.
931 #
932 # This file is free software; the Free Software Foundation
933 # gives unlimited permission to copy and/or distribute it,
934 # with or without modifications, as long as this notice is preserved.
935
936 # serial 5
937
938 # AM_MAKE_INCLUDE()
939 # -----------------
940 # Check to see how make treats includes.
941 AC_DEFUN([AM_MAKE_INCLUDE],
942 [am_make=${MAKE-make}
943 cat > confinc << 'END'
944 am__doit:
945         @echo this is the am__doit target
946 .PHONY: am__doit
947 END
948 # If we don't find an include directive, just comment out the code.
949 AC_MSG_CHECKING([for style of include used by $am_make])
950 am__include="#"
951 am__quote=
952 _am_result=none
953 # First try GNU make style include.
954 echo "include confinc" > confmf
955 # Ignore all kinds of additional output from 'make'.
956 case `$am_make -s -f confmf 2> /dev/null` in #(
957 *the\ am__doit\ target*)
958   am__include=include
959   am__quote=
960   _am_result=GNU
961   ;;
962 esac
963 # Now try BSD make style include.
964 if test "$am__include" = "#"; then
965    echo '.include "confinc"' > confmf
966    case `$am_make -s -f confmf 2> /dev/null` in #(
967    *the\ am__doit\ target*)
968      am__include=.include
969      am__quote="\""
970      _am_result=BSD
971      ;;
972    esac
973 fi
974 AC_SUBST([am__include])
975 AC_SUBST([am__quote])
976 AC_MSG_RESULT([$_am_result])
977 rm -f confinc confmf
978 ])
979
980 # Copyright (C) 1999-2012 Free Software Foundation, Inc.
981 #
982 # This file is free software; the Free Software Foundation
983 # gives unlimited permission to copy and/or distribute it,
984 # with or without modifications, as long as this notice is preserved.
985
986 # serial 6
987
988 # AM_PROG_CC_C_O
989 # --------------
990 # Like AC_PROG_CC_C_O, but changed for automake.
991 AC_DEFUN([AM_PROG_CC_C_O],
992 [AC_REQUIRE([AC_PROG_CC_C_O])dnl
993 AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
994 AC_REQUIRE_AUX_FILE([compile])dnl
995 # FIXME: we rely on the cache variable name because
996 # there is no other way.
997 set dummy $CC
998 am_cc=`echo $[2] | sed ['s/[^a-zA-Z0-9_]/_/g;s/^[0-9]/_/']`
999 eval am_t=\$ac_cv_prog_cc_${am_cc}_c_o
1000 if test "$am_t" != yes; then
1001    # Losing compiler, so override with the script.
1002    # FIXME: It is wrong to rewrite CC.
1003    # But if we don't then we get into trouble of one sort or another.
1004    # A longer-term fix would be to have automake use am__CC in this case,
1005    # and then we could set am__CC="\$(top_srcdir)/compile \$(CC)"
1006    CC="$am_aux_dir/compile $CC"
1007 fi
1008 dnl Make sure AC_PROG_CC is never called again, or it will override our
1009 dnl setting of CC.
1010 m4_define([AC_PROG_CC],
1011           [m4_fatal([AC_PROG_CC cannot be called after AM_PROG_CC_C_O])])
1012 ])
1013
1014 # Fake the existence of programs that GNU maintainers use.  -*- Autoconf -*-
1015
1016 # Copyright (C) 1997-2012 Free Software Foundation, Inc.
1017 #
1018 # This file is free software; the Free Software Foundation
1019 # gives unlimited permission to copy and/or distribute it,
1020 # with or without modifications, as long as this notice is preserved.
1021
1022 # serial 7
1023
1024 # AM_MISSING_PROG(NAME, PROGRAM)
1025 # ------------------------------
1026 AC_DEFUN([AM_MISSING_PROG],
1027 [AC_REQUIRE([AM_MISSING_HAS_RUN])
1028 $1=${$1-"${am_missing_run}$2"}
1029 AC_SUBST($1)])
1030
1031
1032 # AM_MISSING_HAS_RUN
1033 # ------------------
1034 # Define MISSING if not defined so far and test if it supports --run.
1035 # If it does, set am_missing_run to use it, otherwise, to nothing.
1036 AC_DEFUN([AM_MISSING_HAS_RUN],
1037 [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
1038 AC_REQUIRE_AUX_FILE([missing])dnl
1039 if test x"${MISSING+set}" != xset; then
1040   case $am_aux_dir in
1041   *\ * | *\     *)
1042     MISSING="\${SHELL} \"$am_aux_dir/missing\"" ;;
1043   *)
1044     MISSING="\${SHELL} $am_aux_dir/missing" ;;
1045   esac
1046 fi
1047 # Use eval to expand $SHELL
1048 if eval "$MISSING --run true"; then
1049   am_missing_run="$MISSING --run "
1050 else
1051   am_missing_run=
1052   AC_MSG_WARN(['missing' script is too old or missing])
1053 fi
1054 ])
1055
1056 # Helper functions for option handling.                     -*- Autoconf -*-
1057
1058 # Copyright (C) 2001-2012 Free Software Foundation, Inc.
1059 #
1060 # This file is free software; the Free Software Foundation
1061 # gives unlimited permission to copy and/or distribute it,
1062 # with or without modifications, as long as this notice is preserved.
1063
1064 # serial 6
1065
1066 # _AM_MANGLE_OPTION(NAME)
1067 # -----------------------
1068 AC_DEFUN([_AM_MANGLE_OPTION],
1069 [[_AM_OPTION_]m4_bpatsubst($1, [[^a-zA-Z0-9_]], [_])])
1070
1071 # _AM_SET_OPTION(NAME)
1072 # --------------------
1073 # Set option NAME.  Presently that only means defining a flag for this option.
1074 AC_DEFUN([_AM_SET_OPTION],
1075 [m4_define(_AM_MANGLE_OPTION([$1]), [1])])
1076
1077 # _AM_SET_OPTIONS(OPTIONS)
1078 # ------------------------
1079 # OPTIONS is a space-separated list of Automake options.
1080 AC_DEFUN([_AM_SET_OPTIONS],
1081 [m4_foreach_w([_AM_Option], [$1], [_AM_SET_OPTION(_AM_Option)])])
1082
1083 # _AM_IF_OPTION(OPTION, IF-SET, [IF-NOT-SET])
1084 # -------------------------------------------
1085 # Execute IF-SET if OPTION is set, IF-NOT-SET otherwise.
1086 AC_DEFUN([_AM_IF_OPTION],
1087 [m4_ifset(_AM_MANGLE_OPTION([$1]), [$2], [$3])])
1088
1089 # Check to make sure that the build environment is sane.    -*- Autoconf -*-
1090
1091 # Copyright (C) 1996-2012 Free Software Foundation, Inc.
1092 #
1093 # This file is free software; the Free Software Foundation
1094 # gives unlimited permission to copy and/or distribute it,
1095 # with or without modifications, as long as this notice is preserved.
1096
1097 # serial 9
1098
1099 # AM_SANITY_CHECK
1100 # ---------------
1101 AC_DEFUN([AM_SANITY_CHECK],
1102 [AC_MSG_CHECKING([whether build environment is sane])
1103 # Reject unsafe characters in $srcdir or the absolute working directory
1104 # name.  Accept space and tab only in the latter.
1105 am_lf='
1106 '
1107 case `pwd` in
1108   *[[\\\"\#\$\&\'\`$am_lf]]*)
1109     AC_MSG_ERROR([unsafe absolute working directory name]);;
1110 esac
1111 case $srcdir in
1112   *[[\\\"\#\$\&\'\`$am_lf\ \    ]]*)
1113     AC_MSG_ERROR([unsafe srcdir value: '$srcdir']);;
1114 esac
1115
1116 # Do 'set' in a subshell so we don't clobber the current shell's
1117 # arguments.  Must try -L first in case configure is actually a
1118 # symlink; some systems play weird games with the mod time of symlinks
1119 # (eg FreeBSD returns the mod time of the symlink's containing
1120 # directory).
1121 if (
1122    am_has_slept=no
1123    for am_try in 1 2; do
1124      echo "timestamp, slept: $am_has_slept" > conftest.file
1125      set X `ls -Lt "$srcdir/configure" conftest.file 2> /dev/null`
1126      if test "$[*]" = "X"; then
1127         # -L didn't work.
1128         set X `ls -t "$srcdir/configure" conftest.file`
1129      fi
1130      if test "$[*]" != "X $srcdir/configure conftest.file" \
1131         && test "$[*]" != "X conftest.file $srcdir/configure"; then
1132
1133         # If neither matched, then we have a broken ls.  This can happen
1134         # if, for instance, CONFIG_SHELL is bash and it inherits a
1135         # broken ls alias from the environment.  This has actually
1136         # happened.  Such a system could not be considered "sane".
1137         AC_MSG_ERROR([ls -t appears to fail.  Make sure there is not a broken
1138   alias in your environment])
1139      fi
1140      if test "$[2]" = conftest.file || test $am_try -eq 2; then
1141        break
1142      fi
1143      # Just in case.
1144      sleep 1
1145      am_has_slept=yes
1146    done
1147    test "$[2]" = conftest.file
1148    )
1149 then
1150    # Ok.
1151    :
1152 else
1153    AC_MSG_ERROR([newly created file is older than distributed files!
1154 Check your system clock])
1155 fi
1156 AC_MSG_RESULT([yes])
1157 # If we didn't sleep, we still need to ensure time stamps of config.status and
1158 # generated files are strictly newer.
1159 am_sleep_pid=
1160 if grep 'slept: no' conftest.file >/dev/null 2>&1; then
1161   ( sleep 1 ) &
1162   am_sleep_pid=$!
1163 fi
1164 AC_CONFIG_COMMANDS_PRE(
1165   [AC_MSG_CHECKING([that generated files are newer than configure])
1166    if test -n "$am_sleep_pid"; then
1167      # Hide warnings about reused PIDs.
1168      wait $am_sleep_pid 2>/dev/null
1169    fi
1170    AC_MSG_RESULT([done])])
1171 rm -f conftest.file
1172 ])
1173
1174 # Copyright (C) 2009-2012 Free Software Foundation, Inc.
1175 #
1176 # This file is free software; the Free Software Foundation
1177 # gives unlimited permission to copy and/or distribute it,
1178 # with or without modifications, as long as this notice is preserved.
1179
1180 # serial 3
1181
1182 # AM_SILENT_RULES([DEFAULT])
1183 # --------------------------
1184 # Enable less verbose build rules; with the default set to DEFAULT
1185 # ("yes" being less verbose, "no" or empty being verbose).
1186 AC_DEFUN([AM_SILENT_RULES],
1187 [AC_ARG_ENABLE([silent-rules], [dnl
1188 AS_HELP_STRING(
1189   [--enable-silent-rules],
1190   [less verbose build output (undo: "make V=1")])
1191 AS_HELP_STRING(
1192   [--disable-silent-rules],
1193   [verbose build output (undo: "make V=0")])dnl
1194 ])
1195 case $enable_silent_rules in @%:@ (((
1196   yes) AM_DEFAULT_VERBOSITY=0;;
1197    no) AM_DEFAULT_VERBOSITY=1;;
1198     *) AM_DEFAULT_VERBOSITY=m4_if([$1], [yes], [0], [1]);;
1199 esac
1200 dnl
1201 dnl A few 'make' implementations (e.g., NonStop OS and NextStep)
1202 dnl do not support nested variable expansions.
1203 dnl See automake bug#9928 and bug#10237.
1204 am_make=${MAKE-make}
1205 AC_CACHE_CHECK([whether $am_make supports nested variables],
1206    [am_cv_make_support_nested_variables],
1207    [if AS_ECHO([['TRUE=$(BAR$(V))
1208 BAR0=false
1209 BAR1=true
1210 V=1
1211 am__doit:
1212         @$(TRUE)
1213 .PHONY: am__doit']]) | $am_make -f - >/dev/null 2>&1; then
1214   am_cv_make_support_nested_variables=yes
1215 else
1216   am_cv_make_support_nested_variables=no
1217 fi])
1218 if test $am_cv_make_support_nested_variables = yes; then
1219   dnl Using '$V' instead of '$(V)' breaks IRIX make.
1220   AM_V='$(V)'
1221   AM_DEFAULT_V='$(AM_DEFAULT_VERBOSITY)'
1222 else
1223   AM_V=$AM_DEFAULT_VERBOSITY
1224   AM_DEFAULT_V=$AM_DEFAULT_VERBOSITY
1225 fi
1226 AC_SUBST([AM_V])dnl
1227 AM_SUBST_NOTMAKE([AM_V])dnl
1228 AC_SUBST([AM_DEFAULT_V])dnl
1229 AM_SUBST_NOTMAKE([AM_DEFAULT_V])dnl
1230 AC_SUBST([AM_DEFAULT_VERBOSITY])dnl
1231 AM_BACKSLASH='\'
1232 AC_SUBST([AM_BACKSLASH])dnl
1233 _AM_SUBST_NOTMAKE([AM_BACKSLASH])dnl
1234 ])
1235
1236 # Copyright (C) 2001-2012 Free Software Foundation, Inc.
1237 #
1238 # This file is free software; the Free Software Foundation
1239 # gives unlimited permission to copy and/or distribute it,
1240 # with or without modifications, as long as this notice is preserved.
1241
1242 # serial 2
1243
1244 # AM_PROG_INSTALL_STRIP
1245 # ---------------------
1246 # One issue with vendor 'install' (even GNU) is that you can't
1247 # specify the program used to strip binaries.  This is especially
1248 # annoying in cross-compiling environments, where the build's strip
1249 # is unlikely to handle the host's binaries.
1250 # Fortunately install-sh will honor a STRIPPROG variable, so we
1251 # always use install-sh in "make install-strip", and initialize
1252 # STRIPPROG with the value of the STRIP variable (set by the user).
1253 AC_DEFUN([AM_PROG_INSTALL_STRIP],
1254 [AC_REQUIRE([AM_PROG_INSTALL_SH])dnl
1255 # Installed binaries are usually stripped using 'strip' when the user
1256 # run "make install-strip".  However 'strip' might not be the right
1257 # tool to use in cross-compilation environments, therefore Automake
1258 # will honor the 'STRIP' environment variable to overrule this program.
1259 dnl Don't test for $cross_compiling = yes, because it might be 'maybe'.
1260 if test "$cross_compiling" != no; then
1261   AC_CHECK_TOOL([STRIP], [strip], :)
1262 fi
1263 INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s"
1264 AC_SUBST([INSTALL_STRIP_PROGRAM])])
1265
1266 # Copyright (C) 2006-2012 Free Software Foundation, Inc.
1267 #
1268 # This file is free software; the Free Software Foundation
1269 # gives unlimited permission to copy and/or distribute it,
1270 # with or without modifications, as long as this notice is preserved.
1271
1272 # serial 3
1273
1274 # _AM_SUBST_NOTMAKE(VARIABLE)
1275 # ---------------------------
1276 # Prevent Automake from outputting VARIABLE = @VARIABLE@ in Makefile.in.
1277 # This macro is traced by Automake.
1278 AC_DEFUN([_AM_SUBST_NOTMAKE])
1279
1280 # AM_SUBST_NOTMAKE(VARIABLE)
1281 # --------------------------
1282 # Public sister of _AM_SUBST_NOTMAKE.
1283 AC_DEFUN([AM_SUBST_NOTMAKE], [_AM_SUBST_NOTMAKE($@)])
1284
1285 # Check how to create a tarball.                            -*- Autoconf -*-
1286
1287 # Copyright (C) 2004-2012 Free Software Foundation, Inc.
1288 #
1289 # This file is free software; the Free Software Foundation
1290 # gives unlimited permission to copy and/or distribute it,
1291 # with or without modifications, as long as this notice is preserved.
1292
1293 # serial 3
1294
1295 # _AM_PROG_TAR(FORMAT)
1296 # --------------------
1297 # Check how to create a tarball in format FORMAT.
1298 # FORMAT should be one of 'v7', 'ustar', or 'pax'.
1299 #
1300 # Substitute a variable $(am__tar) that is a command
1301 # writing to stdout a FORMAT-tarball containing the directory
1302 # $tardir.
1303 #     tardir=directory && $(am__tar) > result.tar
1304 #
1305 # Substitute a variable $(am__untar) that extract such
1306 # a tarball read from stdin.
1307 #     $(am__untar) < result.tar
1308 AC_DEFUN([_AM_PROG_TAR],
1309 [# Always define AMTAR for backward compatibility.  Yes, it's still used
1310 # in the wild :-(  We should find a proper way to deprecate it ...
1311 AC_SUBST([AMTAR], ['$${TAR-tar}'])
1312 m4_if([$1], [v7],
1313      [am__tar='$${TAR-tar} chof - "$$tardir"' am__untar='$${TAR-tar} xf -'],
1314      [m4_case([$1], [ustar],, [pax],,
1315               [m4_fatal([Unknown tar format])])
1316 AC_MSG_CHECKING([how to create a $1 tar archive])
1317 # Loop over all known methods to create a tar archive until one works.
1318 _am_tools='gnutar m4_if([$1], [ustar], [plaintar]) pax cpio none'
1319 _am_tools=${am_cv_prog_tar_$1-$_am_tools}
1320 # Do not fold the above two line into one, because Tru64 sh and
1321 # Solaris sh will not grok spaces in the rhs of '-'.
1322 for _am_tool in $_am_tools
1323 do
1324   case $_am_tool in
1325   gnutar)
1326     for _am_tar in tar gnutar gtar;
1327     do
1328       AM_RUN_LOG([$_am_tar --version]) && break
1329     done
1330     am__tar="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$$tardir"'
1331     am__tar_="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$tardir"'
1332     am__untar="$_am_tar -xf -"
1333     ;;
1334   plaintar)
1335     # Must skip GNU tar: if it does not support --format= it doesn't create
1336     # ustar tarball either.
1337     (tar --version) >/dev/null 2>&1 && continue
1338     am__tar='tar chf - "$$tardir"'
1339     am__tar_='tar chf - "$tardir"'
1340     am__untar='tar xf -'
1341     ;;
1342   pax)
1343     am__tar='pax -L -x $1 -w "$$tardir"'
1344     am__tar_='pax -L -x $1 -w "$tardir"'
1345     am__untar='pax -r'
1346     ;;
1347   cpio)
1348     am__tar='find "$$tardir" -print | cpio -o -H $1 -L'
1349     am__tar_='find "$tardir" -print | cpio -o -H $1 -L'
1350     am__untar='cpio -i -H $1 -d'
1351     ;;
1352   none)
1353     am__tar=false
1354     am__tar_=false
1355     am__untar=false
1356     ;;
1357   esac
1358
1359   # If the value was cached, stop now.  We just wanted to have am__tar
1360   # and am__untar set.
1361   test -n "${am_cv_prog_tar_$1}" && break
1362
1363   # tar/untar a dummy directory, and stop if the command works
1364   rm -rf conftest.dir
1365   mkdir conftest.dir
1366   echo GrepMe > conftest.dir/file
1367   AM_RUN_LOG([tardir=conftest.dir && eval $am__tar_ >conftest.tar])
1368   rm -rf conftest.dir
1369   if test -s conftest.tar; then
1370     AM_RUN_LOG([$am__untar <conftest.tar])
1371     grep GrepMe conftest.dir/file >/dev/null 2>&1 && break
1372   fi
1373 done
1374 rm -rf conftest.dir
1375
1376 AC_CACHE_VAL([am_cv_prog_tar_$1], [am_cv_prog_tar_$1=$_am_tool])
1377 AC_MSG_RESULT([$am_cv_prog_tar_$1])])
1378 AC_SUBST([am__tar])
1379 AC_SUBST([am__untar])
1380 ]) # _AM_PROG_TAR
1381
1382 m4_include([m4/libtool.m4])
1383 m4_include([m4/ltoptions.m4])
1384 m4_include([m4/ltsugar.m4])
1385 m4_include([m4/ltversion.m4])
1386 m4_include([m4/lt~obsolete.m4])
1387 m4_include([m4/manywarnings.m4])
1388 m4_include([m4/spice-compile-warnings.m4])
1389 m4_include([m4/warnings.m4])