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