More build fixes
[nbd.git] / aclocal.m4
1 # generated automatically by aclocal 1.10.1 -*- 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(AC_AUTOCONF_VERSION, [2.61],,
17 [m4_warning([this file was generated for autoconf 2.61.
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
118   system ("touch conf.glibtest");
119
120   /* HP/UX 9 (%@#!) writes to sscanf strings */
121   tmp_version = g_strdup("$min_glib_version");
122   if (sscanf(tmp_version, "%d.%d.%d", &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 (%d.%d.%d) was found.\n",
162                glib_major_version, glib_minor_version, glib_micro_version);
163         printf("*** You need a version of GLIB newer than %d.%d.%d. 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
236 # Copyright © 2004 Scott James Remnant <scott@netsplit.com>.
237 #
238 # This program is free software; you can redistribute it and/or modify
239 # it under the terms of the GNU General Public License as published by
240 # the Free Software Foundation; either version 2 of the License, or
241 # (at your option) any later version.
242 #
243 # This program is distributed in the hope that it will be useful, but
244 # WITHOUT ANY WARRANTY; without even the implied warranty of
245 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
246 # General Public License for more details.
247 #
248 # You should have received a copy of the GNU General Public License
249 # along with this program; if not, write to the Free Software
250 # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
251 #
252 # As a special exception to the GNU General Public License, if you
253 # distribute this file as part of a program that contains a
254 # configuration script generated by Autoconf, you may include it under
255 # the same distribution terms that you use for the rest of that program.
256
257 # PKG_PROG_PKG_CONFIG([MIN-VERSION])
258 # ----------------------------------
259 AC_DEFUN([PKG_PROG_PKG_CONFIG],
260 [m4_pattern_forbid([^_?PKG_[A-Z_]+$])
261 m4_pattern_allow([^PKG_CONFIG(_PATH)?$])
262 AC_ARG_VAR([PKG_CONFIG], [path to pkg-config utility])dnl
263 if test "x$ac_cv_env_PKG_CONFIG_set" != "xset"; then
264         AC_PATH_TOOL([PKG_CONFIG], [pkg-config])
265 fi
266 if test -n "$PKG_CONFIG"; then
267         _pkg_min_version=m4_default([$1], [0.9.0])
268         AC_MSG_CHECKING([pkg-config is at least version $_pkg_min_version])
269         if $PKG_CONFIG --atleast-pkgconfig-version $_pkg_min_version; then
270                 AC_MSG_RESULT([yes])
271         else
272                 AC_MSG_RESULT([no])
273                 PKG_CONFIG=""
274         fi
275                 
276 fi[]dnl
277 ])# PKG_PROG_PKG_CONFIG
278
279 # PKG_CHECK_EXISTS(MODULES, [ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND])
280 #
281 # Check to see whether a particular set of modules exists.  Similar
282 # to PKG_CHECK_MODULES(), but does not set variables or print errors.
283 #
284 #
285 # Similar to PKG_CHECK_MODULES, make sure that the first instance of
286 # this or PKG_CHECK_MODULES is called, or make sure to call
287 # PKG_CHECK_EXISTS manually
288 # --------------------------------------------------------------
289 AC_DEFUN([PKG_CHECK_EXISTS],
290 [AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl
291 if test -n "$PKG_CONFIG" && \
292     AC_RUN_LOG([$PKG_CONFIG --exists --print-errors "$1"]); then
293   m4_ifval([$2], [$2], [:])
294 m4_ifvaln([$3], [else
295   $3])dnl
296 fi])
297
298
299 # _PKG_CONFIG([VARIABLE], [COMMAND], [MODULES])
300 # ---------------------------------------------
301 m4_define([_PKG_CONFIG],
302 [if test -n "$PKG_CONFIG"; then
303     if test -n "$$1"; then
304         pkg_cv_[]$1="$$1"
305     else
306         PKG_CHECK_EXISTS([$3],
307                          [pkg_cv_[]$1=`$PKG_CONFIG --[]$2 "$3" 2>/dev/null`],
308                          [pkg_failed=yes])
309     fi
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         _PKG_SHORT_ERRORS_SUPPORTED
354         if test $_pkg_short_errors_supported = yes; then
355                 $1[]_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "$2"`
356         else 
357                 $1[]_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "$2"`
358         fi
359         # Put the nasty error message in config.log where it belongs
360         echo "$$1[]_PKG_ERRORS" >&AS_MESSAGE_LOG_FD
361
362         ifelse([$4], , [AC_MSG_ERROR(dnl
363 [Package requirements ($2) were not met:
364
365 $$1_PKG_ERRORS
366
367 Consider adjusting the PKG_CONFIG_PATH environment variable if you
368 installed software in a non-standard prefix.
369
370 _PKG_TEXT
371 ])],
372                 [AC_MSG_RESULT([no])
373                 $4])
374 elif test $pkg_failed = untried; then
375         ifelse([$4], , [AC_MSG_FAILURE(dnl
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                 [$4])
384 else
385         $1[]_CFLAGS=$pkg_cv_[]$1[]_CFLAGS
386         $1[]_LIBS=$pkg_cv_[]$1[]_LIBS
387         AC_MSG_RESULT([yes])
388         ifelse([$3], , :, [$3])
389 fi[]dnl
390 ])# PKG_CHECK_MODULES
391
392 # Copyright (C) 2002, 2003, 2005, 2006, 2007  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.10'
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.10.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 AC_INIT_AUTOMAKE.
422 AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION],
423 [AM_AUTOMAKE_VERSION([1.10.1])dnl
424 m4_ifndef([AC_AUTOCONF_VERSION],
425   [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl
426 _AM_AUTOCONF_VERSION(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
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 8
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 if $2; then
504   $1_TRUE=
505   $1_FALSE='#'
506 else
507   $1_TRUE='#'
508   $1_FALSE=
509 fi
510 AC_CONFIG_COMMANDS_PRE(
511 [if test -z "${$1_TRUE}" && test -z "${$1_FALSE}"; then
512   AC_MSG_ERROR([[conditional "$1" was never defined.
513 Usually this means the macro was only invoked conditionally.]])
514 fi])])
515
516 # Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006
517 # Free Software Foundation, Inc.
518 #
519 # This file is free software; the Free Software Foundation
520 # gives unlimited permission to copy and/or distribute it,
521 # with or without modifications, as long as this notice is preserved.
522
523 # serial 9
524
525 # There are a few dirty hacks below to avoid letting `AC_PROG_CC' be
526 # written in clear, in which case automake, when reading aclocal.m4,
527 # will think it sees a *use*, and therefore will trigger all it's
528 # C support machinery.  Also note that it means that autoscan, seeing
529 # CC etc. in the Makefile, will ask for an AC_PROG_CC use...
530
531
532 # _AM_DEPENDENCIES(NAME)
533 # ----------------------
534 # See how the compiler implements dependency checking.
535 # NAME is "CC", "CXX", "GCJ", or "OBJC".
536 # We try a few techniques and use that to set a single cache variable.
537 #
538 # We don't AC_REQUIRE the corresponding AC_PROG_CC since the latter was
539 # modified to invoke _AM_DEPENDENCIES(CC); we would have a circular
540 # dependency, and given that the user is not expected to run this macro,
541 # just rely on AC_PROG_CC.
542 AC_DEFUN([_AM_DEPENDENCIES],
543 [AC_REQUIRE([AM_SET_DEPDIR])dnl
544 AC_REQUIRE([AM_OUTPUT_DEPENDENCY_COMMANDS])dnl
545 AC_REQUIRE([AM_MAKE_INCLUDE])dnl
546 AC_REQUIRE([AM_DEP_TRACK])dnl
547
548 ifelse([$1], CC,   [depcc="$CC"   am_compiler_list=],
549        [$1], CXX,  [depcc="$CXX"  am_compiler_list=],
550        [$1], OBJC, [depcc="$OBJC" am_compiler_list='gcc3 gcc'],
551        [$1], UPC,  [depcc="$UPC"  am_compiler_list=],
552        [$1], GCJ,  [depcc="$GCJ"  am_compiler_list='gcc3 gcc'],
553                    [depcc="$$1"   am_compiler_list=])
554
555 AC_CACHE_CHECK([dependency style of $depcc],
556                [am_cv_$1_dependencies_compiler_type],
557 [if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then
558   # We make a subdir and do the tests there.  Otherwise we can end up
559   # making bogus files that we don't know about and never remove.  For
560   # instance it was reported that on HP-UX the gcc test will end up
561   # making a dummy file named `D' -- because `-MD' means `put the output
562   # in D'.
563   mkdir conftest.dir
564   # Copy depcomp to subdir because otherwise we won't find it if we're
565   # using a relative directory.
566   cp "$am_depcomp" conftest.dir
567   cd conftest.dir
568   # We will build objects and dependencies in a subdirectory because
569   # it helps to detect inapplicable dependency modes.  For instance
570   # both Tru64's cc and ICC support -MD to output dependencies as a
571   # side effect of compilation, but ICC will put the dependencies in
572   # the current directory while Tru64 will put them in the object
573   # directory.
574   mkdir sub
575
576   am_cv_$1_dependencies_compiler_type=none
577   if test "$am_compiler_list" = ""; then
578      am_compiler_list=`sed -n ['s/^#*\([a-zA-Z0-9]*\))$/\1/p'] < ./depcomp`
579   fi
580   for depmode in $am_compiler_list; do
581     # Setup a source with many dependencies, because some compilers
582     # like to wrap large dependency lists on column 80 (with \), and
583     # we should not choose a depcomp mode which is confused by this.
584     #
585     # We need to recreate these files for each test, as the compiler may
586     # overwrite some of them when testing with obscure command lines.
587     # This happens at least with the AIX C compiler.
588     : > sub/conftest.c
589     for i in 1 2 3 4 5 6; do
590       echo '#include "conftst'$i'.h"' >> sub/conftest.c
591       # Using `: > sub/conftst$i.h' creates only sub/conftst1.h with
592       # Solaris 8's {/usr,}/bin/sh.
593       touch sub/conftst$i.h
594     done
595     echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf
596
597     case $depmode in
598     nosideeffect)
599       # after this tag, mechanisms are not by side-effect, so they'll
600       # only be used when explicitly requested
601       if test "x$enable_dependency_tracking" = xyes; then
602         continue
603       else
604         break
605       fi
606       ;;
607     none) break ;;
608     esac
609     # We check with `-c' and `-o' for the sake of the "dashmstdout"
610     # mode.  It turns out that the SunPro C++ compiler does not properly
611     # handle `-M -o', and we need to detect this.
612     if depmode=$depmode \
613        source=sub/conftest.c object=sub/conftest.${OBJEXT-o} \
614        depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \
615        $SHELL ./depcomp $depcc -c -o sub/conftest.${OBJEXT-o} sub/conftest.c \
616          >/dev/null 2>conftest.err &&
617        grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 &&
618        grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 &&
619        grep sub/conftest.${OBJEXT-o} sub/conftest.Po > /dev/null 2>&1 &&
620        ${MAKE-make} -s -f confmf > /dev/null 2>&1; then
621       # icc doesn't choke on unknown options, it will just issue warnings
622       # or remarks (even with -Werror).  So we grep stderr for any message
623       # that says an option was ignored or not supported.
624       # When given -MP, icc 7.0 and 7.1 complain thusly:
625       #   icc: Command line warning: ignoring option '-M'; no argument required
626       # The diagnosis changed in icc 8.0:
627       #   icc: Command line remark: option '-MP' not supported
628       if (grep 'ignoring option' conftest.err ||
629           grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else
630         am_cv_$1_dependencies_compiler_type=$depmode
631         break
632       fi
633     fi
634   done
635
636   cd ..
637   rm -rf conftest.dir
638 else
639   am_cv_$1_dependencies_compiler_type=none
640 fi
641 ])
642 AC_SUBST([$1DEPMODE], [depmode=$am_cv_$1_dependencies_compiler_type])
643 AM_CONDITIONAL([am__fastdep$1], [
644   test "x$enable_dependency_tracking" != xno \
645   && test "$am_cv_$1_dependencies_compiler_type" = gcc3])
646 ])
647
648
649 # AM_SET_DEPDIR
650 # -------------
651 # Choose a directory name for dependency files.
652 # This macro is AC_REQUIREd in _AM_DEPENDENCIES
653 AC_DEFUN([AM_SET_DEPDIR],
654 [AC_REQUIRE([AM_SET_LEADING_DOT])dnl
655 AC_SUBST([DEPDIR], ["${am__leading_dot}deps"])dnl
656 ])
657
658
659 # AM_DEP_TRACK
660 # ------------
661 AC_DEFUN([AM_DEP_TRACK],
662 [AC_ARG_ENABLE(dependency-tracking,
663 [  --disable-dependency-tracking  speeds up one-time build
664   --enable-dependency-tracking   do not reject slow dependency extractors])
665 if test "x$enable_dependency_tracking" != xno; then
666   am_depcomp="$ac_aux_dir/depcomp"
667   AMDEPBACKSLASH='\'
668 fi
669 AM_CONDITIONAL([AMDEP], [test "x$enable_dependency_tracking" != xno])
670 AC_SUBST([AMDEPBACKSLASH])dnl
671 _AM_SUBST_NOTMAKE([AMDEPBACKSLASH])dnl
672 ])
673
674 # Generate code to set up dependency tracking.              -*- Autoconf -*-
675
676 # Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005
677 # Free Software Foundation, Inc.
678 #
679 # This file is free software; the Free Software Foundation
680 # gives unlimited permission to copy and/or distribute it,
681 # with or without modifications, as long as this notice is preserved.
682
683 #serial 3
684
685 # _AM_OUTPUT_DEPENDENCY_COMMANDS
686 # ------------------------------
687 AC_DEFUN([_AM_OUTPUT_DEPENDENCY_COMMANDS],
688 [for mf in $CONFIG_FILES; do
689   # Strip MF so we end up with the name of the file.
690   mf=`echo "$mf" | sed -e 's/:.*$//'`
691   # Check whether this is an Automake generated Makefile or not.
692   # We used to match only the files named `Makefile.in', but
693   # some people rename them; so instead we look at the file content.
694   # Grep'ing the first line is not enough: some people post-process
695   # each Makefile.in and add a new line on top of each file to say so.
696   # Grep'ing the whole file is not good either: AIX grep has a line
697   # limit of 2048, but all sed's we know have understand at least 4000.
698   if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then
699     dirpart=`AS_DIRNAME("$mf")`
700   else
701     continue
702   fi
703   # Extract the definition of DEPDIR, am__include, and am__quote
704   # from the Makefile without running `make'.
705   DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"`
706   test -z "$DEPDIR" && continue
707   am__include=`sed -n 's/^am__include = //p' < "$mf"`
708   test -z "am__include" && continue
709   am__quote=`sed -n 's/^am__quote = //p' < "$mf"`
710   # When using ansi2knr, U may be empty or an underscore; expand it
711   U=`sed -n 's/^U = //p' < "$mf"`
712   # Find all dependency output files, they are included files with
713   # $(DEPDIR) in their names.  We invoke sed twice because it is the
714   # simplest approach to changing $(DEPDIR) to its actual value in the
715   # expansion.
716   for file in `sed -n "
717     s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \
718        sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g' -e 's/\$U/'"$U"'/g'`; do
719     # Make sure the directory exists.
720     test -f "$dirpart/$file" && continue
721     fdir=`AS_DIRNAME(["$file"])`
722     AS_MKDIR_P([$dirpart/$fdir])
723     # echo "creating $dirpart/$file"
724     echo '# dummy' > "$dirpart/$file"
725   done
726 done
727 ])# _AM_OUTPUT_DEPENDENCY_COMMANDS
728
729
730 # AM_OUTPUT_DEPENDENCY_COMMANDS
731 # -----------------------------
732 # This macro should only be invoked once -- use via AC_REQUIRE.
733 #
734 # This code is only required when automatic dependency tracking
735 # is enabled.  FIXME.  This creates each `.P' file that we will
736 # need in order to bootstrap the dependency handling code.
737 AC_DEFUN([AM_OUTPUT_DEPENDENCY_COMMANDS],
738 [AC_CONFIG_COMMANDS([depfiles],
739      [test x"$AMDEP_TRUE" != x"" || _AM_OUTPUT_DEPENDENCY_COMMANDS],
740      [AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir"])
741 ])
742
743 # Do all the work for Automake.                             -*- Autoconf -*-
744
745 # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
746 # 2005, 2006, 2008 Free Software Foundation, Inc.
747 #
748 # This file is free software; the Free Software Foundation
749 # gives unlimited permission to copy and/or distribute it,
750 # with or without modifications, as long as this notice is preserved.
751
752 # serial 13
753
754 # This macro actually does too much.  Some checks are only needed if
755 # your package does certain things.  But this isn't really a big deal.
756
757 # AM_INIT_AUTOMAKE(PACKAGE, VERSION, [NO-DEFINE])
758 # AM_INIT_AUTOMAKE([OPTIONS])
759 # -----------------------------------------------
760 # The call with PACKAGE and VERSION arguments is the old style
761 # call (pre autoconf-2.50), which is being phased out.  PACKAGE
762 # and VERSION should now be passed to AC_INIT and removed from
763 # the call to AM_INIT_AUTOMAKE.
764 # We support both call styles for the transition.  After
765 # the next Automake release, Autoconf can make the AC_INIT
766 # arguments mandatory, and then we can depend on a new Autoconf
767 # release and drop the old call support.
768 AC_DEFUN([AM_INIT_AUTOMAKE],
769 [AC_PREREQ([2.60])dnl
770 dnl Autoconf wants to disallow AM_ names.  We explicitly allow
771 dnl the ones we care about.
772 m4_pattern_allow([^AM_[A-Z]+FLAGS$])dnl
773 AC_REQUIRE([AM_SET_CURRENT_AUTOMAKE_VERSION])dnl
774 AC_REQUIRE([AC_PROG_INSTALL])dnl
775 if test "`cd $srcdir && pwd`" != "`pwd`"; then
776   # Use -I$(srcdir) only when $(srcdir) != ., so that make's output
777   # is not polluted with repeated "-I."
778   AC_SUBST([am__isrc], [' -I$(srcdir)'])_AM_SUBST_NOTMAKE([am__isrc])dnl
779   # test to see if srcdir already configured
780   if test -f $srcdir/config.status; then
781     AC_MSG_ERROR([source directory already configured; run "make distclean" there first])
782   fi
783 fi
784
785 # test whether we have cygpath
786 if test -z "$CYGPATH_W"; then
787   if (cygpath --version) >/dev/null 2>/dev/null; then
788     CYGPATH_W='cygpath -w'
789   else
790     CYGPATH_W=echo
791   fi
792 fi
793 AC_SUBST([CYGPATH_W])
794
795 # Define the identity of the package.
796 dnl Distinguish between old-style and new-style calls.
797 m4_ifval([$2],
798 [m4_ifval([$3], [_AM_SET_OPTION([no-define])])dnl
799  AC_SUBST([PACKAGE], [$1])dnl
800  AC_SUBST([VERSION], [$2])],
801 [_AM_SET_OPTIONS([$1])dnl
802 dnl Diagnose old-style AC_INIT with new-style AM_AUTOMAKE_INIT.
803 m4_if(m4_ifdef([AC_PACKAGE_NAME], 1)m4_ifdef([AC_PACKAGE_VERSION], 1), 11,,
804   [m4_fatal([AC_INIT should be called with package and version arguments])])dnl
805  AC_SUBST([PACKAGE], ['AC_PACKAGE_TARNAME'])dnl
806  AC_SUBST([VERSION], ['AC_PACKAGE_VERSION'])])dnl
807
808 _AM_IF_OPTION([no-define],,
809 [AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE", [Name of package])
810  AC_DEFINE_UNQUOTED(VERSION, "$VERSION", [Version number of package])])dnl
811
812 # Some tools Automake needs.
813 AC_REQUIRE([AM_SANITY_CHECK])dnl
814 AC_REQUIRE([AC_ARG_PROGRAM])dnl
815 AM_MISSING_PROG(ACLOCAL, aclocal-${am__api_version})
816 AM_MISSING_PROG(AUTOCONF, autoconf)
817 AM_MISSING_PROG(AUTOMAKE, automake-${am__api_version})
818 AM_MISSING_PROG(AUTOHEADER, autoheader)
819 AM_MISSING_PROG(MAKEINFO, makeinfo)
820 AM_PROG_INSTALL_SH
821 AM_PROG_INSTALL_STRIP
822 AC_REQUIRE([AM_PROG_MKDIR_P])dnl
823 # We need awk for the "check" target.  The system "awk" is bad on
824 # some platforms.
825 AC_REQUIRE([AC_PROG_AWK])dnl
826 AC_REQUIRE([AC_PROG_MAKE_SET])dnl
827 AC_REQUIRE([AM_SET_LEADING_DOT])dnl
828 _AM_IF_OPTION([tar-ustar], [_AM_PROG_TAR([ustar])],
829               [_AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])],
830                              [_AM_PROG_TAR([v7])])])
831 _AM_IF_OPTION([no-dependencies],,
832 [AC_PROVIDE_IFELSE([AC_PROG_CC],
833                   [_AM_DEPENDENCIES(CC)],
834                   [define([AC_PROG_CC],
835                           defn([AC_PROG_CC])[_AM_DEPENDENCIES(CC)])])dnl
836 AC_PROVIDE_IFELSE([AC_PROG_CXX],
837                   [_AM_DEPENDENCIES(CXX)],
838                   [define([AC_PROG_CXX],
839                           defn([AC_PROG_CXX])[_AM_DEPENDENCIES(CXX)])])dnl
840 AC_PROVIDE_IFELSE([AC_PROG_OBJC],
841                   [_AM_DEPENDENCIES(OBJC)],
842                   [define([AC_PROG_OBJC],
843                           defn([AC_PROG_OBJC])[_AM_DEPENDENCIES(OBJC)])])dnl
844 ])
845 ])
846
847
848 # When config.status generates a header, we must update the stamp-h file.
849 # This file resides in the same directory as the config header
850 # that is generated.  The stamp files are numbered to have different names.
851
852 # Autoconf calls _AC_AM_CONFIG_HEADER_HOOK (when defined) in the
853 # loop where config.status creates the headers, so we can generate
854 # our stamp files there.
855 AC_DEFUN([_AC_AM_CONFIG_HEADER_HOOK],
856 [# Compute $1's index in $config_headers.
857 _am_arg=$1
858 _am_stamp_count=1
859 for _am_header in $config_headers :; do
860   case $_am_header in
861     $_am_arg | $_am_arg:* )
862       break ;;
863     * )
864       _am_stamp_count=`expr $_am_stamp_count + 1` ;;
865   esac
866 done
867 echo "timestamp for $_am_arg" >`AS_DIRNAME(["$_am_arg"])`/stamp-h[]$_am_stamp_count])
868
869 # Copyright (C) 2001, 2003, 2005  Free Software Foundation, Inc.
870 #
871 # This file is free software; the Free Software Foundation
872 # gives unlimited permission to copy and/or distribute it,
873 # with or without modifications, as long as this notice is preserved.
874
875 # AM_PROG_INSTALL_SH
876 # ------------------
877 # Define $install_sh.
878 AC_DEFUN([AM_PROG_INSTALL_SH],
879 [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
880 install_sh=${install_sh-"\$(SHELL) $am_aux_dir/install-sh"}
881 AC_SUBST(install_sh)])
882
883 # Copyright (C) 2003, 2005  Free Software Foundation, Inc.
884 #
885 # This file is free software; the Free Software Foundation
886 # gives unlimited permission to copy and/or distribute it,
887 # with or without modifications, as long as this notice is preserved.
888
889 # serial 2
890
891 # Check whether the underlying file-system supports filenames
892 # with a leading dot.  For instance MS-DOS doesn't.
893 AC_DEFUN([AM_SET_LEADING_DOT],
894 [rm -rf .tst 2>/dev/null
895 mkdir .tst 2>/dev/null
896 if test -d .tst; then
897   am__leading_dot=.
898 else
899   am__leading_dot=_
900 fi
901 rmdir .tst 2>/dev/null
902 AC_SUBST([am__leading_dot])])
903
904 # Add --enable-maintainer-mode option to configure.         -*- Autoconf -*-
905 # From Jim Meyering
906
907 # Copyright (C) 1996, 1998, 2000, 2001, 2002, 2003, 2004, 2005
908 # Free Software Foundation, Inc.
909 #
910 # This file is free software; the Free Software Foundation
911 # gives unlimited permission to copy and/or distribute it,
912 # with or without modifications, as long as this notice is preserved.
913
914 # serial 4
915
916 AC_DEFUN([AM_MAINTAINER_MODE],
917 [AC_MSG_CHECKING([whether to enable maintainer-specific portions of Makefiles])
918   dnl maintainer-mode is disabled by default
919   AC_ARG_ENABLE(maintainer-mode,
920 [  --enable-maintainer-mode  enable make rules and dependencies not useful
921                           (and sometimes confusing) to the casual installer],
922       USE_MAINTAINER_MODE=$enableval,
923       USE_MAINTAINER_MODE=no)
924   AC_MSG_RESULT([$USE_MAINTAINER_MODE])
925   AM_CONDITIONAL(MAINTAINER_MODE, [test $USE_MAINTAINER_MODE = yes])
926   MAINT=$MAINTAINER_MODE_TRUE
927   AC_SUBST(MAINT)dnl
928 ]
929 )
930
931 AU_DEFUN([jm_MAINTAINER_MODE], [AM_MAINTAINER_MODE])
932
933 # Check to see how 'make' treats includes.                  -*- Autoconf -*-
934
935 # Copyright (C) 2001, 2002, 2003, 2005  Free Software Foundation, Inc.
936 #
937 # This file is free software; the Free Software Foundation
938 # gives unlimited permission to copy and/or distribute it,
939 # with or without modifications, as long as this notice is preserved.
940
941 # serial 3
942
943 # AM_MAKE_INCLUDE()
944 # -----------------
945 # Check to see how make treats includes.
946 AC_DEFUN([AM_MAKE_INCLUDE],
947 [am_make=${MAKE-make}
948 cat > confinc << 'END'
949 am__doit:
950         @echo done
951 .PHONY: am__doit
952 END
953 # If we don't find an include directive, just comment out the code.
954 AC_MSG_CHECKING([for style of include used by $am_make])
955 am__include="#"
956 am__quote=
957 _am_result=none
958 # First try GNU make style include.
959 echo "include confinc" > confmf
960 # We grep out `Entering directory' and `Leaving directory'
961 # messages which can occur if `w' ends up in MAKEFLAGS.
962 # In particular we don't look at `^make:' because GNU make might
963 # be invoked under some other name (usually "gmake"), in which
964 # case it prints its new name instead of `make'.
965 if test "`$am_make -s -f confmf 2> /dev/null | grep -v 'ing directory'`" = "done"; then
966    am__include=include
967    am__quote=
968    _am_result=GNU
969 fi
970 # Now try BSD make style include.
971 if test "$am__include" = "#"; then
972    echo '.include "confinc"' > confmf
973    if test "`$am_make -s -f confmf 2> /dev/null`" = "done"; then
974       am__include=.include
975       am__quote="\""
976       _am_result=BSD
977    fi
978 fi
979 AC_SUBST([am__include])
980 AC_SUBST([am__quote])
981 AC_MSG_RESULT([$_am_result])
982 rm -f confinc confmf
983 ])
984
985 # Fake the existence of programs that GNU maintainers use.  -*- Autoconf -*-
986
987 # Copyright (C) 1997, 1999, 2000, 2001, 2003, 2004, 2005
988 # Free Software Foundation, Inc.
989 #
990 # This file is free software; the Free Software Foundation
991 # gives unlimited permission to copy and/or distribute it,
992 # with or without modifications, as long as this notice is preserved.
993
994 # serial 5
995
996 # AM_MISSING_PROG(NAME, PROGRAM)
997 # ------------------------------
998 AC_DEFUN([AM_MISSING_PROG],
999 [AC_REQUIRE([AM_MISSING_HAS_RUN])
1000 $1=${$1-"${am_missing_run}$2"}
1001 AC_SUBST($1)])
1002
1003
1004 # AM_MISSING_HAS_RUN
1005 # ------------------
1006 # Define MISSING if not defined so far and test if it supports --run.
1007 # If it does, set am_missing_run to use it, otherwise, to nothing.
1008 AC_DEFUN([AM_MISSING_HAS_RUN],
1009 [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
1010 AC_REQUIRE_AUX_FILE([missing])dnl
1011 test x"${MISSING+set}" = xset || MISSING="\${SHELL} $am_aux_dir/missing"
1012 # Use eval to expand $SHELL
1013 if eval "$MISSING --run true"; then
1014   am_missing_run="$MISSING --run "
1015 else
1016   am_missing_run=
1017   AC_MSG_WARN([`missing' script is too old or missing])
1018 fi
1019 ])
1020
1021 # Copyright (C) 2003, 2004, 2005, 2006  Free Software Foundation, Inc.
1022 #
1023 # This file is free software; the Free Software Foundation
1024 # gives unlimited permission to copy and/or distribute it,
1025 # with or without modifications, as long as this notice is preserved.
1026
1027 # AM_PROG_MKDIR_P
1028 # ---------------
1029 # Check for `mkdir -p'.
1030 AC_DEFUN([AM_PROG_MKDIR_P],
1031 [AC_PREREQ([2.60])dnl
1032 AC_REQUIRE([AC_PROG_MKDIR_P])dnl
1033 dnl Automake 1.8 to 1.9.6 used to define mkdir_p.  We now use MKDIR_P,
1034 dnl while keeping a definition of mkdir_p for backward compatibility.
1035 dnl @MKDIR_P@ is magic: AC_OUTPUT adjusts its value for each Makefile.
1036 dnl However we cannot define mkdir_p as $(MKDIR_P) for the sake of
1037 dnl Makefile.ins that do not define MKDIR_P, so we do our own
1038 dnl adjustment using top_builddir (which is defined more often than
1039 dnl MKDIR_P).
1040 AC_SUBST([mkdir_p], ["$MKDIR_P"])dnl
1041 case $mkdir_p in
1042   [[\\/$]]* | ?:[[\\/]]*) ;;
1043   */*) mkdir_p="\$(top_builddir)/$mkdir_p" ;;
1044 esac
1045 ])
1046
1047 # Helper functions for option handling.                     -*- Autoconf -*-
1048
1049 # Copyright (C) 2001, 2002, 2003, 2005  Free Software Foundation, Inc.
1050 #
1051 # This file is free software; the Free Software Foundation
1052 # gives unlimited permission to copy and/or distribute it,
1053 # with or without modifications, as long as this notice is preserved.
1054
1055 # serial 3
1056
1057 # _AM_MANGLE_OPTION(NAME)
1058 # -----------------------
1059 AC_DEFUN([_AM_MANGLE_OPTION],
1060 [[_AM_OPTION_]m4_bpatsubst($1, [[^a-zA-Z0-9_]], [_])])
1061
1062 # _AM_SET_OPTION(NAME)
1063 # ------------------------------
1064 # Set option NAME.  Presently that only means defining a flag for this option.
1065 AC_DEFUN([_AM_SET_OPTION],
1066 [m4_define(_AM_MANGLE_OPTION([$1]), 1)])
1067
1068 # _AM_SET_OPTIONS(OPTIONS)
1069 # ----------------------------------
1070 # OPTIONS is a space-separated list of Automake options.
1071 AC_DEFUN([_AM_SET_OPTIONS],
1072 [AC_FOREACH([_AM_Option], [$1], [_AM_SET_OPTION(_AM_Option)])])
1073
1074 # _AM_IF_OPTION(OPTION, IF-SET, [IF-NOT-SET])
1075 # -------------------------------------------
1076 # Execute IF-SET if OPTION is set, IF-NOT-SET otherwise.
1077 AC_DEFUN([_AM_IF_OPTION],
1078 [m4_ifset(_AM_MANGLE_OPTION([$1]), [$2], [$3])])
1079
1080 # Check to make sure that the build environment is sane.    -*- Autoconf -*-
1081
1082 # Copyright (C) 1996, 1997, 2000, 2001, 2003, 2005
1083 # Free Software Foundation, Inc.
1084 #
1085 # This file is free software; the Free Software Foundation
1086 # gives unlimited permission to copy and/or distribute it,
1087 # with or without modifications, as long as this notice is preserved.
1088
1089 # serial 4
1090
1091 # AM_SANITY_CHECK
1092 # ---------------
1093 AC_DEFUN([AM_SANITY_CHECK],
1094 [AC_MSG_CHECKING([whether build environment is sane])
1095 # Just in case
1096 sleep 1
1097 echo timestamp > conftest.file
1098 # Do `set' in a subshell so we don't clobber the current shell's
1099 # arguments.  Must try -L first in case configure is actually a
1100 # symlink; some systems play weird games with the mod time of symlinks
1101 # (eg FreeBSD returns the mod time of the symlink's containing
1102 # directory).
1103 if (
1104    set X `ls -Lt $srcdir/configure conftest.file 2> /dev/null`
1105    if test "$[*]" = "X"; then
1106       # -L didn't work.
1107       set X `ls -t $srcdir/configure conftest.file`
1108    fi
1109    rm -f conftest.file
1110    if test "$[*]" != "X $srcdir/configure conftest.file" \
1111       && test "$[*]" != "X conftest.file $srcdir/configure"; then
1112
1113       # If neither matched, then we have a broken ls.  This can happen
1114       # if, for instance, CONFIG_SHELL is bash and it inherits a
1115       # broken ls alias from the environment.  This has actually
1116       # happened.  Such a system could not be considered "sane".
1117       AC_MSG_ERROR([ls -t appears to fail.  Make sure there is not a broken
1118 alias in your environment])
1119    fi
1120
1121    test "$[2]" = conftest.file
1122    )
1123 then
1124    # Ok.
1125    :
1126 else
1127    AC_MSG_ERROR([newly created file is older than distributed files!
1128 Check your system clock])
1129 fi
1130 AC_MSG_RESULT(yes)])
1131
1132 # Copyright (C) 2001, 2003, 2005  Free Software Foundation, Inc.
1133 #
1134 # This file is free software; the Free Software Foundation
1135 # gives unlimited permission to copy and/or distribute it,
1136 # with or without modifications, as long as this notice is preserved.
1137
1138 # AM_PROG_INSTALL_STRIP
1139 # ---------------------
1140 # One issue with vendor `install' (even GNU) is that you can't
1141 # specify the program used to strip binaries.  This is especially
1142 # annoying in cross-compiling environments, where the build's strip
1143 # is unlikely to handle the host's binaries.
1144 # Fortunately install-sh will honor a STRIPPROG variable, so we
1145 # always use install-sh in `make install-strip', and initialize
1146 # STRIPPROG with the value of the STRIP variable (set by the user).
1147 AC_DEFUN([AM_PROG_INSTALL_STRIP],
1148 [AC_REQUIRE([AM_PROG_INSTALL_SH])dnl
1149 # Installed binaries are usually stripped using `strip' when the user
1150 # run `make install-strip'.  However `strip' might not be the right
1151 # tool to use in cross-compilation environments, therefore Automake
1152 # will honor the `STRIP' environment variable to overrule this program.
1153 dnl Don't test for $cross_compiling = yes, because it might be `maybe'.
1154 if test "$cross_compiling" != no; then
1155   AC_CHECK_TOOL([STRIP], [strip], :)
1156 fi
1157 INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s"
1158 AC_SUBST([INSTALL_STRIP_PROGRAM])])
1159
1160 # Copyright (C) 2006  Free Software Foundation, Inc.
1161 #
1162 # This file is free software; the Free Software Foundation
1163 # gives unlimited permission to copy and/or distribute it,
1164 # with or without modifications, as long as this notice is preserved.
1165
1166 # _AM_SUBST_NOTMAKE(VARIABLE)
1167 # ---------------------------
1168 # Prevent Automake from outputting VARIABLE = @VARIABLE@ in Makefile.in.
1169 # This macro is traced by Automake.
1170 AC_DEFUN([_AM_SUBST_NOTMAKE])
1171
1172 # Check how to create a tarball.                            -*- Autoconf -*-
1173
1174 # Copyright (C) 2004, 2005  Free Software Foundation, Inc.
1175 #
1176 # This file is free software; the Free Software Foundation
1177 # gives unlimited permission to copy and/or distribute it,
1178 # with or without modifications, as long as this notice is preserved.
1179
1180 # serial 2
1181
1182 # _AM_PROG_TAR(FORMAT)
1183 # --------------------
1184 # Check how to create a tarball in format FORMAT.
1185 # FORMAT should be one of `v7', `ustar', or `pax'.
1186 #
1187 # Substitute a variable $(am__tar) that is a command
1188 # writing to stdout a FORMAT-tarball containing the directory
1189 # $tardir.
1190 #     tardir=directory && $(am__tar) > result.tar
1191 #
1192 # Substitute a variable $(am__untar) that extract such
1193 # a tarball read from stdin.
1194 #     $(am__untar) < result.tar
1195 AC_DEFUN([_AM_PROG_TAR],
1196 [# Always define AMTAR for backward compatibility.
1197 AM_MISSING_PROG([AMTAR], [tar])
1198 m4_if([$1], [v7],
1199      [am__tar='${AMTAR} chof - "$$tardir"'; am__untar='${AMTAR} xf -'],
1200      [m4_case([$1], [ustar],, [pax],,
1201               [m4_fatal([Unknown tar format])])
1202 AC_MSG_CHECKING([how to create a $1 tar archive])
1203 # Loop over all known methods to create a tar archive until one works.
1204 _am_tools='gnutar m4_if([$1], [ustar], [plaintar]) pax cpio none'
1205 _am_tools=${am_cv_prog_tar_$1-$_am_tools}
1206 # Do not fold the above two line into one, because Tru64 sh and
1207 # Solaris sh will not grok spaces in the rhs of `-'.
1208 for _am_tool in $_am_tools
1209 do
1210   case $_am_tool in
1211   gnutar)
1212     for _am_tar in tar gnutar gtar;
1213     do
1214       AM_RUN_LOG([$_am_tar --version]) && break
1215     done
1216     am__tar="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$$tardir"'
1217     am__tar_="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$tardir"'
1218     am__untar="$_am_tar -xf -"
1219     ;;
1220   plaintar)
1221     # Must skip GNU tar: if it does not support --format= it doesn't create
1222     # ustar tarball either.
1223     (tar --version) >/dev/null 2>&1 && continue
1224     am__tar='tar chf - "$$tardir"'
1225     am__tar_='tar chf - "$tardir"'
1226     am__untar='tar xf -'
1227     ;;
1228   pax)
1229     am__tar='pax -L -x $1 -w "$$tardir"'
1230     am__tar_='pax -L -x $1 -w "$tardir"'
1231     am__untar='pax -r'
1232     ;;
1233   cpio)
1234     am__tar='find "$$tardir" -print | cpio -o -H $1 -L'
1235     am__tar_='find "$tardir" -print | cpio -o -H $1 -L'
1236     am__untar='cpio -i -H $1 -d'
1237     ;;
1238   none)
1239     am__tar=false
1240     am__tar_=false
1241     am__untar=false
1242     ;;
1243   esac
1244
1245   # If the value was cached, stop now.  We just wanted to have am__tar
1246   # and am__untar set.
1247   test -n "${am_cv_prog_tar_$1}" && break
1248
1249   # tar/untar a dummy directory, and stop if the command works
1250   rm -rf conftest.dir
1251   mkdir conftest.dir
1252   echo GrepMe > conftest.dir/file
1253   AM_RUN_LOG([tardir=conftest.dir && eval $am__tar_ >conftest.tar])
1254   rm -rf conftest.dir
1255   if test -s conftest.tar; then
1256     AM_RUN_LOG([$am__untar <conftest.tar])
1257     grep GrepMe conftest.dir/file >/dev/null 2>&1 && break
1258   fi
1259 done
1260 rm -rf conftest.dir
1261
1262 AC_CACHE_VAL([am_cv_prog_tar_$1], [am_cv_prog_tar_$1=$_am_tool])
1263 AC_MSG_RESULT([$am_cv_prog_tar_$1])])
1264 AC_SUBST([am__tar])
1265 AC_SUBST([am__untar])
1266 ]) # _AM_PROG_TAR
1267