]> git.ipfire.org Git - thirdparty/libtool.git/commitdiff
* libltdl/configure.in (dlerror): Fix typo in dlopen found in -ldl
authorDoug Evans <devans@casey.cygnus.com>
Sat, 22 May 1999 12:50:19 +0000 (12:50 +0000)
committerGary V. Vaughan <gary@gnu.org>
Sat, 22 May 1999 12:50:19 +0000 (12:50 +0000)
test.

ChangeLog
libltdl/configure.in

index 438a5fdbf9afcd19c960a5f41dff0c1d00866d12..d4f897a93ddc95809af4065583fc55404a804a6f 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+1999-05-22  Doug Evans  <devans@casey.cygnus.com>
+
+       * libltdl/configure.in (dlerror): Fix typo in dlopen found in -ldl
+       test.
+
 1999-05-22  Gary V. Vaughan  <gary@oranda.demon.co.uk>
 
        * configure.in: bumped to 1.3.1a.
index d6d7b116f31fce2356470c5160436d1660b3b362..10233c6ce4601bd896d889fb16cec2b6dca87efc 100644 (file)
@@ -96,7 +96,7 @@ AC_CHECK_LIB(dld, dld_link, [AC_DEFINE(HAVE_DLD, 1)dnl
 test "x$ac_cv_lib_dld_shl_load" = yes || LIBADD_DL="$LIBADD_DL -ldld"])
 AC_SUBST(LIBADD_DL)
 
-if test "x$ac_cv_func_dlopen" = xyes || test "x$ac_cv_lib_dl_dlopen" = yes; then
+if test "x$ac_cv_func_dlopen" = xyes || test "x$ac_cv_lib_dl_dlopen" = xyes; then
  LIBS_SAVE="$LIBS"
  LIBS="$LIBS $LIBADD_DL"
  AC_CHECK_FUNCS(dlerror)