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