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