]> www.ginac.de Git - ginac.git/blob - aclocal.m4
9f352500325ac31602eeef1329b0ac4710f104f5
[ginac.git] / aclocal.m4
1 dnl aclocal.m4 generated automatically by aclocal 1.4
2
3 dnl Copyright (C) 1994, 1995-8, 1999 Free Software Foundation, Inc.
4 dnl This file is free software; the Free Software Foundation
5 dnl gives unlimited permission to copy and/or distribute it,
6 dnl with or without modifications, as long as this notice is preserved.
7
8 dnl This program is distributed in the hope that it will be useful,
9 dnl but WITHOUT ANY WARRANTY, to the extent permitted by law; without
10 dnl even the implied warranty of MERCHANTABILITY or FITNESS FOR A
11 dnl PARTICULAR PURPOSE.
12
13 dnl ===========================================================================
14 dnl Additional macros used to configure GiNaC.  We don't start our own 
15 dnl additions' names with AC_ but with GINAC_ in order to steer clear of
16 dnl future trouble.
17 dnl ===========================================================================
18
19 dnl Generally, it is a bad idea to put specialized header files for a library
20 dnl into a generic directory like /usr/local/include/.  Instead, one should put
21 dnl them into a subdirectory.  GiNaC does it, NTL does it.  Unfortunately, CLN
22 dnl doesn't do so but some people choose to do it by hand.  In these cases we
23 dnl need to #include <cln/cln.h>, otherwise #include <cln.h>.  This macro
24 dnl tries to be clever and find out the correct way by defining the variable
25 dnl HAVE_CLN_CLN_H in config.h:
26 AC_DEFUN(GINAC_CHECK_CLN_H,
27     [AC_PROVIDE([$0])
28     AC_CHECK_HEADERS(cln/cln.h, ,
29         AC_CHECK_HEADERS(cln.h, ,
30             AC_MSG_ERROR([cannot find header for Bruno Haible's CLN]);
31         )
32     )
33 ])
34
35 dnl This macro is needed because the generic AC_CHECK_LIB doesn't work because
36 dnl C++ is more strongly typed than C.  Therefore we need to work with the 
37 dnl more fundamental AC_TRY_LINK instead.
38 AC_DEFUN(GINAC_CHECK_LIBCLN,
39     [AC_PROVIDE([$0])
40     AC_MSG_CHECKING([for doublefactorial in -lcln])
41     saved_LIBS="${LIBS}"
42     AC_CACHE_VAL(ginac_cv_lib_cln_link,
43         [LIBS="-lcln"
44         case "${ac_cv_header_cln_cln_h}" in
45         "yes")
46             AC_TRY_LINK([#include <cln/cln.h>],
47                 [doublefactorial(2);],
48                 ginac_cv_lib_cln_link="-lcln",
49                 ginac_cv_lib_cln_link="fail")
50             ;;
51         *)
52             AC_TRY_LINK([#include <cln.h>],
53                 [doublefactorial(2);],
54                 ginac_cv_lib_cln_link="-lcln",
55                 ginac_cv_lib_cln_link="fail")
56             ;;
57         esac
58     ])
59     case "${ginac_cv_lib_cln_link}" in
60 dnl linking worked:
61     "-lcln")
62         LIBS="${ginac_cv_lib_cln_link} ${saved_LIBS}"
63         AC_MSG_RESULT("yes")
64     ;;
65 dnl linking failed:
66     "fail")
67         LIBS="${saved_LIBS}"
68         AC_MSG_RESULT([no])
69         AC_MSG_ERROR([You either need to set \$LDFLAGS or update CLN])
70     ;;
71 dnl should never ever get here:
72     *)
73         LIBS="${saved_LIBS}"
74         AC_MSG_WARN([you found a bug in the configure script!])
75     ;;
76     esac
77 ])
78
79 # Like AC_CONFIG_HEADER, but automatically create stamp file.
80
81 AC_DEFUN(AM_CONFIG_HEADER,
82 [AC_PREREQ([2.12])
83 AC_CONFIG_HEADER([$1])
84 dnl When config.status generates a header, we must update the stamp-h file.
85 dnl This file resides in the same directory as the config header
86 dnl that is generated.  We must strip everything past the first ":",
87 dnl and everything past the last "/".
88 AC_OUTPUT_COMMANDS(changequote(<<,>>)dnl
89 ifelse(patsubst(<<$1>>, <<[^ ]>>, <<>>), <<>>,
90 <<test -z "<<$>>CONFIG_HEADERS" || echo timestamp > patsubst(<<$1>>, <<^\([^:]*/\)?.*>>, <<\1>>)stamp-h<<>>dnl>>,
91 <<am_indx=1
92 for am_file in <<$1>>; do
93   case " <<$>>CONFIG_HEADERS " in
94   *" <<$>>am_file "*<<)>>
95     echo timestamp > `echo <<$>>am_file | sed -e 's%:.*%%' -e 's%[^/]*$%%'`stamp-h$am_indx
96     ;;
97   esac
98   am_indx=`expr "<<$>>am_indx" + 1`
99 done<<>>dnl>>)
100 changequote([,]))])
101
102 # Do all the work for Automake.  This macro actually does too much --
103 # some checks are only needed if your package does certain things.
104 # But this isn't really a big deal.
105
106 # serial 1
107
108 dnl Usage:
109 dnl AM_INIT_AUTOMAKE(package,version, [no-define])
110
111 AC_DEFUN(AM_INIT_AUTOMAKE,
112 [AC_REQUIRE([AC_PROG_INSTALL])
113 PACKAGE=[$1]
114 AC_SUBST(PACKAGE)
115 VERSION=[$2]
116 AC_SUBST(VERSION)
117 dnl test to see if srcdir already configured
118 if test "`cd $srcdir && pwd`" != "`pwd`" && test -f $srcdir/config.status; then
119   AC_MSG_ERROR([source directory already configured; run "make distclean" there first])
120 fi
121 ifelse([$3],,
122 AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE", [Name of package])
123 AC_DEFINE_UNQUOTED(VERSION, "$VERSION", [Version number of package]))
124 AC_REQUIRE([AM_SANITY_CHECK])
125 AC_REQUIRE([AC_ARG_PROGRAM])
126 dnl FIXME This is truly gross.
127 missing_dir=`cd $ac_aux_dir && pwd`
128 AM_MISSING_PROG(ACLOCAL, aclocal, $missing_dir)
129 AM_MISSING_PROG(AUTOCONF, autoconf, $missing_dir)
130 AM_MISSING_PROG(AUTOMAKE, automake, $missing_dir)
131 AM_MISSING_PROG(AUTOHEADER, autoheader, $missing_dir)
132 AM_MISSING_PROG(MAKEINFO, makeinfo, $missing_dir)
133 AC_REQUIRE([AC_PROG_MAKE_SET])])
134
135 #
136 # Check to make sure that the build environment is sane.
137 #
138
139 AC_DEFUN(AM_SANITY_CHECK,
140 [AC_MSG_CHECKING([whether build environment is sane])
141 # Just in case
142 sleep 1
143 echo timestamp > conftestfile
144 # Do `set' in a subshell so we don't clobber the current shell's
145 # arguments.  Must try -L first in case configure is actually a
146 # symlink; some systems play weird games with the mod time of symlinks
147 # (eg FreeBSD returns the mod time of the symlink's containing
148 # directory).
149 if (
150    set X `ls -Lt $srcdir/configure conftestfile 2> /dev/null`
151    if test "[$]*" = "X"; then
152       # -L didn't work.
153       set X `ls -t $srcdir/configure conftestfile`
154    fi
155    if test "[$]*" != "X $srcdir/configure conftestfile" \
156       && test "[$]*" != "X conftestfile $srcdir/configure"; then
157
158       # If neither matched, then we have a broken ls.  This can happen
159       # if, for instance, CONFIG_SHELL is bash and it inherits a
160       # broken ls alias from the environment.  This has actually
161       # happened.  Such a system could not be considered "sane".
162       AC_MSG_ERROR([ls -t appears to fail.  Make sure there is not a broken
163 alias in your environment])
164    fi
165
166    test "[$]2" = conftestfile
167    )
168 then
169    # Ok.
170    :
171 else
172    AC_MSG_ERROR([newly created file is older than distributed files!
173 Check your system clock])
174 fi
175 rm -f conftest*
176 AC_MSG_RESULT(yes)])
177
178 dnl AM_MISSING_PROG(NAME, PROGRAM, DIRECTORY)
179 dnl The program must properly implement --version.
180 AC_DEFUN(AM_MISSING_PROG,
181 [AC_MSG_CHECKING(for working $2)
182 # Run test in a subshell; some versions of sh will print an error if
183 # an executable is not found, even if stderr is redirected.
184 # Redirect stdin to placate older versions of autoconf.  Sigh.
185 if ($2 --version) < /dev/null > /dev/null 2>&1; then
186    $1=$2
187    AC_MSG_RESULT(found)
188 else
189    $1="$3/missing $2"
190    AC_MSG_RESULT(missing)
191 fi
192 AC_SUBST($1)])
193
194 # Add --enable-maintainer-mode option to configure.
195 # From Jim Meyering
196
197 # serial 1
198
199 AC_DEFUN(AM_MAINTAINER_MODE,
200 [AC_MSG_CHECKING([whether to enable maintainer-specific portions of Makefiles])
201   dnl maintainer-mode is disabled by default
202   AC_ARG_ENABLE(maintainer-mode,
203 [  --enable-maintainer-mode enable make rules and dependencies not useful
204                           (and sometimes confusing) to the casual installer],
205       USE_MAINTAINER_MODE=$enableval,
206       USE_MAINTAINER_MODE=no)
207   AC_MSG_RESULT($USE_MAINTAINER_MODE)
208   AM_CONDITIONAL(MAINTAINER_MODE, test $USE_MAINTAINER_MODE = yes)
209   MAINT=$MAINTAINER_MODE_TRUE
210   AC_SUBST(MAINT)dnl
211 ]
212 )
213
214 # Define a conditional.
215
216 AC_DEFUN(AM_CONDITIONAL,
217 [AC_SUBST($1_TRUE)
218 AC_SUBST($1_FALSE)
219 if $2; then
220   $1_TRUE=
221   $1_FALSE='#'
222 else
223   $1_TRUE='#'
224   $1_FALSE=
225 fi])
226
227
228 # serial 40 AC_PROG_LIBTOOL
229 AC_DEFUN(AC_PROG_LIBTOOL,
230 [AC_REQUIRE([AC_LIBTOOL_SETUP])dnl
231
232 # Save cache, so that ltconfig can load it
233 AC_CACHE_SAVE
234
235 # Actually configure libtool.  ac_aux_dir is where install-sh is found.
236 CC="$CC" CFLAGS="$CFLAGS" CPPFLAGS="$CPPFLAGS" \
237 LD="$LD" LDFLAGS="$LDFLAGS" LIBS="$LIBS" \
238 LN_S="$LN_S" NM="$NM" RANLIB="$RANLIB" \
239 DLLTOOL="$DLLTOOL" AS="$AS" OBJDUMP="$OBJDUMP" \
240 ${CONFIG_SHELL-/bin/sh} $ac_aux_dir/ltconfig --no-reexec \
241 $libtool_flags --no-verify $ac_aux_dir/ltmain.sh $host \
242 || AC_MSG_ERROR([libtool configure failed])
243
244 # Reload cache, that may have been modified by ltconfig
245 AC_CACHE_LOAD
246
247 # This can be used to rebuild libtool when needed
248 LIBTOOL_DEPS="$ac_aux_dir/ltconfig $ac_aux_dir/ltmain.sh"
249
250 # Always use our own libtool.
251 LIBTOOL='$(SHELL) $(top_builddir)/libtool'
252 AC_SUBST(LIBTOOL)dnl
253
254 # Redirect the config.log output again, so that the ltconfig log is not
255 # clobbered by the next message.
256 exec 5>>./config.log
257 ])
258
259 AC_DEFUN(AC_LIBTOOL_SETUP,
260 [AC_PREREQ(2.13)dnl
261 AC_REQUIRE([AC_ENABLE_SHARED])dnl
262 AC_REQUIRE([AC_ENABLE_STATIC])dnl
263 AC_REQUIRE([AC_ENABLE_FAST_INSTALL])dnl
264 AC_REQUIRE([AC_CANONICAL_HOST])dnl
265 AC_REQUIRE([AC_CANONICAL_BUILD])dnl
266 AC_REQUIRE([AC_PROG_RANLIB])dnl
267 AC_REQUIRE([AC_PROG_CC])dnl
268 AC_REQUIRE([AC_PROG_LD])dnl
269 AC_REQUIRE([AC_PROG_NM])dnl
270 AC_REQUIRE([AC_PROG_LN_S])dnl
271 dnl
272
273 # Check for any special flags to pass to ltconfig.
274 libtool_flags="--cache-file=$cache_file"
275 test "$enable_shared" = no && libtool_flags="$libtool_flags --disable-shared"
276 test "$enable_static" = no && libtool_flags="$libtool_flags --disable-static"
277 test "$enable_fast_install" = no && libtool_flags="$libtool_flags --disable-fast-install"
278 test "$ac_cv_prog_gcc" = yes && libtool_flags="$libtool_flags --with-gcc"
279 test "$ac_cv_prog_gnu_ld" = yes && libtool_flags="$libtool_flags --with-gnu-ld"
280 ifdef([AC_PROVIDE_AC_LIBTOOL_DLOPEN],
281 [libtool_flags="$libtool_flags --enable-dlopen"])
282 ifdef([AC_PROVIDE_AC_LIBTOOL_WIN32_DLL],
283 [libtool_flags="$libtool_flags --enable-win32-dll"])
284 AC_ARG_ENABLE(libtool-lock,
285   [  --disable-libtool-lock  avoid locking (might break parallel builds)])
286 test "x$enable_libtool_lock" = xno && libtool_flags="$libtool_flags --disable-lock"
287 test x"$silent" = xyes && libtool_flags="$libtool_flags --silent"
288
289 # Some flags need to be propagated to the compiler or linker for good
290 # libtool support.
291 case "$host" in
292 *-*-irix6*)
293   # Find out which ABI we are using.
294   echo '[#]line __oline__ "configure"' > conftest.$ac_ext
295   if AC_TRY_EVAL(ac_compile); then
296     case "`/usr/bin/file conftest.o`" in
297     *32-bit*)
298       LD="${LD-ld} -32"
299       ;;
300     *N32*)
301       LD="${LD-ld} -n32"
302       ;;
303     *64-bit*)
304       LD="${LD-ld} -64"
305       ;;
306     esac
307   fi
308   rm -rf conftest*
309   ;;
310
311 *-*-sco3.2v5*)
312   # On SCO OpenServer 5, we need -belf to get full-featured binaries.
313   SAVE_CFLAGS="$CFLAGS"
314   CFLAGS="$CFLAGS -belf"
315   AC_CACHE_CHECK([whether the C compiler needs -belf], lt_cv_cc_needs_belf,
316     [AC_TRY_LINK([],[],[lt_cv_cc_needs_belf=yes],[lt_cv_cc_needs_belf=no])])
317   if test x"$lt_cv_cc_needs_belf" != x"yes"; then
318     # this is probably gcc 2.8.0, egcs 1.0 or newer; no need for -belf
319     CFLAGS="$SAVE_CFLAGS"
320   fi
321   ;;
322
323 ifdef([AC_PROVIDE_AC_LIBTOOL_WIN32_DLL],
324 [*-*-cygwin* | *-*-mingw*)
325   AC_CHECK_TOOL(DLLTOOL, dlltool, false)
326   AC_CHECK_TOOL(AS, as, false)
327   AC_CHECK_TOOL(OBJDUMP, objdump, false)
328   ;;
329 ])
330 esac
331 ])
332
333 # AC_LIBTOOL_DLOPEN - enable checks for dlopen support
334 AC_DEFUN(AC_LIBTOOL_DLOPEN, [AC_BEFORE([$0],[AC_LIBTOOL_SETUP])])
335
336 # AC_LIBTOOL_WIN32_DLL - declare package support for building win32 dll's
337 AC_DEFUN(AC_LIBTOOL_WIN32_DLL, [AC_BEFORE([$0], [AC_LIBTOOL_SETUP])])
338
339 # AC_ENABLE_SHARED - implement the --enable-shared flag
340 # Usage: AC_ENABLE_SHARED[(DEFAULT)]
341 #   Where DEFAULT is either `yes' or `no'.  If omitted, it defaults to
342 #   `yes'.
343 AC_DEFUN(AC_ENABLE_SHARED, [dnl
344 define([AC_ENABLE_SHARED_DEFAULT], ifelse($1, no, no, yes))dnl
345 AC_ARG_ENABLE(shared,
346 changequote(<<, >>)dnl
347 <<  --enable-shared[=PKGS]  build shared libraries [default=>>AC_ENABLE_SHARED_DEFAULT],
348 changequote([, ])dnl
349 [p=${PACKAGE-default}
350 case "$enableval" in
351 yes) enable_shared=yes ;;
352 no) enable_shared=no ;;
353 *)
354   enable_shared=no
355   # Look at the argument we got.  We use all the common list separators.
356   IFS="${IFS=   }"; ac_save_ifs="$IFS"; IFS="${IFS}:,"
357   for pkg in $enableval; do
358     if test "X$pkg" = "X$p"; then
359       enable_shared=yes
360     fi
361   done
362   IFS="$ac_save_ifs"
363   ;;
364 esac],
365 enable_shared=AC_ENABLE_SHARED_DEFAULT)dnl
366 ])
367
368 # AC_DISABLE_SHARED - set the default shared flag to --disable-shared
369 AC_DEFUN(AC_DISABLE_SHARED, [AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl
370 AC_ENABLE_SHARED(no)])
371
372 # AC_ENABLE_STATIC - implement the --enable-static flag
373 # Usage: AC_ENABLE_STATIC[(DEFAULT)]
374 #   Where DEFAULT is either `yes' or `no'.  If omitted, it defaults to
375 #   `yes'.
376 AC_DEFUN(AC_ENABLE_STATIC, [dnl
377 define([AC_ENABLE_STATIC_DEFAULT], ifelse($1, no, no, yes))dnl
378 AC_ARG_ENABLE(static,
379 changequote(<<, >>)dnl
380 <<  --enable-static[=PKGS]  build static libraries [default=>>AC_ENABLE_STATIC_DEFAULT],
381 changequote([, ])dnl
382 [p=${PACKAGE-default}
383 case "$enableval" in
384 yes) enable_static=yes ;;
385 no) enable_static=no ;;
386 *)
387   enable_static=no
388   # Look at the argument we got.  We use all the common list separators.
389   IFS="${IFS=   }"; ac_save_ifs="$IFS"; IFS="${IFS}:,"
390   for pkg in $enableval; do
391     if test "X$pkg" = "X$p"; then
392       enable_static=yes
393     fi
394   done
395   IFS="$ac_save_ifs"
396   ;;
397 esac],
398 enable_static=AC_ENABLE_STATIC_DEFAULT)dnl
399 ])
400
401 # AC_DISABLE_STATIC - set the default static flag to --disable-static
402 AC_DEFUN(AC_DISABLE_STATIC, [AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl
403 AC_ENABLE_STATIC(no)])
404
405
406 # AC_ENABLE_FAST_INSTALL - implement the --enable-fast-install flag
407 # Usage: AC_ENABLE_FAST_INSTALL[(DEFAULT)]
408 #   Where DEFAULT is either `yes' or `no'.  If omitted, it defaults to
409 #   `yes'.
410 AC_DEFUN(AC_ENABLE_FAST_INSTALL, [dnl
411 define([AC_ENABLE_FAST_INSTALL_DEFAULT], ifelse($1, no, no, yes))dnl
412 AC_ARG_ENABLE(fast-install,
413 changequote(<<, >>)dnl
414 <<  --enable-fast-install[=PKGS]  optimize for fast installation [default=>>AC_ENABLE_FAST_INSTALL_DEFAULT],
415 changequote([, ])dnl
416 [p=${PACKAGE-default}
417 case "$enableval" in
418 yes) enable_fast_install=yes ;;
419 no) enable_fast_install=no ;;
420 *)
421   enable_fast_install=no
422   # Look at the argument we got.  We use all the common list separators.
423   IFS="${IFS=   }"; ac_save_ifs="$IFS"; IFS="${IFS}:,"
424   for pkg in $enableval; do
425     if test "X$pkg" = "X$p"; then
426       enable_fast_install=yes
427     fi
428   done
429   IFS="$ac_save_ifs"
430   ;;
431 esac],
432 enable_fast_install=AC_ENABLE_FAST_INSTALL_DEFAULT)dnl
433 ])
434
435 # AC_ENABLE_FAST_INSTALL - set the default to --disable-fast-install
436 AC_DEFUN(AC_DISABLE_FAST_INSTALL, [AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl
437 AC_ENABLE_FAST_INSTALL(no)])
438
439 # AC_PROG_LD - find the path to the GNU or non-GNU linker
440 AC_DEFUN(AC_PROG_LD,
441 [AC_ARG_WITH(gnu-ld,
442 [  --with-gnu-ld           assume the C compiler uses GNU ld [default=no]],
443 test "$withval" = no || with_gnu_ld=yes, with_gnu_ld=no)
444 AC_REQUIRE([AC_PROG_CC])dnl
445 AC_REQUIRE([AC_CANONICAL_HOST])dnl
446 AC_REQUIRE([AC_CANONICAL_BUILD])dnl
447 ac_prog=ld
448 if test "$ac_cv_prog_gcc" = yes; then
449   # Check if gcc -print-prog-name=ld gives a path.
450   AC_MSG_CHECKING([for ld used by GCC])
451   ac_prog=`($CC -print-prog-name=ld) 2>&5`
452   case "$ac_prog" in
453     # Accept absolute paths.
454 changequote(,)dnl
455     [\\/]* | [A-Za-z]:[\\/]*)
456       re_direlt='/[^/][^/]*/\.\./'
457 changequote([,])dnl
458       # Canonicalize the path of ld
459       ac_prog=`echo $ac_prog| sed 's%\\\\%/%g'`
460       while echo $ac_prog | grep "$re_direlt" > /dev/null 2>&1; do
461         ac_prog=`echo $ac_prog| sed "s%$re_direlt%/%"`
462       done
463       test -z "$LD" && LD="$ac_prog"
464       ;;
465   "")
466     # If it fails, then pretend we aren't using GCC.
467     ac_prog=ld
468     ;;
469   *)
470     # If it is relative, then search for the first ld in PATH.
471     with_gnu_ld=unknown
472     ;;
473   esac
474 elif test "$with_gnu_ld" = yes; then
475   AC_MSG_CHECKING([for GNU ld])
476 else
477   AC_MSG_CHECKING([for non-GNU ld])
478 fi
479 AC_CACHE_VAL(ac_cv_path_LD,
480 [if test -z "$LD"; then
481   IFS="${IFS=   }"; ac_save_ifs="$IFS"; IFS="${IFS}${PATH_SEPARATOR-:}"
482   for ac_dir in $PATH; do
483     test -z "$ac_dir" && ac_dir=.
484     if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then
485       ac_cv_path_LD="$ac_dir/$ac_prog"
486       # Check to see if the program is GNU ld.  I'd rather use --version,
487       # but apparently some GNU ld's only accept -v.
488       # Break only if it was the GNU/non-GNU ld that we prefer.
489       if "$ac_cv_path_LD" -v 2>&1 < /dev/null | egrep '(GNU|with BFD)' > /dev/null; then
490         test "$with_gnu_ld" != no && break
491       else
492         test "$with_gnu_ld" != yes && break
493       fi
494     fi
495   done
496   IFS="$ac_save_ifs"
497 else
498   ac_cv_path_LD="$LD" # Let the user override the test with a path.
499 fi])
500 LD="$ac_cv_path_LD"
501 if test -n "$LD"; then
502   AC_MSG_RESULT($LD)
503 else
504   AC_MSG_RESULT(no)
505 fi
506 test -z "$LD" && AC_MSG_ERROR([no acceptable ld found in \$PATH])
507 AC_SUBST(LD)
508 AC_PROG_LD_GNU
509 ])
510
511 AC_DEFUN(AC_PROG_LD_GNU,
512 [AC_CACHE_CHECK([if the linker ($LD) is GNU ld], ac_cv_prog_gnu_ld,
513 [# I'd rather use --version here, but apparently some GNU ld's only accept -v.
514 if $LD -v 2>&1 </dev/null | egrep '(GNU|with BFD)' 1>&5; then
515   ac_cv_prog_gnu_ld=yes
516 else
517   ac_cv_prog_gnu_ld=no
518 fi])
519 ])
520
521 # AC_PROG_NM - find the path to a BSD-compatible name lister
522 AC_DEFUN(AC_PROG_NM,
523 [AC_MSG_CHECKING([for BSD-compatible nm])
524 AC_CACHE_VAL(ac_cv_path_NM,
525 [if test -n "$NM"; then
526   # Let the user override the test.
527   ac_cv_path_NM="$NM"
528 else
529   IFS="${IFS=   }"; ac_save_ifs="$IFS"; IFS="${IFS}${PATH_SEPARATOR-:}"
530   for ac_dir in $PATH /usr/ccs/bin /usr/ucb /bin; do
531     test -z "$ac_dir" && ac_dir=.
532     if test -f $ac_dir/nm || test -f $ac_dir/nm$ac_exeext ; then
533       # Check to see if the nm accepts a BSD-compat flag.
534       # Adding the `sed 1q' prevents false positives on HP-UX, which says:
535       #   nm: unknown option "B" ignored
536       if ($ac_dir/nm -B /dev/null 2>&1 | sed '1q'; exit 0) | egrep /dev/null >/dev/null; then
537         ac_cv_path_NM="$ac_dir/nm -B"
538         break
539       elif ($ac_dir/nm -p /dev/null 2>&1 | sed '1q'; exit 0) | egrep /dev/null >/dev/null; then
540         ac_cv_path_NM="$ac_dir/nm -p"
541         break
542       else
543         ac_cv_path_NM=${ac_cv_path_NM="$ac_dir/nm"} # keep the first match, but
544         continue # so that we can try to find one that supports BSD flags
545       fi
546     fi
547   done
548   IFS="$ac_save_ifs"
549   test -z "$ac_cv_path_NM" && ac_cv_path_NM=nm
550 fi])
551 NM="$ac_cv_path_NM"
552 AC_MSG_RESULT([$NM])
553 AC_SUBST(NM)
554 ])
555
556 # AC_CHECK_LIBM - check for math library
557 AC_DEFUN(AC_CHECK_LIBM,
558 [AC_REQUIRE([AC_CANONICAL_HOST])dnl
559 LIBM=
560 case "$host" in
561 *-*-beos* | *-*-cygwin*)
562   # These system don't have libm
563   ;;
564 *-ncr-sysv4.3*)
565   AC_CHECK_LIB(mw, _mwvalidcheckl, LIBM="-lmw")
566   AC_CHECK_LIB(m, main, LIBM="$LIBM -lm")
567   ;;
568 *)
569   AC_CHECK_LIB(m, main, LIBM="-lm")
570   ;;
571 esac
572 ])
573
574 # AC_LIBLTDL_CONVENIENCE[(dir)] - sets LIBLTDL to the link flags for
575 # the libltdl convenience library, adds --enable-ltdl-convenience to
576 # the configure arguments.  Note that LIBLTDL is not AC_SUBSTed, nor
577 # is AC_CONFIG_SUBDIRS called.  If DIR is not provided, it is assumed
578 # to be `${top_builddir}/libltdl'.  Make sure you start DIR with
579 # '${top_builddir}/' (note the single quotes!) if your package is not
580 # flat, and, if you're not using automake, define top_builddir as
581 # appropriate in the Makefiles.
582 AC_DEFUN(AC_LIBLTDL_CONVENIENCE, [AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl
583   case "$enable_ltdl_convenience" in
584   no) AC_MSG_ERROR([this package needs a convenience libltdl]) ;;
585   "") enable_ltdl_convenience=yes
586       ac_configure_args="$ac_configure_args --enable-ltdl-convenience" ;;
587   esac
588   LIBLTDL=ifelse($#,1,$1,['${top_builddir}/libltdl'])/libltdlc.la
589   INCLTDL=ifelse($#,1,-I$1,['-I${top_builddir}/libltdl'])
590 ])
591
592 # AC_LIBLTDL_INSTALLABLE[(dir)] - sets LIBLTDL to the link flags for
593 # the libltdl installable library, and adds --enable-ltdl-install to
594 # the configure arguments.  Note that LIBLTDL is not AC_SUBSTed, nor
595 # is AC_CONFIG_SUBDIRS called.  If DIR is not provided, it is assumed
596 # to be `${top_builddir}/libltdl'.  Make sure you start DIR with
597 # '${top_builddir}/' (note the single quotes!) if your package is not
598 # flat, and, if you're not using automake, define top_builddir as
599 # appropriate in the Makefiles.
600 # In the future, this macro may have to be called after AC_PROG_LIBTOOL.
601 AC_DEFUN(AC_LIBLTDL_INSTALLABLE, [AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl
602   AC_CHECK_LIB(ltdl, main,
603   [test x"$enable_ltdl_install" != xyes && enable_ltdl_install=no],
604   [if test x"$enable_ltdl_install" = xno; then
605      AC_MSG_WARN([libltdl not installed, but installation disabled])
606    else
607      enable_ltdl_install=yes
608    fi
609   ])
610   if test x"$enable_ltdl_install" = x"yes"; then
611     ac_configure_args="$ac_configure_args --enable-ltdl-install"
612     LIBLTDL=ifelse($#,1,$1,['${top_builddir}/libltdl'])/libltdl.la
613     INCLTDL=ifelse($#,1,-I$1,['-I${top_builddir}/libltdl'])
614   else
615     ac_configure_args="$ac_configure_args --enable-ltdl-install=no"
616     LIBLTDL="-lltdl"
617     INCLTDL=
618   fi
619 ])
620
621 dnl old names
622 AC_DEFUN(AM_PROG_LIBTOOL, [indir([AC_PROG_LIBTOOL])])dnl
623 AC_DEFUN(AM_ENABLE_SHARED, [indir([AC_ENABLE_SHARED], $@)])dnl
624 AC_DEFUN(AM_ENABLE_STATIC, [indir([AC_ENABLE_STATIC], $@)])dnl
625 AC_DEFUN(AM_DISABLE_SHARED, [indir([AC_DISABLE_SHARED], $@)])dnl
626 AC_DEFUN(AM_DISABLE_STATIC, [indir([AC_DISABLE_STATIC], $@)])dnl
627 AC_DEFUN(AM_PROG_LD, [indir([AC_PROG_LD])])dnl
628 AC_DEFUN(AM_PROG_NM, [indir([AC_PROG_NM])])dnl
629
630 dnl This is just to silence aclocal about the macro not being used
631 ifelse([AC_DISABLE_FAST_INSTALL])dnl
632
633
634 dnl AM_PROG_LEX
635 dnl Look for flex, lex or missing, then run AC_PROG_LEX and AC_DECL_YYTEXT
636 AC_DEFUN(AM_PROG_LEX,
637 [missing_dir=ifelse([$1],,`cd $ac_aux_dir && pwd`,$1)
638 AC_CHECK_PROGS(LEX, flex lex, "$missing_dir/missing flex")
639 AC_PROG_LEX
640 AC_DECL_YYTEXT])
641