acinclude.m4
上传用户:sun1608
上传日期:2007-02-02
资源大小:6116k
文件大小:22k
源码类别:

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. # Local macros for the SDL configure.in script
  2. dnl Function to link an architecture specific file
  3. dnl LINK_ARCH_SRC(source_dir, arch, source_file)
  4. AC_DEFUN(COPY_ARCH_SRC,
  5. [
  6.   echo "Copying $1/$2/$3 -> $1/$3"
  7.   old="$srcdir/$1/$2/$3"
  8.   new="$srcdir/$1/$3"
  9.   cat >$new <<__EOF__
  10. /* WARNING:  This file was automatically generated!
  11.  * Original: $old
  12.  */
  13. __EOF__
  14.   cat >>$new <$old
  15. ])
  16. #
  17. # --- esd.m4 ---
  18. #
  19. # Configure paths for ESD
  20. # Manish Singh    98-9-30
  21. # stolen back from Frank Belew
  22. # stolen from Manish Singh
  23. # Shamelessly stolen from Owen Taylor
  24. dnl AM_PATH_ESD([MINIMUM-VERSION, [ACTION-IF-FOUND [, ACTION-IF-NOT-FOUND]]])
  25. dnl Test for ESD, and define ESD_CFLAGS and ESD_LIBS
  26. dnl
  27. AC_DEFUN(AM_PATH_ESD,
  28. [dnl 
  29. dnl Get the cflags and libraries from the esd-config script
  30. dnl
  31. AC_ARG_WITH(esd-prefix,[  --with-esd-prefix=PFX   Prefix where ESD is installed (optional)],
  32.             esd_prefix="$withval", esd_prefix="")
  33. AC_ARG_WITH(esd-exec-prefix,[  --with-esd-exec-prefix=PFX Exec prefix where ESD is installed (optional)],
  34.             esd_exec_prefix="$withval", esd_exec_prefix="")
  35. AC_ARG_ENABLE(esdtest, [  --disable-esdtest       Do not try to compile and run a test ESD program],
  36.     , enable_esdtest=yes)
  37.   if test x$esd_exec_prefix != x ; then
  38.      esd_args="$esd_args --exec-prefix=$esd_exec_prefix"
  39.      if test x${ESD_CONFIG+set} != xset ; then
  40.         ESD_CONFIG=$esd_exec_prefix/bin/esd-config
  41.      fi
  42.   fi
  43.   if test x$esd_prefix != x ; then
  44.      esd_args="$esd_args --prefix=$esd_prefix"
  45.      if test x${ESD_CONFIG+set} != xset ; then
  46.         ESD_CONFIG=$esd_prefix/bin/esd-config
  47.      fi
  48.   fi
  49.   AC_PATH_PROG(ESD_CONFIG, esd-config, no)
  50.   min_esd_version=ifelse([$1], ,0.2.7,$1)
  51.   AC_MSG_CHECKING(for ESD - version >= $min_esd_version)
  52.   no_esd=""
  53.   if test "$ESD_CONFIG" = "no" ; then
  54.     no_esd=yes
  55.   else
  56.     ESD_CFLAGS=`$ESD_CONFIG $esdconf_args --cflags`
  57.     ESD_LIBS=`$ESD_CONFIG $esdconf_args --libs`
  58.     esd_major_version=`$ESD_CONFIG $esd_args --version | 
  59.            sed 's/([[0-9]]*).([[0-9]]*).([[0-9]]*)/1/'`
  60.     esd_minor_version=`$ESD_CONFIG $esd_args --version | 
  61.            sed 's/([[0-9]]*).([[0-9]]*).([[0-9]]*)/2/'`
  62.     esd_micro_version=`$ESD_CONFIG $esd_config_args --version | 
  63.            sed 's/([[0-9]]*).([[0-9]]*).([[0-9]]*)/3/'`
  64.     if test "x$enable_esdtest" = "xyes" ; then
  65.       ac_save_CFLAGS="$CFLAGS"
  66.       ac_save_LIBS="$LIBS"
  67.       CFLAGS="$CFLAGS $ESD_CFLAGS"
  68.       LIBS="$LIBS $ESD_LIBS"
  69. dnl
  70. dnl Now check if the installed ESD is sufficiently new. (Also sanity
  71. dnl checks the results of esd-config to some extent
  72. dnl
  73.       rm -f conf.esdtest
  74.       AC_TRY_RUN([
  75. #include <stdio.h>
  76. #include <stdlib.h>
  77. #include <string.h>
  78. #include <esd.h>
  79. char*
  80. my_strdup (char *str)
  81. {
  82.   char *new_str;
  83.   
  84.   if (str)
  85.     {
  86.       new_str = malloc ((strlen (str) + 1) * sizeof(char));
  87.       strcpy (new_str, str);
  88.     }
  89.   else
  90.     new_str = NULL;
  91.   
  92.   return new_str;
  93. }
  94. int main ()
  95. {
  96.   int major, minor, micro;
  97.   char *tmp_version;
  98.   system ("touch conf.esdtest");
  99.   /* HP/UX 9 (%@#!) writes to sscanf strings */
  100.   tmp_version = my_strdup("$min_esd_version");
  101.   if (sscanf(tmp_version, "%d.%d.%d", &major, &minor, &micro) != 3) {
  102.      printf("%s, bad version stringn", "$min_esd_version");
  103.      exit(1);
  104.    }
  105.    if (($esd_major_version > major) ||
  106.       (($esd_major_version == major) && ($esd_minor_version > minor)) ||
  107.       (($esd_major_version == major) && ($esd_minor_version == minor) && ($esd_micro_version >= micro)))
  108.     {
  109.       return 0;
  110.     }
  111.   else
  112.     {
  113.       printf("n*** 'esd-config --version' returned %d.%d.%d, but the minimum versionn", $esd_major_version, $esd_minor_version, $esd_micro_version);
  114.       printf("*** of ESD required is %d.%d.%d. If esd-config is correct, then it isn", major, minor, micro);
  115.       printf("*** best to upgrade to the required version.n");
  116.       printf("*** If esd-config was wrong, set the environment variable ESD_CONFIGn");
  117.       printf("*** to point to the correct copy of esd-config, and remove the filen");
  118.       printf("*** config.cache before re-running configuren");
  119.       return 1;
  120.     }
  121. }
  122. ],, no_esd=yes,[echo $ac_n "cross compiling; assumed OK... $ac_c"])
  123.        CFLAGS="$ac_save_CFLAGS"
  124.        LIBS="$ac_save_LIBS"
  125.      fi
  126.   fi
  127.   if test "x$no_esd" = x ; then
  128.      AC_MSG_RESULT(yes)
  129.      ifelse([$2], , :, [$2])     
  130.   else
  131.      AC_MSG_RESULT(no)
  132.      if test "$ESD_CONFIG" = "no" ; then
  133.        echo "*** The esd-config script installed by ESD could not be found"
  134.        echo "*** If ESD was installed in PREFIX, make sure PREFIX/bin is in"
  135.        echo "*** your path, or set the ESD_CONFIG environment variable to the"
  136.        echo "*** full path to esd-config."
  137.      else
  138.        if test -f conf.esdtest ; then
  139.         :
  140.        else
  141.           echo "*** Could not run ESD test program, checking why..."
  142.           CFLAGS="$CFLAGS $ESD_CFLAGS"
  143.           LIBS="$LIBS $ESD_LIBS"
  144.           AC_TRY_LINK([
  145. #include <stdio.h>
  146. #include <esd.h>
  147. ],      [ return 0; ],
  148.         [ echo "*** The test program compiled, but did not run. This usually means"
  149.           echo "*** that the run-time linker is not finding ESD or finding the wrong"
  150.           echo "*** version of ESD. If it is not finding ESD, you'll need to set your"
  151.           echo "*** LD_LIBRARY_PATH environment variable, or edit /etc/ld.so.conf to point"
  152.           echo "*** to the installed location  Also, make sure you have run ldconfig if that"
  153.           echo "*** is required on your system"
  154.   echo "***"
  155.           echo "*** If you have an old version installed, it is best to remove it, although"
  156.           echo "*** you may also be able to get things to work by modifying LD_LIBRARY_PATH"],
  157.         [ echo "*** The test program failed to compile or link. See the file config.log for the"
  158.           echo "*** exact error that occured. This usually means ESD was incorrectly installed"
  159.           echo "*** or that you have moved ESD since it was installed. In the latter case, you"
  160.           echo "*** may want to edit the esd-config script: $ESD_CONFIG" ])
  161.           CFLAGS="$ac_save_CFLAGS"
  162.           LIBS="$ac_save_LIBS"
  163.        fi
  164.      fi
  165.      ESD_CFLAGS=""
  166.      ESD_LIBS=""
  167.      ifelse([$3], , :, [$3])
  168.   fi
  169.   AC_SUBST(ESD_CFLAGS)
  170.   AC_SUBST(ESD_LIBS)
  171.   rm -f conf.esdtest
  172. ])
  173. ## libtool.m4 - Configure libtool for the target system. -*-Shell-script-*-
  174. ## Copyright (C) 1996-1999, 2000 Free Software Foundation, Inc.
  175. ## Originally by Gordon Matzigkeit <gord@gnu.ai.mit.edu>, 1996
  176. ##
  177. ## This program is free software; you can redistribute it and/or modify
  178. ## it under the terms of the GNU General Public License as published by
  179. ## the Free Software Foundation; either version 2 of the License, or
  180. ## (at your option) any later version.
  181. ##
  182. ## This program is distributed in the hope that it will be useful, but
  183. ## WITHOUT ANY WARRANTY; without even the implied warranty of
  184. ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  185. ## General Public License for more details.
  186. ##
  187. ## You should have received a copy of the GNU General Public License
  188. ## along with this program; if not, write to the Free Software
  189. ## Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  190. ##
  191. ## As a special exception to the GNU General Public License, if you
  192. ## distribute this file as part of a program that contains a
  193. ## configuration script generated by Autoconf, you may include it under
  194. ## the same distribution terms that you use for the rest of that program.
  195. # serial 40 AC_PROG_LIBTOOL
  196. AC_DEFUN(AC_PROG_LIBTOOL,
  197. [AC_REQUIRE([AC_LIBTOOL_SETUP])dnl
  198. # Save cache, so that ltconfig can load it
  199. AC_CACHE_SAVE
  200. # Actually configure libtool.  ac_aux_dir is where install-sh is found.
  201. CC="$CC" CFLAGS="$CFLAGS" CPPFLAGS="$CPPFLAGS" 
  202. LD="$LD" LDFLAGS="$LDFLAGS" LIBS="$LIBS" 
  203. LN_S="$LN_S" NM="$NM" RANLIB="$RANLIB" 
  204. DLLTOOL="$DLLTOOL" AS="$AS" OBJDUMP="$OBJDUMP" 
  205. ${CONFIG_SHELL-/bin/sh} $ac_aux_dir/ltconfig --no-reexec 
  206. $libtool_flags --no-verify $ac_aux_dir/ltmain.sh $lt_target 
  207. || AC_MSG_ERROR([libtool configure failed])
  208. # Reload cache, that may have been modified by ltconfig
  209. AC_CACHE_LOAD
  210. # This can be used to rebuild libtool when needed
  211. LIBTOOL_DEPS="$ac_aux_dir/ltconfig $ac_aux_dir/ltmain.sh"
  212. # Always use our own libtool.
  213. LIBTOOL='$(SHELL) $(top_builddir)/libtool'
  214. AC_SUBST(LIBTOOL)dnl
  215. # Redirect the config.log output again, so that the ltconfig log is not
  216. # clobbered by the next message.
  217. exec 5>>./config.log
  218. ])
  219. AC_DEFUN(AC_LIBTOOL_SETUP,
  220. [AC_PREREQ(2.13)dnl
  221. AC_REQUIRE([AC_ENABLE_SHARED])dnl
  222. AC_REQUIRE([AC_ENABLE_STATIC])dnl
  223. AC_REQUIRE([AC_ENABLE_FAST_INSTALL])dnl
  224. AC_REQUIRE([AC_CANONICAL_HOST])dnl
  225. AC_REQUIRE([AC_CANONICAL_BUILD])dnl
  226. AC_REQUIRE([AC_PROG_RANLIB])dnl
  227. AC_REQUIRE([AC_PROG_CC])dnl
  228. AC_REQUIRE([AC_PROG_LD])dnl
  229. AC_REQUIRE([AC_PROG_NM])dnl
  230. AC_REQUIRE([AC_PROG_LN_S])dnl
  231. dnl
  232. case "$target" in
  233. NONE) lt_target="$host" ;;
  234. *) lt_target="$target" ;;
  235. esac
  236. # Check for any special flags to pass to ltconfig.
  237. libtool_flags="--cache-file=$cache_file"
  238. test "$enable_shared" = no && libtool_flags="$libtool_flags --disable-shared"
  239. test "$enable_static" = no && libtool_flags="$libtool_flags --disable-static"
  240. test "$enable_fast_install" = no && libtool_flags="$libtool_flags --disable-fast-install"
  241. test "$ac_cv_prog_gcc" = yes && libtool_flags="$libtool_flags --with-gcc"
  242. test "$ac_cv_prog_gnu_ld" = yes && libtool_flags="$libtool_flags --with-gnu-ld"
  243. ifdef([AC_PROVIDE_AC_LIBTOOL_DLOPEN],
  244. [libtool_flags="$libtool_flags --enable-dlopen"])
  245. ifdef([AC_PROVIDE_AC_LIBTOOL_WIN32_DLL],
  246. [libtool_flags="$libtool_flags --enable-win32-dll"])
  247. AC_ARG_ENABLE(libtool-lock,
  248.   [  --disable-libtool-lock  avoid locking (might break parallel builds)])
  249. test "x$enable_libtool_lock" = xno && libtool_flags="$libtool_flags --disable-lock"
  250. test x"$silent" = xyes && libtool_flags="$libtool_flags --silent"
  251. # Some flags need to be propagated to the compiler or linker for good
  252. # libtool support.
  253. case "$lt_target" in
  254. *-*-irix6*)
  255.   # Find out which ABI we are using.
  256.   echo '[#]line __oline__ "configure"' > conftest.$ac_ext
  257.   if AC_TRY_EVAL(ac_compile); then
  258.     case "`/usr/bin/file conftest.o`" in
  259.     *32-bit*)
  260.       LD="${LD-ld} -32"
  261.       ;;
  262.     *N32*)
  263.       LD="${LD-ld} -n32"
  264.       ;;
  265.     *64-bit*)
  266.       LD="${LD-ld} -64"
  267.       ;;
  268.     esac
  269.   fi
  270.   rm -rf conftest*
  271.   ;;
  272. *-*-sco3.2v5*)
  273.   # On SCO OpenServer 5, we need -belf to get full-featured binaries.
  274.   SAVE_CFLAGS="$CFLAGS"
  275.   CFLAGS="$CFLAGS -belf"
  276.   AC_CACHE_CHECK([whether the C compiler needs -belf], lt_cv_cc_needs_belf,
  277.     [AC_TRY_LINK([],[],[lt_cv_cc_needs_belf=yes],[lt_cv_cc_needs_belf=no])])
  278.   if test x"$lt_cv_cc_needs_belf" != x"yes"; then
  279.     # this is probably gcc 2.8.0, egcs 1.0 or newer; no need for -belf
  280.     CFLAGS="$SAVE_CFLAGS"
  281.   fi
  282.   ;;
  283. ifdef([AC_PROVIDE_AC_LIBTOOL_WIN32_DLL],
  284. [*-*-cygwin* | *-*-mingw*)
  285.   AC_CHECK_TOOL(DLLTOOL, dlltool, false)
  286.   AC_CHECK_TOOL(AS, as, false)
  287.   AC_CHECK_TOOL(OBJDUMP, objdump, false)
  288.   ;;
  289. ])
  290. esac
  291. ])
  292. # AC_LIBTOOL_DLOPEN - enable checks for dlopen support
  293. AC_DEFUN(AC_LIBTOOL_DLOPEN, [AC_BEFORE([$0],[AC_LIBTOOL_SETUP])])
  294. # AC_LIBTOOL_WIN32_DLL - declare package support for building win32 dll's
  295. AC_DEFUN(AC_LIBTOOL_WIN32_DLL, [AC_BEFORE([$0], [AC_LIBTOOL_SETUP])])
  296. # AC_ENABLE_SHARED - implement the --enable-shared flag
  297. # Usage: AC_ENABLE_SHARED[(DEFAULT)]
  298. #   Where DEFAULT is either `yes' or `no'.  If omitted, it defaults to
  299. #   `yes'.
  300. AC_DEFUN(AC_ENABLE_SHARED, [dnl
  301. define([AC_ENABLE_SHARED_DEFAULT], ifelse($1, no, no, yes))dnl
  302. AC_ARG_ENABLE(shared,
  303. changequote(<<, >>)dnl
  304. <<  --enable-shared[=PKGS]  build shared libraries [default=>>AC_ENABLE_SHARED_DEFAULT],
  305. changequote([, ])dnl
  306. [p=${PACKAGE-default}
  307. case "$enableval" in
  308. yes) enable_shared=yes ;;
  309. no) enable_shared=no ;;
  310. *)
  311.   enable_shared=no
  312.   # Look at the argument we got.  We use all the common list separators.
  313.   IFS="${IFS=  }"; ac_save_ifs="$IFS"; IFS="${IFS}:,"
  314.   for pkg in $enableval; do
  315.     if test "X$pkg" = "X$p"; then
  316.       enable_shared=yes
  317.     fi
  318.   done
  319.   IFS="$ac_save_ifs"
  320.   ;;
  321. esac],
  322. enable_shared=AC_ENABLE_SHARED_DEFAULT)dnl
  323. ])
  324. # AC_DISABLE_SHARED - set the default shared flag to --disable-shared
  325. AC_DEFUN(AC_DISABLE_SHARED, [AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl
  326. AC_ENABLE_SHARED(no)])
  327. # AC_ENABLE_STATIC - implement the --enable-static flag
  328. # Usage: AC_ENABLE_STATIC[(DEFAULT)]
  329. #   Where DEFAULT is either `yes' or `no'.  If omitted, it defaults to
  330. #   `yes'.
  331. AC_DEFUN(AC_ENABLE_STATIC, [dnl
  332. define([AC_ENABLE_STATIC_DEFAULT], ifelse($1, no, no, yes))dnl
  333. AC_ARG_ENABLE(static,
  334. changequote(<<, >>)dnl
  335. <<  --enable-static[=PKGS]  build static libraries [default=>>AC_ENABLE_STATIC_DEFAULT],
  336. changequote([, ])dnl
  337. [p=${PACKAGE-default}
  338. case "$enableval" in
  339. yes) enable_static=yes ;;
  340. no) enable_static=no ;;
  341. *)
  342.   enable_static=no
  343.   # Look at the argument we got.  We use all the common list separators.
  344.   IFS="${IFS=  }"; ac_save_ifs="$IFS"; IFS="${IFS}:,"
  345.   for pkg in $enableval; do
  346.     if test "X$pkg" = "X$p"; then
  347.       enable_static=yes
  348.     fi
  349.   done
  350.   IFS="$ac_save_ifs"
  351.   ;;
  352. esac],
  353. enable_static=AC_ENABLE_STATIC_DEFAULT)dnl
  354. ])
  355. # AC_DISABLE_STATIC - set the default static flag to --disable-static
  356. AC_DEFUN(AC_DISABLE_STATIC, [AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl
  357. AC_ENABLE_STATIC(no)])
  358. # AC_ENABLE_FAST_INSTALL - implement the --enable-fast-install flag
  359. # Usage: AC_ENABLE_FAST_INSTALL[(DEFAULT)]
  360. #   Where DEFAULT is either `yes' or `no'.  If omitted, it defaults to
  361. #   `yes'.
  362. AC_DEFUN(AC_ENABLE_FAST_INSTALL, [dnl
  363. define([AC_ENABLE_FAST_INSTALL_DEFAULT], ifelse($1, no, no, yes))dnl
  364. AC_ARG_ENABLE(fast-install,
  365. changequote(<<, >>)dnl
  366. <<  --enable-fast-install[=PKGS]  optimize for fast installation [default=>>AC_ENABLE_FAST_INSTALL_DEFAULT],
  367. changequote([, ])dnl
  368. [p=${PACKAGE-default}
  369. case "$enableval" in
  370. yes) enable_fast_install=yes ;;
  371. no) enable_fast_install=no ;;
  372. *)
  373.   enable_fast_install=no
  374.   # Look at the argument we got.  We use all the common list separators.
  375.   IFS="${IFS=  }"; ac_save_ifs="$IFS"; IFS="${IFS}:,"
  376.   for pkg in $enableval; do
  377.     if test "X$pkg" = "X$p"; then
  378.       enable_fast_install=yes
  379.     fi
  380.   done
  381.   IFS="$ac_save_ifs"
  382.   ;;
  383. esac],
  384. enable_fast_install=AC_ENABLE_FAST_INSTALL_DEFAULT)dnl
  385. ])
  386. # AC_ENABLE_FAST_INSTALL - set the default to --disable-fast-install
  387. AC_DEFUN(AC_DISABLE_FAST_INSTALL, [AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl
  388. AC_ENABLE_FAST_INSTALL(no)])
  389. # AC_PROG_LD - find the path to the GNU or non-GNU linker
  390. AC_DEFUN(AC_PROG_LD,
  391. [AC_ARG_WITH(gnu-ld,
  392. [  --with-gnu-ld           assume the C compiler uses GNU ld [default=no]],
  393. test "$withval" = no || with_gnu_ld=yes, with_gnu_ld=no)
  394. AC_REQUIRE([AC_PROG_CC])dnl
  395. AC_REQUIRE([AC_CANONICAL_HOST])dnl
  396. AC_REQUIRE([AC_CANONICAL_BUILD])dnl
  397. ac_prog=ld
  398. if test "$ac_cv_prog_gcc" = yes; then
  399.   # Check if gcc -print-prog-name=ld gives a path.
  400.   AC_MSG_CHECKING([for ld used by GCC])
  401.   DELCR='tr -d 15'
  402.   ac_prog=`($CC -print-prog-name=ld | $DELCR) 2>&5`
  403.   case "$ac_prog" in
  404.     # Accept absolute paths.
  405. changequote(,)dnl
  406.     [\/]* | [A-Za-z]:[\/]*)
  407.       re_direlt='/[^/][^/]*/../'
  408. changequote([,])dnl
  409.       # Canonicalize the path of ld
  410.       ac_prog=`echo $ac_prog| sed 's%\\%/%g'`
  411.       while echo $ac_prog | grep "$re_direlt" > /dev/null 2>&1; do
  412. ac_prog=`echo $ac_prog| sed "s%$re_direlt%/%"`
  413.       done
  414.       test -z "$LD" && LD="$ac_prog"
  415.       ;;
  416.   "")
  417.     # If it fails, then pretend we aren't using GCC.
  418.     ac_prog=ld
  419.     ;;
  420.   *)
  421.     # If it is relative, then search for the first ld in PATH.
  422.     with_gnu_ld=unknown
  423.     ;;
  424.   esac
  425. elif test "$with_gnu_ld" = yes; then
  426.   AC_MSG_CHECKING([for GNU ld])
  427. else
  428.   AC_MSG_CHECKING([for non-GNU ld])
  429. fi
  430. AC_CACHE_VAL(ac_cv_path_LD,
  431. [if test -z "$LD"; then
  432.   IFS="${IFS=  }"; ac_save_ifs="$IFS"; IFS="${IFS}${PATH_SEPARATOR-:}"
  433.   for ac_dir in $PATH; do
  434.     test -z "$ac_dir" && ac_dir=.
  435.     if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then
  436.       ac_cv_path_LD="$ac_dir/$ac_prog"
  437.       # Check to see if the program is GNU ld.  I'd rather use --version,
  438.       # but apparently some GNU ld's only accept -v.
  439.       # Break only if it was the GNU/non-GNU ld that we prefer.
  440.       if "$ac_cv_path_LD" -v 2>&1 < /dev/null | egrep '(GNU|with BFD)' > /dev/null; then
  441. test "$with_gnu_ld" != no && break
  442.       else
  443. test "$with_gnu_ld" != yes && break
  444.       fi
  445.     fi
  446.   done
  447.   IFS="$ac_save_ifs"
  448. else
  449.   ac_cv_path_LD="$LD" # Let the user override the test with a path.
  450. fi])
  451. LD="$ac_cv_path_LD"
  452. if test -n "$LD"; then
  453.   AC_MSG_RESULT($LD)
  454. else
  455.   AC_MSG_RESULT(no)
  456. fi
  457. test -z "$LD" && AC_MSG_ERROR([no acceptable ld found in $PATH])
  458. AC_PROG_LD_GNU
  459. ])
  460. AC_DEFUN(AC_PROG_LD_GNU,
  461. [AC_CACHE_CHECK([if the linker ($LD) is GNU ld], ac_cv_prog_gnu_ld,
  462. [# I'd rather use --version here, but apparently some GNU ld's only accept -v.
  463. if $LD -v 2>&1 </dev/null | egrep '(GNU|with BFD)' 1>&5; then
  464.   ac_cv_prog_gnu_ld=yes
  465. else
  466.   ac_cv_prog_gnu_ld=no
  467. fi])
  468. ])
  469. # AC_PROG_NM - find the path to a BSD-compatible name lister
  470. AC_DEFUN(AC_PROG_NM,
  471. [AC_MSG_CHECKING([for BSD-compatible nm])
  472. AC_CACHE_VAL(ac_cv_path_NM,
  473. [if test -n "$NM"; then
  474.   # Let the user override the test.
  475.   ac_cv_path_NM="$NM"
  476. else
  477.   IFS="${IFS=  }"; ac_save_ifs="$IFS"; IFS="${IFS}${PATH_SEPARATOR-:}"
  478.   for ac_dir in $PATH /usr/ccs/bin /usr/ucb /bin; do
  479.     test -z "$ac_dir" && ac_dir=.
  480.     if test -f $ac_dir/nm || test -f $ac_dir/nm$ac_exeext ; then
  481.       # Check to see if the nm accepts a BSD-compat flag.
  482.       # Adding the `sed 1q' prevents false positives on HP-UX, which says:
  483.       #   nm: unknown option "B" ignored
  484.       if ($ac_dir/nm -B /dev/null 2>&1 | sed '1q'; exit 0) | egrep /dev/null >/dev/null; then
  485. ac_cv_path_NM="$ac_dir/nm -B"
  486. break
  487.       elif ($ac_dir/nm -p /dev/null 2>&1 | sed '1q'; exit 0) | egrep /dev/null >/dev/null; then
  488. ac_cv_path_NM="$ac_dir/nm -p"
  489. break
  490.       else
  491. ac_cv_path_NM=${ac_cv_path_NM="$ac_dir/nm"} # keep the first match, but
  492. continue # so that we can try to find one that supports BSD flags
  493.       fi
  494.     fi
  495.   done
  496.   IFS="$ac_save_ifs"
  497.   test -z "$ac_cv_path_NM" && ac_cv_path_NM=nm
  498. fi])
  499. NM="$ac_cv_path_NM"
  500. AC_MSG_RESULT([$NM])
  501. ])
  502. # AC_CHECK_LIBM - check for math library
  503. AC_DEFUN(AC_CHECK_LIBM,
  504. [AC_REQUIRE([AC_CANONICAL_HOST])dnl
  505. LIBM=
  506. case "$lt_target" in
  507. *-*-beos* | *-*-cygwin*)
  508.   # These system don't have libm
  509.   ;;
  510. *-ncr-sysv4.3*)
  511.   AC_CHECK_LIB(mw, _mwvalidcheckl, LIBM="-lmw")
  512.   AC_CHECK_LIB(m, main, LIBM="$LIBM -lm")
  513.   ;;
  514. *)
  515.   AC_CHECK_LIB(m, main, LIBM="-lm")
  516.   ;;
  517. esac
  518. ])
  519. # AC_LIBLTDL_CONVENIENCE[(dir)] - sets LIBLTDL to the link flags for
  520. # the libltdl convenience library and INCLTDL to the include flags for
  521. # the libltdl header and adds --enable-ltdl-convenience to the
  522. # configure arguments.  Note that LIBLTDL and INCLTDL are not
  523. # AC_SUBSTed, nor is AC_CONFIG_SUBDIRS called.  If DIR is not
  524. # provided, it is assumed to be `libltdl'.  LIBLTDL will be prefixed
  525. # with '${top_builddir}/' and INCLTDL will be prefixed with
  526. # '${top_srcdir}/' (note the single quotes!).  If your package is not
  527. # flat and you're not using automake, define top_builddir and
  528. # top_srcdir appropriately in the Makefiles.
  529. AC_DEFUN(AC_LIBLTDL_CONVENIENCE, [AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl
  530.   case "$enable_ltdl_convenience" in
  531.   no) AC_MSG_ERROR([this package needs a convenience libltdl]) ;;
  532.   "") enable_ltdl_convenience=yes
  533.       ac_configure_args="$ac_configure_args --enable-ltdl-convenience" ;;
  534.   esac
  535.   LIBLTDL='${top_builddir}/'ifelse($#,1,[$1],['libltdl'])/libltdlc.la
  536.   INCLTDL='-I${top_srcdir}/'ifelse($#,1,[$1],['libltdl'])
  537. ])
  538. # AC_LIBLTDL_INSTALLABLE[(dir)] - sets LIBLTDL to the link flags for
  539. # the libltdl installable library and INCLTDL to the include flags for
  540. # the libltdl header and adds --enable-ltdl-install to the configure
  541. # arguments.  Note that LIBLTDL and INCLTDL are not AC_SUBSTed, nor is
  542. # AC_CONFIG_SUBDIRS called.  If DIR is not provided and an installed
  543. # libltdl is not found, it is assumed to be `libltdl'.  LIBLTDL will
  544. # be prefixed with '${top_builddir}/' and INCLTDL will be prefixed
  545. # with '${top_srcdir}/' (note the single quotes!).  If your package is
  546. # not flat and you're not using automake, define top_builddir and
  547. # top_srcdir appropriately in the Makefiles.
  548. # In the future, this macro may have to be called after AC_PROG_LIBTOOL.
  549. AC_DEFUN(AC_LIBLTDL_INSTALLABLE, [AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl
  550.   AC_CHECK_LIB(ltdl, main,
  551.   [test x"$enable_ltdl_install" != xyes && enable_ltdl_install=no],
  552.   [if test x"$enable_ltdl_install" = xno; then
  553.      AC_MSG_WARN([libltdl not installed, but installation disabled])
  554.    else
  555.      enable_ltdl_install=yes
  556.    fi
  557.   ])
  558.   if test x"$enable_ltdl_install" = x"yes"; then
  559.     ac_configure_args="$ac_configure_args --enable-ltdl-install"
  560.     LIBLTDL='${top_builddir}/'ifelse($#,1,[$1],['libltdl'])/libltdl.la
  561.     INCLTDL='-I${top_srcdir}/'ifelse($#,1,[$1],['libltdl'])
  562.   else
  563.     ac_configure_args="$ac_configure_args --enable-ltdl-install=no"
  564.     LIBLTDL="-lltdl"
  565.     INCLTDL=
  566.   fi
  567. ])
  568. dnl old names
  569. AC_DEFUN(AM_PROG_LIBTOOL, [indir([AC_PROG_LIBTOOL])])dnl
  570. AC_DEFUN(AM_ENABLE_SHARED, [indir([AC_ENABLE_SHARED], $@)])dnl
  571. AC_DEFUN(AM_ENABLE_STATIC, [indir([AC_ENABLE_STATIC], $@)])dnl
  572. AC_DEFUN(AM_DISABLE_SHARED, [indir([AC_DISABLE_SHARED], $@)])dnl
  573. AC_DEFUN(AM_DISABLE_STATIC, [indir([AC_DISABLE_STATIC], $@)])dnl
  574. AC_DEFUN(AM_PROG_LD, [indir([AC_PROG_LD])])dnl
  575. AC_DEFUN(AM_PROG_NM, [indir([AC_PROG_NM])])dnl
  576. dnl This is just to silence aclocal about the macro not being used
  577. ifelse([AC_DISABLE_FAST_INSTALL])dnl