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