Patches from Debian
[nbd.git] / aclocal.m4
1 # generated automatically by aclocal 1.10.2 -*- Autoconf -*-
2
3 # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
4 # 2005, 2006, 2007, 2008  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.64],,
17 [m4_warning([this file was generated for autoconf 2.64.
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.16])
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   int major, minor, micro;
116   char *tmp_version;
117   int ignored;
118
119   ignored = system ("touch conf.glibtest");
120
121   /* HP/UX 9 (%@#!) writes to sscanf strings */
122   tmp_version = g_strdup("$min_glib_version");
123   if (sscanf(tmp_version, "%d.%d.%d", &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 (%d.%d.%d) was found.\n",
163                glib_major_version, glib_minor_version, glib_micro_version);
164         printf("*** You need a version of GLIB newer than %d.%d.%d. 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
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])dnl
264 if test "x$ac_cv_env_PKG_CONFIG_set" != "xset"; then
265         AC_PATH_TOOL([PKG_CONFIG], [pkg-config])
266 fi
267 if test -n "$PKG_CONFIG"; then
268         _pkg_min_version=m4_default([$1], [0.9.0])
269         AC_MSG_CHECKING([pkg-config is at least version $_pkg_min_version])
270         if $PKG_CONFIG --atleast-pkgconfig-version $_pkg_min_version; then
271                 AC_MSG_RESULT([yes])
272         else
273                 AC_MSG_RESULT([no])
274                 PKG_CONFIG=""
275         fi
276                 
277 fi[]dnl
278 ])# PKG_PROG_PKG_CONFIG
279
280 # PKG_CHECK_EXISTS(MODULES, [ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND])
281 #
282 # Check to see whether a particular set of modules exists.  Similar
283 # to PKG_CHECK_MODULES(), but does not set variables or print errors.
284 #
285 #
286 # Similar to PKG_CHECK_MODULES, make sure that the first instance of
287 # this or PKG_CHECK_MODULES is called, or make sure to call
288 # PKG_CHECK_EXISTS manually
289 # --------------------------------------------------------------
290 AC_DEFUN([PKG_CHECK_EXISTS],
291 [AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl
292 if test -n "$PKG_CONFIG" && \
293     AC_RUN_LOG([$PKG_CONFIG --exists --print-errors "$1"]); then
294   m4_ifval([$2], [$2], [:])
295 m4_ifvaln([$3], [else
296   $3])dnl
297 fi])
298
299
300 # _PKG_CONFIG([VARIABLE], [COMMAND], [MODULES])
301 # ---------------------------------------------
302 m4_define([_PKG_CONFIG],
303 [if test -n "$PKG_CONFIG"; then
304     if test -n "$$1"; then
305         pkg_cv_[]$1="$$1"
306     else
307         PKG_CHECK_EXISTS([$3],
308                          [pkg_cv_[]$1=`$PKG_CONFIG --[]$2 "$3" 2>/dev/null`],
309                          [pkg_failed=yes])
310     fi
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         _PKG_SHORT_ERRORS_SUPPORTED
355         if test $_pkg_short_errors_supported = yes; then
356                 $1[]_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "$2"`
357         else 
358                 $1[]_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "$2"`
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         ifelse([$4], , [AC_MSG_ERROR(dnl
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                 [AC_MSG_RESULT([no])
374                 $4])
375 elif test $pkg_failed = untried; then
376         ifelse([$4], , [AC_MSG_FAILURE(dnl
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                 [$4])
385 else
386         $1[]_CFLAGS=$pkg_cv_[]$1[]_CFLAGS
387         $1[]_LIBS=$pkg_cv_[]$1[]_LIBS
388         AC_MSG_RESULT([yes])
389         ifelse([$3], , :, [$3])
390 fi[]dnl
391 ])# PKG_CHECK_MODULES
392
393 # Copyright (C) 2002, 2003, 2005, 2006, 2007, 2008  Free Software Foundation, Inc.
394 #
395 # This file is free software; the Free Software Foundation
396 # gives unlimited permission to copy and/or distribute it,
397 # with or without modifications, as long as this notice is preserved.
398
399 # AM_AUTOMAKE_VERSION(VERSION)
400 # ----------------------------
401 # Automake X.Y traces this macro to ensure aclocal.m4 has been
402 # generated from the m4 files accompanying Automake X.Y.
403 # (This private macro should not be called outside this file.)
404 AC_DEFUN([AM_AUTOMAKE_VERSION],
405 [am__api_version='1.10'
406 dnl Some users find AM_AUTOMAKE_VERSION and mistake it for a way to
407 dnl require some minimum version.  Point them to the right macro.
408 m4_if([$1], [1.10.2], [],
409       [AC_FATAL([Do not call $0, use AM_INIT_AUTOMAKE([$1]).])])dnl
410 ])
411
412 # _AM_AUTOCONF_VERSION(VERSION)
413 # -----------------------------
414 # aclocal traces this macro to find the Autoconf version.
415 # This is a private macro too.  Using m4_define simplifies
416 # the logic in aclocal, which can simply ignore this definition.
417 m4_define([_AM_AUTOCONF_VERSION], [])
418
419 # AM_SET_CURRENT_AUTOMAKE_VERSION
420 # -------------------------------
421 # Call AM_AUTOMAKE_VERSION and AM_AUTOMAKE_VERSION so they can be traced.
422 # This function is AC_REQUIREd by AM_INIT_AUTOMAKE.
423 AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION],
424 [AM_AUTOMAKE_VERSION([1.10.2])dnl
425 m4_ifndef([AC_AUTOCONF_VERSION],
426   [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl
427 _AM_AUTOCONF_VERSION(m4_defn([AC_AUTOCONF_VERSION]))])
428
429 # AM_AUX_DIR_EXPAND                                         -*- Autoconf -*-
430
431 # Copyright (C) 2001, 2003, 2005  Free Software Foundation, Inc.
432 #
433 # This file is free software; the Free Software Foundation
434 # gives unlimited permission to copy and/or distribute it,
435 # with or without modifications, as long as this notice is preserved.
436
437 # For projects using AC_CONFIG_AUX_DIR([foo]), Autoconf sets
438 # $ac_aux_dir to `$srcdir/foo'.  In other projects, it is set to
439 # `$srcdir', `$srcdir/..', or `$srcdir/../..'.
440 #
441 # Of course, Automake must honor this variable whenever it calls a
442 # tool from the auxiliary directory.  The problem is that $srcdir (and
443 # therefore $ac_aux_dir as well) can be either absolute or relative,
444 # depending on how configure is run.  This is pretty annoying, since
445 # it makes $ac_aux_dir quite unusable in subdirectories: in the top
446 # source directory, any form will work fine, but in subdirectories a
447 # relative path needs to be adjusted first.
448 #
449 # $ac_aux_dir/missing
450 #    fails when called from a subdirectory if $ac_aux_dir is relative
451 # $top_srcdir/$ac_aux_dir/missing
452 #    fails if $ac_aux_dir is absolute,
453 #    fails when called from a subdirectory in a VPATH build with
454 #          a relative $ac_aux_dir
455 #
456 # The reason of the latter failure is that $top_srcdir and $ac_aux_dir
457 # are both prefixed by $srcdir.  In an in-source build this is usually
458 # harmless because $srcdir is `.', but things will broke when you
459 # start a VPATH build or use an absolute $srcdir.
460 #
461 # So we could use something similar to $top_srcdir/$ac_aux_dir/missing,
462 # iff we strip the leading $srcdir from $ac_aux_dir.  That would be:
463 #   am_aux_dir='\$(top_srcdir)/'`expr "$ac_aux_dir" : "$srcdir//*\(.*\)"`
464 # and then we would define $MISSING as
465 #   MISSING="\${SHELL} $am_aux_dir/missing"
466 # This will work as long as MISSING is not called from configure, because
467 # unfortunately $(top_srcdir) has no meaning in configure.
468 # However there are other variables, like CC, which are often used in
469 # configure, and could therefore not use this "fixed" $ac_aux_dir.
470 #
471 # Another solution, used here, is to always expand $ac_aux_dir to an
472 # absolute PATH.  The drawback is that using absolute paths prevent a
473 # configured tree to be moved without reconfiguration.
474
475 AC_DEFUN([AM_AUX_DIR_EXPAND],
476 [dnl Rely on autoconf to set up CDPATH properly.
477 AC_PREREQ([2.50])dnl
478 # expand $ac_aux_dir to an absolute path
479 am_aux_dir=`cd $ac_aux_dir && pwd`
480 ])
481
482 # AM_CONDITIONAL                                            -*- Autoconf -*-
483
484 # Copyright (C) 1997, 2000, 2001, 2003, 2004, 2005, 2006
485 # Free Software Foundation, Inc.
486 #
487 # This file is free software; the Free Software Foundation
488 # gives unlimited permission to copy and/or distribute it,
489 # with or without modifications, as long as this notice is preserved.
490
491 # serial 8
492
493 # AM_CONDITIONAL(NAME, SHELL-CONDITION)
494 # -------------------------------------
495 # Define a conditional.
496 AC_DEFUN([AM_CONDITIONAL],
497 [AC_PREREQ(2.52)dnl
498  ifelse([$1], [TRUE],  [AC_FATAL([$0: invalid condition: $1])],
499         [$1], [FALSE], [AC_FATAL([$0: invalid condition: $1])])dnl
500 AC_SUBST([$1_TRUE])dnl
501 AC_SUBST([$1_FALSE])dnl
502 _AM_SUBST_NOTMAKE([$1_TRUE])dnl
503 _AM_SUBST_NOTMAKE([$1_FALSE])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
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 9
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   for depmode in $am_compiler_list; do
582     # Setup a source with many dependencies, because some compilers
583     # like to wrap large dependency lists on column 80 (with \), and
584     # we should not choose a depcomp mode which is confused by this.
585     #
586     # We need to recreate these files for each test, as the compiler may
587     # overwrite some of them when testing with obscure command lines.
588     # This happens at least with the AIX C compiler.
589     : > sub/conftest.c
590     for i in 1 2 3 4 5 6; do
591       echo '#include "conftst'$i'.h"' >> sub/conftest.c
592       # Using `: > sub/conftst$i.h' creates only sub/conftst1.h with
593       # Solaris 8's {/usr,}/bin/sh.
594       touch sub/conftst$i.h
595     done
596     echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf
597
598     case $depmode in
599     nosideeffect)
600       # after this tag, mechanisms are not by side-effect, so they'll
601       # only be used when explicitly requested
602       if test "x$enable_dependency_tracking" = xyes; then
603         continue
604       else
605         break
606       fi
607       ;;
608     none) break ;;
609     esac
610     # We check with `-c' and `-o' for the sake of the "dashmstdout"
611     # mode.  It turns out that the SunPro C++ compiler does not properly
612     # handle `-M -o', and we need to detect this.
613     if depmode=$depmode \
614        source=sub/conftest.c object=sub/conftest.${OBJEXT-o} \
615        depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \
616        $SHELL ./depcomp $depcc -c -o sub/conftest.${OBJEXT-o} sub/conftest.c \
617          >/dev/null 2>conftest.err &&
618        grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 &&
619        grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 &&
620        grep sub/conftest.${OBJEXT-o} sub/conftest.Po > /dev/null 2>&1 &&
621        ${MAKE-make} -s -f confmf > /dev/null 2>&1; then
622       # icc doesn't choke on unknown options, it will just issue warnings
623       # or remarks (even with -Werror).  So we grep stderr for any message
624       # that says an option was ignored or not supported.
625       # When given -MP, icc 7.0 and 7.1 complain thusly:
626       #   icc: Command line warning: ignoring option '-M'; no argument required
627       # The diagnosis changed in icc 8.0:
628       #   icc: Command line remark: option '-MP' not supported
629       if (grep 'ignoring option' conftest.err ||
630           grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else
631         am_cv_$1_dependencies_compiler_type=$depmode
632         break
633       fi
634     fi
635   done
636
637   cd ..
638   rm -rf conftest.dir
639 else
640   am_cv_$1_dependencies_compiler_type=none
641 fi
642 ])
643 AC_SUBST([$1DEPMODE], [depmode=$am_cv_$1_dependencies_compiler_type])
644 AM_CONDITIONAL([am__fastdep$1], [
645   test "x$enable_dependency_tracking" != xno \
646   && test "$am_cv_$1_dependencies_compiler_type" = gcc3])
647 ])
648
649
650 # AM_SET_DEPDIR
651 # -------------
652 # Choose a directory name for dependency files.
653 # This macro is AC_REQUIREd in _AM_DEPENDENCIES
654 AC_DEFUN([AM_SET_DEPDIR],
655 [AC_REQUIRE([AM_SET_LEADING_DOT])dnl
656 AC_SUBST([DEPDIR], ["${am__leading_dot}deps"])dnl
657 ])
658
659
660 # AM_DEP_TRACK
661 # ------------
662 AC_DEFUN([AM_DEP_TRACK],
663 [AC_ARG_ENABLE(dependency-tracking,
664 [  --disable-dependency-tracking  speeds up one-time build
665   --enable-dependency-tracking   do not reject slow dependency extractors])
666 if test "x$enable_dependency_tracking" != xno; then
667   am_depcomp="$ac_aux_dir/depcomp"
668   AMDEPBACKSLASH='\'
669 fi
670 AM_CONDITIONAL([AMDEP], [test "x$enable_dependency_tracking" != xno])
671 AC_SUBST([AMDEPBACKSLASH])dnl
672 _AM_SUBST_NOTMAKE([AMDEPBACKSLASH])dnl
673 ])
674
675 # Generate code to set up dependency tracking.              -*- Autoconf -*-
676
677 # Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2008
678 # Free Software Foundation, Inc.
679 #
680 # This file is free software; the Free Software Foundation
681 # gives unlimited permission to copy and/or distribute it,
682 # with or without modifications, as long as this notice is preserved.
683
684 #serial 4
685
686 # _AM_OUTPUT_DEPENDENCY_COMMANDS
687 # ------------------------------
688 AC_DEFUN([_AM_OUTPUT_DEPENDENCY_COMMANDS],
689 [# Autoconf 2.62 quotes --file arguments for eval, but not when files
690 # are listed without --file.  Let's play safe and only enable the eval
691 # if we detect the quoting.
692 case $CONFIG_FILES in
693 *\'*) eval set x "$CONFIG_FILES" ;;
694 *)   set x $CONFIG_FILES ;;
695 esac
696 shift
697 for mf
698 do
699   # Strip MF so we end up with the name of the file.
700   mf=`echo "$mf" | sed -e 's/:.*$//'`
701   # Check whether this is an Automake generated Makefile or not.
702   # We used to match only the files named `Makefile.in', but
703   # some people rename them; so instead we look at the file content.
704   # Grep'ing the first line is not enough: some people post-process
705   # each Makefile.in and add a new line on top of each file to say so.
706   # Grep'ing the whole file is not good either: AIX grep has a line
707   # limit of 2048, but all sed's we know have understand at least 4000.
708   if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then
709     dirpart=`AS_DIRNAME("$mf")`
710   else
711     continue
712   fi
713   # Extract the definition of DEPDIR, am__include, and am__quote
714   # from the Makefile without running `make'.
715   DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"`
716   test -z "$DEPDIR" && continue
717   am__include=`sed -n 's/^am__include = //p' < "$mf"`
718   test -z "am__include" && continue
719   am__quote=`sed -n 's/^am__quote = //p' < "$mf"`
720   # When using ansi2knr, U may be empty or an underscore; expand it
721   U=`sed -n 's/^U = //p' < "$mf"`
722   # Find all dependency output files, they are included files with
723   # $(DEPDIR) in their names.  We invoke sed twice because it is the
724   # simplest approach to changing $(DEPDIR) to its actual value in the
725   # expansion.
726   for file in `sed -n "
727     s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \
728        sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g' -e 's/\$U/'"$U"'/g'`; do
729     # Make sure the directory exists.
730     test -f "$dirpart/$file" && continue
731     fdir=`AS_DIRNAME(["$file"])`
732     AS_MKDIR_P([$dirpart/$fdir])
733     # echo "creating $dirpart/$file"
734     echo '# dummy' > "$dirpart/$file"
735   done
736 done
737 ])# _AM_OUTPUT_DEPENDENCY_COMMANDS
738
739
740 # AM_OUTPUT_DEPENDENCY_COMMANDS
741 # -----------------------------
742 # This macro should only be invoked once -- use via AC_REQUIRE.
743 #
744 # This code is only required when automatic dependency tracking
745 # is enabled.  FIXME.  This creates each `.P' file that we will
746 # need in order to bootstrap the dependency handling code.
747 AC_DEFUN([AM_OUTPUT_DEPENDENCY_COMMANDS],
748 [AC_CONFIG_COMMANDS([depfiles],
749      [test x"$AMDEP_TRUE" != x"" || _AM_OUTPUT_DEPENDENCY_COMMANDS],
750      [AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir"])
751 ])
752
753 # Do all the work for Automake.                             -*- Autoconf -*-
754
755 # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
756 # 2005, 2006, 2008 Free Software Foundation, Inc.
757 #
758 # This file is free software; the Free Software Foundation
759 # gives unlimited permission to copy and/or distribute it,
760 # with or without modifications, as long as this notice is preserved.
761
762 # serial 13
763
764 # This macro actually does too much.  Some checks are only needed if
765 # your package does certain things.  But this isn't really a big deal.
766
767 # AM_INIT_AUTOMAKE(PACKAGE, VERSION, [NO-DEFINE])
768 # AM_INIT_AUTOMAKE([OPTIONS])
769 # -----------------------------------------------
770 # The call with PACKAGE and VERSION arguments is the old style
771 # call (pre autoconf-2.50), which is being phased out.  PACKAGE
772 # and VERSION should now be passed to AC_INIT and removed from
773 # the call to AM_INIT_AUTOMAKE.
774 # We support both call styles for the transition.  After
775 # the next Automake release, Autoconf can make the AC_INIT
776 # arguments mandatory, and then we can depend on a new Autoconf
777 # release and drop the old call support.
778 AC_DEFUN([AM_INIT_AUTOMAKE],
779 [AC_PREREQ([2.60])dnl
780 dnl Autoconf wants to disallow AM_ names.  We explicitly allow
781 dnl the ones we care about.
782 m4_pattern_allow([^AM_[A-Z]+FLAGS$])dnl
783 AC_REQUIRE([AM_SET_CURRENT_AUTOMAKE_VERSION])dnl
784 AC_REQUIRE([AC_PROG_INSTALL])dnl
785 if test "`cd $srcdir && pwd`" != "`pwd`"; then
786   # Use -I$(srcdir) only when $(srcdir) != ., so that make's output
787   # is not polluted with repeated "-I."
788   AC_SUBST([am__isrc], [' -I$(srcdir)'])_AM_SUBST_NOTMAKE([am__isrc])dnl
789   # test to see if srcdir already configured
790   if test -f $srcdir/config.status; then
791     AC_MSG_ERROR([source directory already configured; run "make distclean" there first])
792   fi
793 fi
794
795 # test whether we have cygpath
796 if test -z "$CYGPATH_W"; then
797   if (cygpath --version) >/dev/null 2>/dev/null; then
798     CYGPATH_W='cygpath -w'
799   else
800     CYGPATH_W=echo
801   fi
802 fi
803 AC_SUBST([CYGPATH_W])
804
805 # Define the identity of the package.
806 dnl Distinguish between old-style and new-style calls.
807 m4_ifval([$2],
808 [m4_ifval([$3], [_AM_SET_OPTION([no-define])])dnl
809  AC_SUBST([PACKAGE], [$1])dnl
810  AC_SUBST([VERSION], [$2])],
811 [_AM_SET_OPTIONS([$1])dnl
812 dnl Diagnose old-style AC_INIT with new-style AM_AUTOMAKE_INIT.
813 m4_if(m4_ifdef([AC_PACKAGE_NAME], 1)m4_ifdef([AC_PACKAGE_VERSION], 1), 11,,
814   [m4_fatal([AC_INIT should be called with package and version arguments])])dnl
815  AC_SUBST([PACKAGE], ['AC_PACKAGE_TARNAME'])dnl
816  AC_SUBST([VERSION], ['AC_PACKAGE_VERSION'])])dnl
817
818 _AM_IF_OPTION([no-define],,
819 [AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE", [Name of package])
820  AC_DEFINE_UNQUOTED(VERSION, "$VERSION", [Version number of package])])dnl
821
822 # Some tools Automake needs.
823 AC_REQUIRE([AM_SANITY_CHECK])dnl
824 AC_REQUIRE([AC_ARG_PROGRAM])dnl
825 AM_MISSING_PROG(ACLOCAL, aclocal-${am__api_version})
826 AM_MISSING_PROG(AUTOCONF, autoconf)
827 AM_MISSING_PROG(AUTOMAKE, automake-${am__api_version})
828 AM_MISSING_PROG(AUTOHEADER, autoheader)
829 AM_MISSING_PROG(MAKEINFO, makeinfo)
830 AM_PROG_INSTALL_SH
831 AM_PROG_INSTALL_STRIP
832 AC_REQUIRE([AM_PROG_MKDIR_P])dnl
833 # We need awk for the "check" target.  The system "awk" is bad on
834 # some platforms.
835 AC_REQUIRE([AC_PROG_AWK])dnl
836 AC_REQUIRE([AC_PROG_MAKE_SET])dnl
837 AC_REQUIRE([AM_SET_LEADING_DOT])dnl
838 _AM_IF_OPTION([tar-ustar], [_AM_PROG_TAR([ustar])],
839               [_AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])],
840                              [_AM_PROG_TAR([v7])])])
841 _AM_IF_OPTION([no-dependencies],,
842 [AC_PROVIDE_IFELSE([AC_PROG_CC],
843                   [_AM_DEPENDENCIES(CC)],
844                   [define([AC_PROG_CC],
845                           defn([AC_PROG_CC])[_AM_DEPENDENCIES(CC)])])dnl
846 AC_PROVIDE_IFELSE([AC_PROG_CXX],
847                   [_AM_DEPENDENCIES(CXX)],
848                   [define([AC_PROG_CXX],
849                           defn([AC_PROG_CXX])[_AM_DEPENDENCIES(CXX)])])dnl
850 AC_PROVIDE_IFELSE([AC_PROG_OBJC],
851                   [_AM_DEPENDENCIES(OBJC)],
852                   [define([AC_PROG_OBJC],
853                           defn([AC_PROG_OBJC])[_AM_DEPENDENCIES(OBJC)])])dnl
854 ])
855 ])
856
857
858 # When config.status generates a header, we must update the stamp-h file.
859 # This file resides in the same directory as the config header
860 # that is generated.  The stamp files are numbered to have different names.
861
862 # Autoconf calls _AC_AM_CONFIG_HEADER_HOOK (when defined) in the
863 # loop where config.status creates the headers, so we can generate
864 # our stamp files there.
865 AC_DEFUN([_AC_AM_CONFIG_HEADER_HOOK],
866 [# Compute $1's index in $config_headers.
867 _am_arg=$1
868 _am_stamp_count=1
869 for _am_header in $config_headers :; do
870   case $_am_header in
871     $_am_arg | $_am_arg:* )
872       break ;;
873     * )
874       _am_stamp_count=`expr $_am_stamp_count + 1` ;;
875   esac
876 done
877 echo "timestamp for $_am_arg" >`AS_DIRNAME(["$_am_arg"])`/stamp-h[]$_am_stamp_count])
878
879 # Copyright (C) 2001, 2003, 2005  Free Software Foundation, Inc.
880 #
881 # This file is free software; the Free Software Foundation
882 # gives unlimited permission to copy and/or distribute it,
883 # with or without modifications, as long as this notice is preserved.
884
885 # AM_PROG_INSTALL_SH
886 # ------------------
887 # Define $install_sh.
888 AC_DEFUN([AM_PROG_INSTALL_SH],
889 [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
890 install_sh=${install_sh-"\$(SHELL) $am_aux_dir/install-sh"}
891 AC_SUBST(install_sh)])
892
893 # Copyright (C) 2003, 2005  Free Software Foundation, Inc.
894 #
895 # This file is free software; the Free Software Foundation
896 # gives unlimited permission to copy and/or distribute it,
897 # with or without modifications, as long as this notice is preserved.
898
899 # serial 2
900
901 # Check whether the underlying file-system supports filenames
902 # with a leading dot.  For instance MS-DOS doesn't.
903 AC_DEFUN([AM_SET_LEADING_DOT],
904 [rm -rf .tst 2>/dev/null
905 mkdir .tst 2>/dev/null
906 if test -d .tst; then
907   am__leading_dot=.
908 else
909   am__leading_dot=_
910 fi
911 rmdir .tst 2>/dev/null
912 AC_SUBST([am__leading_dot])])
913
914 # Add --enable-maintainer-mode option to configure.         -*- Autoconf -*-
915 # From Jim Meyering
916
917 # Copyright (C) 1996, 1998, 2000, 2001, 2002, 2003, 2004, 2005
918 # 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 # serial 4
925
926 AC_DEFUN([AM_MAINTAINER_MODE],
927 [AC_MSG_CHECKING([whether to enable maintainer-specific portions of Makefiles])
928   dnl maintainer-mode is disabled by default
929   AC_ARG_ENABLE(maintainer-mode,
930 [  --enable-maintainer-mode  enable make rules and dependencies not useful
931                           (and sometimes confusing) to the casual installer],
932       USE_MAINTAINER_MODE=$enableval,
933       USE_MAINTAINER_MODE=no)
934   AC_MSG_RESULT([$USE_MAINTAINER_MODE])
935   AM_CONDITIONAL(MAINTAINER_MODE, [test $USE_MAINTAINER_MODE = yes])
936   MAINT=$MAINTAINER_MODE_TRUE
937   AC_SUBST(MAINT)dnl
938 ]
939 )
940
941 AU_DEFUN([jm_MAINTAINER_MODE], [AM_MAINTAINER_MODE])
942
943 # Check to see how 'make' treats includes.                  -*- Autoconf -*-
944
945 # Copyright (C) 2001, 2002, 2003, 2005  Free Software Foundation, Inc.
946 #
947 # This file is free software; the Free Software Foundation
948 # gives unlimited permission to copy and/or distribute it,
949 # with or without modifications, as long as this notice is preserved.
950
951 # serial 3
952
953 # AM_MAKE_INCLUDE()
954 # -----------------
955 # Check to see how make treats includes.
956 AC_DEFUN([AM_MAKE_INCLUDE],
957 [am_make=${MAKE-make}
958 cat > confinc << 'END'
959 am__doit:
960         @echo done
961 .PHONY: am__doit
962 END
963 # If we don't find an include directive, just comment out the code.
964 AC_MSG_CHECKING([for style of include used by $am_make])
965 am__include="#"
966 am__quote=
967 _am_result=none
968 # First try GNU make style include.
969 echo "include confinc" > confmf
970 # We grep out `Entering directory' and `Leaving directory'
971 # messages which can occur if `w' ends up in MAKEFLAGS.
972 # In particular we don't look at `^make:' because GNU make might
973 # be invoked under some other name (usually "gmake"), in which
974 # case it prints its new name instead of `make'.
975 if test "`$am_make -s -f confmf 2> /dev/null | grep -v 'ing directory'`" = "done"; then
976    am__include=include
977    am__quote=
978    _am_result=GNU
979 fi
980 # Now try BSD make style include.
981 if test "$am__include" = "#"; then
982    echo '.include "confinc"' > confmf
983    if test "`$am_make -s -f confmf 2> /dev/null`" = "done"; then
984       am__include=.include
985       am__quote="\""
986       _am_result=BSD
987    fi
988 fi
989 AC_SUBST([am__include])
990 AC_SUBST([am__quote])
991 AC_MSG_RESULT([$_am_result])
992 rm -f confinc confmf
993 ])
994
995 # Fake the existence of programs that GNU maintainers use.  -*- Autoconf -*-
996
997 # Copyright (C) 1997, 1999, 2000, 2001, 2003, 2004, 2005
998 # Free Software Foundation, Inc.
999 #
1000 # This file is free software; the Free Software Foundation
1001 # gives unlimited permission to copy and/or distribute it,
1002 # with or without modifications, as long as this notice is preserved.
1003
1004 # serial 5
1005
1006 # AM_MISSING_PROG(NAME, PROGRAM)
1007 # ------------------------------
1008 AC_DEFUN([AM_MISSING_PROG],
1009 [AC_REQUIRE([AM_MISSING_HAS_RUN])
1010 $1=${$1-"${am_missing_run}$2"}
1011 AC_SUBST($1)])
1012
1013
1014 # AM_MISSING_HAS_RUN
1015 # ------------------
1016 # Define MISSING if not defined so far and test if it supports --run.
1017 # If it does, set am_missing_run to use it, otherwise, to nothing.
1018 AC_DEFUN([AM_MISSING_HAS_RUN],
1019 [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
1020 AC_REQUIRE_AUX_FILE([missing])dnl
1021 test x"${MISSING+set}" = xset || MISSING="\${SHELL} $am_aux_dir/missing"
1022 # Use eval to expand $SHELL
1023 if eval "$MISSING --run true"; then
1024   am_missing_run="$MISSING --run "
1025 else
1026   am_missing_run=
1027   AC_MSG_WARN([`missing' script is too old or missing])
1028 fi
1029 ])
1030
1031 # Copyright (C) 2003, 2004, 2005, 2006  Free Software Foundation, Inc.
1032 #
1033 # This file is free software; the Free Software Foundation
1034 # gives unlimited permission to copy and/or distribute it,
1035 # with or without modifications, as long as this notice is preserved.
1036
1037 # AM_PROG_MKDIR_P
1038 # ---------------
1039 # Check for `mkdir -p'.
1040 AC_DEFUN([AM_PROG_MKDIR_P],
1041 [AC_PREREQ([2.60])dnl
1042 AC_REQUIRE([AC_PROG_MKDIR_P])dnl
1043 dnl Automake 1.8 to 1.9.6 used to define mkdir_p.  We now use MKDIR_P,
1044 dnl while keeping a definition of mkdir_p for backward compatibility.
1045 dnl @MKDIR_P@ is magic: AC_OUTPUT adjusts its value for each Makefile.
1046 dnl However we cannot define mkdir_p as $(MKDIR_P) for the sake of
1047 dnl Makefile.ins that do not define MKDIR_P, so we do our own
1048 dnl adjustment using top_builddir (which is defined more often than
1049 dnl MKDIR_P).
1050 AC_SUBST([mkdir_p], ["$MKDIR_P"])dnl
1051 case $mkdir_p in
1052   [[\\/$]]* | ?:[[\\/]]*) ;;
1053   */*) mkdir_p="\$(top_builddir)/$mkdir_p" ;;
1054 esac
1055 ])
1056
1057 # Helper functions for option handling.                     -*- Autoconf -*-
1058
1059 # Copyright (C) 2001, 2002, 2003, 2005, 2008  Free Software Foundation, Inc.
1060 #
1061 # This file is free software; the Free Software Foundation
1062 # gives unlimited permission to copy and/or distribute it,
1063 # with or without modifications, as long as this notice is preserved.
1064
1065 # serial 4
1066
1067 # _AM_MANGLE_OPTION(NAME)
1068 # -----------------------
1069 AC_DEFUN([_AM_MANGLE_OPTION],
1070 [[_AM_OPTION_]m4_bpatsubst($1, [[^a-zA-Z0-9_]], [_])])
1071
1072 # _AM_SET_OPTION(NAME)
1073 # ------------------------------
1074 # Set option NAME.  Presently that only means defining a flag for this option.
1075 AC_DEFUN([_AM_SET_OPTION],
1076 [m4_define(_AM_MANGLE_OPTION([$1]), 1)])
1077
1078 # _AM_SET_OPTIONS(OPTIONS)
1079 # ----------------------------------
1080 # OPTIONS is a space-separated list of Automake options.
1081 AC_DEFUN([_AM_SET_OPTIONS],
1082 [m4_foreach_w([_AM_Option], [$1], [_AM_SET_OPTION(_AM_Option)])])
1083
1084 # _AM_IF_OPTION(OPTION, IF-SET, [IF-NOT-SET])
1085 # -------------------------------------------
1086 # Execute IF-SET if OPTION is set, IF-NOT-SET otherwise.
1087 AC_DEFUN([_AM_IF_OPTION],
1088 [m4_ifset(_AM_MANGLE_OPTION([$1]), [$2], [$3])])
1089
1090 # Check to make sure that the build environment is sane.    -*- Autoconf -*-
1091
1092 # Copyright (C) 1996, 1997, 2000, 2001, 2003, 2005
1093 # Free Software Foundation, Inc.
1094 #
1095 # This file is free software; the Free Software Foundation
1096 # gives unlimited permission to copy and/or distribute it,
1097 # with or without modifications, as long as this notice is preserved.
1098
1099 # serial 4
1100
1101 # AM_SANITY_CHECK
1102 # ---------------
1103 AC_DEFUN([AM_SANITY_CHECK],
1104 [AC_MSG_CHECKING([whether build environment is sane])
1105 # Just in case
1106 sleep 1
1107 echo timestamp > conftest.file
1108 # Do `set' in a subshell so we don't clobber the current shell's
1109 # arguments.  Must try -L first in case configure is actually a
1110 # symlink; some systems play weird games with the mod time of symlinks
1111 # (eg FreeBSD returns the mod time of the symlink's containing
1112 # directory).
1113 if (
1114    set X `ls -Lt $srcdir/configure conftest.file 2> /dev/null`
1115    if test "$[*]" = "X"; then
1116       # -L didn't work.
1117       set X `ls -t $srcdir/configure conftest.file`
1118    fi
1119    rm -f conftest.file
1120    if test "$[*]" != "X $srcdir/configure conftest.file" \
1121       && test "$[*]" != "X conftest.file $srcdir/configure"; then
1122
1123       # If neither matched, then we have a broken ls.  This can happen
1124       # if, for instance, CONFIG_SHELL is bash and it inherits a
1125       # broken ls alias from the environment.  This has actually
1126       # happened.  Such a system could not be considered "sane".
1127       AC_MSG_ERROR([ls -t appears to fail.  Make sure there is not a broken
1128 alias in your environment])
1129    fi
1130
1131    test "$[2]" = conftest.file
1132    )
1133 then
1134    # Ok.
1135    :
1136 else
1137    AC_MSG_ERROR([newly created file is older than distributed files!
1138 Check your system clock])
1139 fi
1140 AC_MSG_RESULT(yes)])
1141
1142 # Copyright (C) 2001, 2003, 2005  Free Software Foundation, Inc.
1143 #
1144 # This file is free software; the Free Software Foundation
1145 # gives unlimited permission to copy and/or distribute it,
1146 # with or without modifications, as long as this notice is preserved.
1147
1148 # AM_PROG_INSTALL_STRIP
1149 # ---------------------
1150 # One issue with vendor `install' (even GNU) is that you can't
1151 # specify the program used to strip binaries.  This is especially
1152 # annoying in cross-compiling environments, where the build's strip
1153 # is unlikely to handle the host's binaries.
1154 # Fortunately install-sh will honor a STRIPPROG variable, so we
1155 # always use install-sh in `make install-strip', and initialize
1156 # STRIPPROG with the value of the STRIP variable (set by the user).
1157 AC_DEFUN([AM_PROG_INSTALL_STRIP],
1158 [AC_REQUIRE([AM_PROG_INSTALL_SH])dnl
1159 # Installed binaries are usually stripped using `strip' when the user
1160 # run `make install-strip'.  However `strip' might not be the right
1161 # tool to use in cross-compilation environments, therefore Automake
1162 # will honor the `STRIP' environment variable to overrule this program.
1163 dnl Don't test for $cross_compiling = yes, because it might be `maybe'.
1164 if test "$cross_compiling" != no; then
1165   AC_CHECK_TOOL([STRIP], [strip], :)
1166 fi
1167 INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s"
1168 AC_SUBST([INSTALL_STRIP_PROGRAM])])
1169
1170 # Copyright (C) 2006  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_SUBST_NOTMAKE(VARIABLE)
1177 # ---------------------------
1178 # Prevent Automake from outputting VARIABLE = @VARIABLE@ in Makefile.in.
1179 # This macro is traced by Automake.
1180 AC_DEFUN([_AM_SUBST_NOTMAKE])
1181
1182 # Check how to create a tarball.                            -*- Autoconf -*-
1183
1184 # Copyright (C) 2004, 2005  Free Software Foundation, Inc.
1185 #
1186 # This file is free software; the Free Software Foundation
1187 # gives unlimited permission to copy and/or distribute it,
1188 # with or without modifications, as long as this notice is preserved.
1189
1190 # serial 2
1191
1192 # _AM_PROG_TAR(FORMAT)
1193 # --------------------
1194 # Check how to create a tarball in format FORMAT.
1195 # FORMAT should be one of `v7', `ustar', or `pax'.
1196 #
1197 # Substitute a variable $(am__tar) that is a command
1198 # writing to stdout a FORMAT-tarball containing the directory
1199 # $tardir.
1200 #     tardir=directory && $(am__tar) > result.tar
1201 #
1202 # Substitute a variable $(am__untar) that extract such
1203 # a tarball read from stdin.
1204 #     $(am__untar) < result.tar
1205 AC_DEFUN([_AM_PROG_TAR],
1206 [# Always define AMTAR for backward compatibility.
1207 AM_MISSING_PROG([AMTAR], [tar])
1208 m4_if([$1], [v7],
1209      [am__tar='${AMTAR} chof - "$$tardir"'; am__untar='${AMTAR} xf -'],
1210      [m4_case([$1], [ustar],, [pax],,
1211               [m4_fatal([Unknown tar format])])
1212 AC_MSG_CHECKING([how to create a $1 tar archive])
1213 # Loop over all known methods to create a tar archive until one works.
1214 _am_tools='gnutar m4_if([$1], [ustar], [plaintar]) pax cpio none'
1215 _am_tools=${am_cv_prog_tar_$1-$_am_tools}
1216 # Do not fold the above two line into one, because Tru64 sh and
1217 # Solaris sh will not grok spaces in the rhs of `-'.
1218 for _am_tool in $_am_tools
1219 do
1220   case $_am_tool in
1221   gnutar)
1222     for _am_tar in tar gnutar gtar;
1223     do
1224       AM_RUN_LOG([$_am_tar --version]) && break
1225     done
1226     am__tar="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$$tardir"'
1227     am__tar_="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$tardir"'
1228     am__untar="$_am_tar -xf -"
1229     ;;
1230   plaintar)
1231     # Must skip GNU tar: if it does not support --format= it doesn't create
1232     # ustar tarball either.
1233     (tar --version) >/dev/null 2>&1 && continue
1234     am__tar='tar chf - "$$tardir"'
1235     am__tar_='tar chf - "$tardir"'
1236     am__untar='tar xf -'
1237     ;;
1238   pax)
1239     am__tar='pax -L -x $1 -w "$$tardir"'
1240     am__tar_='pax -L -x $1 -w "$tardir"'
1241     am__untar='pax -r'
1242     ;;
1243   cpio)
1244     am__tar='find "$$tardir" -print | cpio -o -H $1 -L'
1245     am__tar_='find "$tardir" -print | cpio -o -H $1 -L'
1246     am__untar='cpio -i -H $1 -d'
1247     ;;
1248   none)
1249     am__tar=false
1250     am__tar_=false
1251     am__untar=false
1252     ;;
1253   esac
1254
1255   # If the value was cached, stop now.  We just wanted to have am__tar
1256   # and am__untar set.
1257   test -n "${am_cv_prog_tar_$1}" && break
1258
1259   # tar/untar a dummy directory, and stop if the command works
1260   rm -rf conftest.dir
1261   mkdir conftest.dir
1262   echo GrepMe > conftest.dir/file
1263   AM_RUN_LOG([tardir=conftest.dir && eval $am__tar_ >conftest.tar])
1264   rm -rf conftest.dir
1265   if test -s conftest.tar; then
1266     AM_RUN_LOG([$am__untar <conftest.tar])
1267     grep GrepMe conftest.dir/file >/dev/null 2>&1 && break
1268   fi
1269 done
1270 rm -rf conftest.dir
1271
1272 AC_CACHE_VAL([am_cv_prog_tar_$1], [am_cv_prog_tar_$1=$_am_tool])
1273 AC_MSG_RESULT([$am_cv_prog_tar_$1])])
1274 AC_SUBST([am__tar])
1275 AC_SUBST([am__untar])
1276 ]) # _AM_PROG_TAR
1277