Annotation of parser3/src/sql/mysql/acinclude.m4, revision 1.1.2.1

1.1.2.1 ! paf         1: dnl acinclude.m4(
        !             2: 
        !             3: AC_ARG_WITH(mysql_inc, for MySQL support,[
        !             4:   --with-mysql_inc[=DIR]      DIR is the MySQL includes directory], 
        !             5:        withval="/usr/include/mysql"
        !             6: )
        !             7: MYSQL_INC=$withval
        !             8: AC_SUBST(MYSQL_INC)
        !             9: 
        !            10: AC_ARG_WITH(mysql_lib, for MySQL support,[
        !            11:   --with-mysql_lib[=DIR]      DIR is the MySQL lib directory], 
        !            12:        withval="/usr/lib/mysql"
        !            13: )
        !            14: MYSQL_LIB=$withval
        !            15: AC_SUBST(MYSQL_LIB)
        !            16: 
        !            17: dnl acinclude.m4)
        !            18: 
        !            19: 
        !            20: 
        !            21: 
        !            22: 
        !            23: 
        !            24: 
        !            25: ## libtool.m4 - Configure libtool for the target system. -*-Shell-script-*-
        !            26: ## Copyright (C) 1996-1999 Free Software Foundation, Inc.
        !            27: ## Originally by Gordon Matzigkeit <gord@gnu.ai.mit.edu>, 1996
        !            28: ##
        !            29: ## This program is free software; you can redistribute it and/or modify
        !            30: ## it under the terms of the GNU General Public License as published by
        !            31: ## the Free Software Foundation; either version 2 of the License, or
        !            32: ## (at your option) any later version.
        !            33: ##
        !            34: ## This program is distributed in the hope that it will be useful, but
        !            35: ## WITHOUT ANY WARRANTY; without even the implied warranty of
        !            36: ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
        !            37: ## General Public License for more details.
        !            38: ##
        !            39: ## You should have received a copy of the GNU General Public License
        !            40: ## along with this program; if not, write to the Free Software
        !            41: ## Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
        !            42: ##
        !            43: ## As a special exception to the GNU General Public License, if you
        !            44: ## distribute this file as part of a program that contains a
        !            45: ## configuration script generated by Autoconf, you may include it under
        !            46: ## the same distribution terms that you use for the rest of that program.
        !            47: 
        !            48: # serial 40 AC_PROG_LIBTOOL
        !            49: AC_DEFUN(AC_PROG_LIBTOOL,
        !            50: [AC_REQUIRE([AC_LIBTOOL_SETUP])dnl
        !            51: 
        !            52: # Save cache, so that ltconfig can load it
        !            53: AC_CACHE_SAVE
        !            54: 
        !            55: # Actually configure libtool.  ac_aux_dir is where install-sh is found.
        !            56: CC="$CC" CFLAGS="$CFLAGS" CPPFLAGS="$CPPFLAGS" \
        !            57: LD="$LD" LDFLAGS="$LDFLAGS" LIBS="$LIBS" \
        !            58: LN_S="$LN_S" NM="$NM" RANLIB="$RANLIB" \
        !            59: DLLTOOL="$DLLTOOL" AS="$AS" OBJDUMP="$OBJDUMP" \
        !            60: ${CONFIG_SHELL-/bin/sh} $ac_aux_dir/ltconfig --no-reexec \
        !            61: $libtool_flags --no-verify $ac_aux_dir/ltmain.sh $lt_target \
        !            62: || AC_MSG_ERROR([libtool configure failed])
        !            63: 
        !            64: # Reload cache, that may have been modified by ltconfig
        !            65: AC_CACHE_LOAD
        !            66: 
        !            67: # This can be used to rebuild libtool when needed
        !            68: LIBTOOL_DEPS="$ac_aux_dir/ltconfig $ac_aux_dir/ltmain.sh"
        !            69: 
        !            70: # Always use our own libtool.
        !            71: LIBTOOL='$(SHELL) $(top_builddir)/libtool'
        !            72: AC_SUBST(LIBTOOL)dnl
        !            73: 
        !            74: # Redirect the config.log output again, so that the ltconfig log is not
        !            75: # clobbered by the next message.
        !            76: exec 5>>./config.log
        !            77: ])
        !            78: 
        !            79: AC_DEFUN(AC_LIBTOOL_SETUP,
        !            80: [AC_PREREQ(2.13)dnl
        !            81: AC_REQUIRE([AC_ENABLE_SHARED])dnl
        !            82: AC_REQUIRE([AC_ENABLE_STATIC])dnl
        !            83: AC_REQUIRE([AC_ENABLE_FAST_INSTALL])dnl
        !            84: AC_REQUIRE([AC_CANONICAL_HOST])dnl
        !            85: AC_REQUIRE([AC_CANONICAL_BUILD])dnl
        !            86: AC_REQUIRE([AC_PROG_RANLIB])dnl
        !            87: AC_REQUIRE([AC_PROG_CC])dnl
        !            88: AC_REQUIRE([AC_PROG_LD])dnl
        !            89: AC_REQUIRE([AC_PROG_NM])dnl
        !            90: AC_REQUIRE([AC_PROG_LN_S])dnl
        !            91: dnl
        !            92: 
        !            93: case "$target" in
        !            94: NONE) lt_target="$host" ;;
        !            95: *) lt_target="$target" ;;
        !            96: esac
        !            97: 
        !            98: # Check for any special flags to pass to ltconfig.
        !            99: #
        !           100: # the following will cause an existing older ltconfig to fail, so
        !           101: # we ignore this at the expense of the cache file... Checking this 
        !           102: # will just take longer ... bummer!
        !           103: #libtool_flags="--cache-file=$cache_file"
        !           104: #
        !           105: test "$enable_shared" = no && libtool_flags="$libtool_flags --disable-shared"
        !           106: test "$enable_static" = no && libtool_flags="$libtool_flags --disable-static"
        !           107: test "$enable_fast_install" = no && libtool_flags="$libtool_flags --disable-fast-install"
        !           108: test "$ac_cv_prog_gcc" = yes && libtool_flags="$libtool_flags --with-gcc"
        !           109: test "$ac_cv_prog_gnu_ld" = yes && libtool_flags="$libtool_flags --with-gnu-ld"
        !           110: ifdef([AC_PROVIDE_AC_LIBTOOL_DLOPEN],
        !           111: [libtool_flags="$libtool_flags --enable-dlopen"])
        !           112: ifdef([AC_PROVIDE_AC_LIBTOOL_WIN32_DLL],
        !           113: [libtool_flags="$libtool_flags --enable-win32-dll"])
        !           114: AC_ARG_ENABLE(libtool-lock,
        !           115:   [  --disable-libtool-lock  avoid locking (might break parallel builds)])
        !           116: test "x$enable_libtool_lock" = xno && libtool_flags="$libtool_flags --disable-lock"
        !           117: test x"$silent" = xyes && libtool_flags="$libtool_flags --silent"
        !           118: 
        !           119: # Some flags need to be propagated to the compiler or linker for good
        !           120: # libtool support.
        !           121: case "$lt_target" in
        !           122: *-*-irix6*)
        !           123:   # Find out which ABI we are using.
        !           124:   echo '[#]line __oline__ "configure"' > conftest.$ac_ext
        !           125:   if AC_TRY_EVAL(ac_compile); then
        !           126:     case "`/usr/bin/file conftest.o`" in
        !           127:     *32-bit*)
        !           128:       LD="${LD-ld} -32"
        !           129:       ;;
        !           130:     *N32*)
        !           131:       LD="${LD-ld} -n32"
        !           132:       ;;
        !           133:     *64-bit*)
        !           134:       LD="${LD-ld} -64"
        !           135:       ;;
        !           136:     esac
        !           137:   fi
        !           138:   rm -rf conftest*
        !           139:   ;;
        !           140: 
        !           141: *-*-sco3.2v5*)
        !           142:   # On SCO OpenServer 5, we need -belf to get full-featured binaries.
        !           143:   SAVE_CFLAGS="$CFLAGS"
        !           144:   CFLAGS="$CFLAGS -belf"
        !           145:   AC_CACHE_CHECK([whether the C compiler needs -belf], lt_cv_cc_needs_belf,
        !           146:     [AC_TRY_LINK([],[],[lt_cv_cc_needs_belf=yes],[lt_cv_cc_needs_belf=no])])
        !           147:   if test x"$lt_cv_cc_needs_belf" != x"yes"; then
        !           148:     # this is probably gcc 2.8.0, egcs 1.0 or newer; no need for -belf
        !           149:     CFLAGS="$SAVE_CFLAGS"
        !           150:   fi
        !           151:   ;;
        !           152: 
        !           153: ifdef([AC_PROVIDE_AC_LIBTOOL_WIN32_DLL],
        !           154: [*-*-cygwin* | *-*-mingw*)
        !           155:   AC_CHECK_TOOL(DLLTOOL, dlltool, false)
        !           156:   AC_CHECK_TOOL(AS, as, false)
        !           157:   AC_CHECK_TOOL(OBJDUMP, objdump, false)
        !           158:   ;;
        !           159: ])
        !           160: esac
        !           161: ])
        !           162: 
        !           163: # AC_LIBTOOL_DLOPEN - enable checks for dlopen support
        !           164: AC_DEFUN(AC_LIBTOOL_DLOPEN, [AC_BEFORE([$0],[AC_LIBTOOL_SETUP])])
        !           165: 
        !           166: # AC_LIBTOOL_WIN32_DLL - declare package support for building win32 dll's
        !           167: AC_DEFUN(AC_LIBTOOL_WIN32_DLL, [AC_BEFORE([$0], [AC_LIBTOOL_SETUP])])
        !           168: 
        !           169: # AC_ENABLE_SHARED - implement the --enable-shared flag
        !           170: # Usage: AC_ENABLE_SHARED[(DEFAULT)]
        !           171: #   Where DEFAULT is either `yes' or `no'.  If omitted, it defaults to
        !           172: #   `yes'.
        !           173: AC_DEFUN(AC_ENABLE_SHARED, [dnl
        !           174: define([AC_ENABLE_SHARED_DEFAULT], ifelse($1, no, no, yes))dnl
        !           175: AC_ARG_ENABLE(shared,
        !           176: changequote(<<, >>)dnl
        !           177: <<  --enable-shared[=PKGS]  build shared libraries [default=>>AC_ENABLE_SHARED_DEFAULT],
        !           178: changequote([, ])dnl
        !           179: [p=${PACKAGE-default}
        !           180: case "$enableval" in
        !           181: yes) enable_shared=yes ;;
        !           182: no) enable_shared=no ;;
        !           183: *)
        !           184:   enable_shared=no
        !           185:   # Look at the argument we got.  We use all the common list separators.
        !           186:   IFS="${IFS=  }"; ac_save_ifs="$IFS"; IFS="${IFS}:,"
        !           187:   for pkg in $enableval; do
        !           188:     if test "X$pkg" = "X$p"; then
        !           189:       enable_shared=yes
        !           190:     fi
        !           191:   done
        !           192:   IFS="$ac_save_ifs"
        !           193:   ;;
        !           194: esac],
        !           195: enable_shared=AC_ENABLE_SHARED_DEFAULT)dnl
        !           196: ])
        !           197: 
        !           198: # AC_DISABLE_SHARED - set the default shared flag to --disable-shared
        !           199: AC_DEFUN(AC_DISABLE_SHARED, [AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl
        !           200: AC_ENABLE_SHARED(no)])
        !           201: 
        !           202: # AC_ENABLE_STATIC - implement the --enable-static flag
        !           203: # Usage: AC_ENABLE_STATIC[(DEFAULT)]
        !           204: #   Where DEFAULT is either `yes' or `no'.  If omitted, it defaults to
        !           205: #   `yes'.
        !           206: AC_DEFUN(AC_ENABLE_STATIC, [dnl
        !           207: define([AC_ENABLE_STATIC_DEFAULT], ifelse($1, no, no, yes))dnl
        !           208: AC_ARG_ENABLE(static,
        !           209: changequote(<<, >>)dnl
        !           210: <<  --enable-static[=PKGS]  build static libraries [default=>>AC_ENABLE_STATIC_DEFAULT],
        !           211: changequote([, ])dnl
        !           212: [p=${PACKAGE-default}
        !           213: case "$enableval" in
        !           214: yes) enable_static=yes ;;
        !           215: no) enable_static=no ;;
        !           216: *)
        !           217:   enable_static=no
        !           218:   # Look at the argument we got.  We use all the common list separators.
        !           219:   IFS="${IFS=  }"; ac_save_ifs="$IFS"; IFS="${IFS}:,"
        !           220:   for pkg in $enableval; do
        !           221:     if test "X$pkg" = "X$p"; then
        !           222:       enable_static=yes
        !           223:     fi
        !           224:   done
        !           225:   IFS="$ac_save_ifs"
        !           226:   ;;
        !           227: esac],
        !           228: enable_static=AC_ENABLE_STATIC_DEFAULT)dnl
        !           229: ])
        !           230: 
        !           231: # AC_DISABLE_STATIC - set the default static flag to --disable-static
        !           232: AC_DEFUN(AC_DISABLE_STATIC, [AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl
        !           233: AC_ENABLE_STATIC(no)])
        !           234: 
        !           235: 
        !           236: # AC_ENABLE_FAST_INSTALL - implement the --enable-fast-install flag
        !           237: # Usage: AC_ENABLE_FAST_INSTALL[(DEFAULT)]
        !           238: #   Where DEFAULT is either `yes' or `no'.  If omitted, it defaults to
        !           239: #   `yes'.
        !           240: AC_DEFUN(AC_ENABLE_FAST_INSTALL, [dnl
        !           241: define([AC_ENABLE_FAST_INSTALL_DEFAULT], ifelse($1, no, no, yes))dnl
        !           242: AC_ARG_ENABLE(fast-install,
        !           243: changequote(<<, >>)dnl
        !           244: <<  --enable-fast-install[=PKGS]  optimize for fast installation [default=>>AC_ENABLE_FAST_INSTALL_DEFAULT],
        !           245: changequote([, ])dnl
        !           246: [p=${PACKAGE-default}
        !           247: case "$enableval" in
        !           248: yes) enable_fast_install=yes ;;
        !           249: no) enable_fast_install=no ;;
        !           250: *)
        !           251:   enable_fast_install=no
        !           252:   # Look at the argument we got.  We use all the common list separators.
        !           253:   IFS="${IFS=  }"; ac_save_ifs="$IFS"; IFS="${IFS}:,"
        !           254:   for pkg in $enableval; do
        !           255:     if test "X$pkg" = "X$p"; then
        !           256:       enable_fast_install=yes
        !           257:     fi
        !           258:   done
        !           259:   IFS="$ac_save_ifs"
        !           260:   ;;
        !           261: esac],
        !           262: enable_fast_install=AC_ENABLE_FAST_INSTALL_DEFAULT)dnl
        !           263: ])
        !           264: 
        !           265: # AC_ENABLE_FAST_INSTALL - set the default to --disable-fast-install
        !           266: AC_DEFUN(AC_DISABLE_FAST_INSTALL, [AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl
        !           267: AC_ENABLE_FAST_INSTALL(no)])
        !           268: 
        !           269: # AC_PROG_LD - find the path to the GNU or non-GNU linker
        !           270: AC_DEFUN(AC_PROG_LD,
        !           271: [AC_ARG_WITH(gnu-ld,
        !           272: [  --with-gnu-ld           assume the C compiler uses GNU ld [default=no]],
        !           273: test "$withval" = no || with_gnu_ld=yes, with_gnu_ld=no)
        !           274: AC_REQUIRE([AC_PROG_CC])dnl
        !           275: AC_REQUIRE([AC_CANONICAL_HOST])dnl
        !           276: AC_REQUIRE([AC_CANONICAL_BUILD])dnl
        !           277: ac_prog=ld
        !           278: if test "$ac_cv_prog_gcc" = yes; then
        !           279:   # Check if gcc -print-prog-name=ld gives a path.
        !           280:   AC_MSG_CHECKING([for ld used by GCC])
        !           281:   ac_prog=`($CC -print-prog-name=ld) 2>&5`
        !           282:   case "$ac_prog" in
        !           283:     # Accept absolute paths.
        !           284: changequote(,)dnl
        !           285:     [\\/]* | [A-Za-z]:[\\/]*)
        !           286:       re_direlt='/[^/][^/]*/\.\./'
        !           287: changequote([,])dnl
        !           288:       # Canonicalize the path of ld
        !           289:       ac_prog=`echo $ac_prog| sed 's%\\\\%/%g'`
        !           290:       while echo $ac_prog | grep "$re_direlt" > /dev/null 2>&1; do
        !           291:        ac_prog=`echo $ac_prog| sed "s%$re_direlt%/%"`
        !           292:       done
        !           293:       test -z "$LD" && LD="$ac_prog"
        !           294:       ;;
        !           295:   "")
        !           296:     # If it fails, then pretend we aren't using GCC.
        !           297:     ac_prog=ld
        !           298:     ;;
        !           299:   *)
        !           300:     # If it is relative, then search for the first ld in PATH.
        !           301:     with_gnu_ld=unknown
        !           302:     ;;
        !           303:   esac
        !           304: elif test "$with_gnu_ld" = yes; then
        !           305:   AC_MSG_CHECKING([for GNU ld])
        !           306: else
        !           307:   AC_MSG_CHECKING([for non-GNU ld])
        !           308: fi
        !           309: AC_CACHE_VAL(ac_cv_path_LD,
        !           310: [if test -z "$LD"; then
        !           311:   IFS="${IFS=  }"; ac_save_ifs="$IFS"; IFS="${IFS}${PATH_SEPARATOR-:}"
        !           312:   for ac_dir in $PATH; do
        !           313:     test -z "$ac_dir" && ac_dir=.
        !           314:     if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then
        !           315:       ac_cv_path_LD="$ac_dir/$ac_prog"
        !           316:       # Check to see if the program is GNU ld.  I'd rather use --version,
        !           317:       # but apparently some GNU ld's only accept -v.
        !           318:       # Break only if it was the GNU/non-GNU ld that we prefer.
        !           319:       if "$ac_cv_path_LD" -v 2>&1 < /dev/null | egrep '(GNU|with BFD)' > /dev/null; then
        !           320:        test "$with_gnu_ld" != no && break
        !           321:       else
        !           322:        test "$with_gnu_ld" != yes && break
        !           323:       fi
        !           324:     fi
        !           325:   done
        !           326:   IFS="$ac_save_ifs"
        !           327: else
        !           328:   ac_cv_path_LD="$LD" # Let the user override the test with a path.
        !           329: fi])
        !           330: LD="$ac_cv_path_LD"
        !           331: if test -n "$LD"; then
        !           332:   AC_MSG_RESULT($LD)
        !           333: else
        !           334:   AC_MSG_RESULT(no)
        !           335: fi
        !           336: test -z "$LD" && AC_MSG_ERROR([no acceptable ld found in \$PATH])
        !           337: AC_PROG_LD_GNU
        !           338: ])
        !           339: 
        !           340: AC_DEFUN(AC_PROG_LD_GNU,
        !           341: [AC_CACHE_CHECK([if the linker ($LD) is GNU ld], ac_cv_prog_gnu_ld,
        !           342: [# I'd rather use --version here, but apparently some GNU ld's only accept -v.
        !           343: if $LD -v 2>&1 </dev/null | egrep '(GNU|with BFD)' 1>&5; then
        !           344:   ac_cv_prog_gnu_ld=yes
        !           345: else
        !           346:   ac_cv_prog_gnu_ld=no
        !           347: fi])
        !           348: ])
        !           349: 
        !           350: # AC_PROG_NM - find the path to a BSD-compatible name lister
        !           351: AC_DEFUN(AC_PROG_NM,
        !           352: [AC_MSG_CHECKING([for BSD-compatible nm])
        !           353: AC_CACHE_VAL(ac_cv_path_NM,
        !           354: [if test -n "$NM"; then
        !           355:   # Let the user override the test.
        !           356:   ac_cv_path_NM="$NM"
        !           357: else
        !           358:   IFS="${IFS=  }"; ac_save_ifs="$IFS"; IFS="${IFS}${PATH_SEPARATOR-:}"
        !           359:   for ac_dir in $PATH /usr/ccs/bin /usr/ucb /bin; do
        !           360:     test -z "$ac_dir" && ac_dir=.
        !           361:     if test -f $ac_dir/nm || test -f $ac_dir/nm$ac_exeext ; then
        !           362:       # Check to see if the nm accepts a BSD-compat flag.
        !           363:       # Adding the `sed 1q' prevents false positives on HP-UX, which says:
        !           364:       #   nm: unknown option "B" ignored
        !           365:       if ($ac_dir/nm -B /dev/null 2>&1 | sed '1q'; exit 0) | egrep /dev/null >/dev/null; then
        !           366:        ac_cv_path_NM="$ac_dir/nm -B"
        !           367:        break
        !           368:       elif ($ac_dir/nm -p /dev/null 2>&1 | sed '1q'; exit 0) | egrep /dev/null >/dev/null; then
        !           369:        ac_cv_path_NM="$ac_dir/nm -p"
        !           370:        break
        !           371:       else
        !           372:        ac_cv_path_NM=${ac_cv_path_NM="$ac_dir/nm"} # keep the first match, but
        !           373:        continue # so that we can try to find one that supports BSD flags
        !           374:       fi
        !           375:     fi
        !           376:   done
        !           377:   IFS="$ac_save_ifs"
        !           378:   test -z "$ac_cv_path_NM" && ac_cv_path_NM=nm
        !           379: fi])
        !           380: NM="$ac_cv_path_NM"
        !           381: AC_MSG_RESULT([$NM])
        !           382: ])
        !           383: 
        !           384: # AC_CHECK_LIBM - check for math library
        !           385: AC_DEFUN(AC_CHECK_LIBM,
        !           386: [AC_REQUIRE([AC_CANONICAL_HOST])dnl
        !           387: LIBM=
        !           388: case "$lt_target" in
        !           389: *-*-beos* | *-*-cygwin*)
        !           390:   # These system don't have libm
        !           391:   ;;
        !           392: *-ncr-sysv4.3*)
        !           393:   AC_CHECK_LIB(mw, _mwvalidcheckl, LIBM="-lmw")
        !           394:   AC_CHECK_LIB(m, main, LIBM="$LIBM -lm")
        !           395:   ;;
        !           396: *)
        !           397:   AC_CHECK_LIB(m, main, LIBM="-lm")
        !           398:   ;;
        !           399: esac
        !           400: ])
        !           401: 
        !           402: # AC_LIBLTDL_CONVENIENCE[(dir)] - sets LIBLTDL to the link flags for
        !           403: # the libltdl convenience library, adds --enable-ltdl-convenience to
        !           404: # the configure arguments.  Note that LIBLTDL is not AC_SUBSTed, nor
        !           405: # is AC_CONFIG_SUBDIRS called.  If DIR is not provided, it is assumed
        !           406: # to be `${top_builddir}/libltdl'.  Make sure you start DIR with
        !           407: # '${top_builddir}/' (note the single quotes!) if your package is not
        !           408: # flat, and, if you're not using automake, define top_builddir as
        !           409: # appropriate in the Makefiles.
        !           410: AC_DEFUN(AC_LIBLTDL_CONVENIENCE, [AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl
        !           411:   case "$enable_ltdl_convenience" in
        !           412:   no) AC_MSG_ERROR([this package needs a convenience libltdl]) ;;
        !           413:   "") enable_ltdl_convenience=yes
        !           414:       ac_configure_args="$ac_configure_args --enable-ltdl-convenience" ;;
        !           415:   esac
        !           416:   LIBLTDL=ifelse($#,1,$1,['${top_builddir}/libltdl'])/libltdlc.la
        !           417:   INCLTDL=ifelse($#,1,-I$1,['-I${top_builddir}/libltdl'])
        !           418: ])
        !           419: 
        !           420: # AC_LIBLTDL_INSTALLABLE[(dir)] - sets LIBLTDL to the link flags for
        !           421: # the libltdl installable library, and adds --enable-ltdl-install to
        !           422: # the configure arguments.  Note that LIBLTDL is not AC_SUBSTed, nor
        !           423: # is AC_CONFIG_SUBDIRS called.  If DIR is not provided, it is assumed
        !           424: # to be `${top_builddir}/libltdl'.  Make sure you start DIR with
        !           425: # '${top_builddir}/' (note the single quotes!) if your package is not
        !           426: # flat, and, if you're not using automake, define top_builddir as
        !           427: # appropriate in the Makefiles.
        !           428: # In the future, this macro may have to be called after AC_PROG_LIBTOOL.
        !           429: AC_DEFUN(AC_LIBLTDL_INSTALLABLE, [AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl
        !           430:   AC_CHECK_LIB(ltdl, main,
        !           431:   [test x"$enable_ltdl_install" != xyes && enable_ltdl_install=no],
        !           432:   [if test x"$enable_ltdl_install" = xno; then
        !           433:      AC_MSG_WARN([libltdl not installed, but installation disabled])
        !           434:    else
        !           435:      enable_ltdl_install=yes
        !           436:    fi
        !           437:   ])
        !           438:   if test x"$enable_ltdl_install" = x"yes"; then
        !           439:     ac_configure_args="$ac_configure_args --enable-ltdl-install"
        !           440:     LIBLTDL=ifelse($#,1,$1,['${top_builddir}/libltdl'])/libltdl.la
        !           441:     INCLTDL=ifelse($#,1,-I$1,['-I${top_builddir}/libltdl'])
        !           442:   else
        !           443:     ac_configure_args="$ac_configure_args --enable-ltdl-install=no"
        !           444:     LIBLTDL="-lltdl"
        !           445:     INCLTDL=
        !           446:   fi
        !           447: ])
        !           448: 
        !           449: dnl old names
        !           450: AC_DEFUN(AM_PROG_LIBTOOL, [indir([AC_PROG_LIBTOOL])])dnl
        !           451: AC_DEFUN(AM_ENABLE_SHARED, [indir([AC_ENABLE_SHARED], $@)])dnl
        !           452: AC_DEFUN(AM_ENABLE_STATIC, [indir([AC_ENABLE_STATIC], $@)])dnl
        !           453: AC_DEFUN(AM_DISABLE_SHARED, [indir([AC_DISABLE_SHARED], $@)])dnl
        !           454: AC_DEFUN(AM_DISABLE_STATIC, [indir([AC_DISABLE_STATIC], $@)])dnl
        !           455: AC_DEFUN(AM_PROG_LD, [indir([AC_PROG_LD])])dnl
        !           456: AC_DEFUN(AM_PROG_NM, [indir([AC_PROG_NM])])dnl
        !           457: 
        !           458: dnl This is just to silence aclocal about the macro not being used
        !           459: ifelse([AC_DISABLE_FAST_INSTALL])dnl

E-mail: