]> git.ipfire.org Git - thirdparty/libtool.git/commitdiff
* libltdl/configure.in (ac_cv_lib_dl_dlopen): missing "x" in test
authorGary V. Vaughan <gary@gnu.org>
Wed, 16 Jun 1999 18:33:51 +0000 (18:33 +0000)
committerGary V. Vaughan <gary@gnu.org>
Wed, 16 Jun 1999 18:33:51 +0000 (18:33 +0000)
comparison corrected.

ChangeLog
libltdl/configure.in

index 4ff854cdc4808710ab18aae11a02be11be96bdcc..fe3db5df1ceb9e64f3ea788d07ecfa099a11bd37 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
 1999-06-16  Gary V. Vaughan  <gary@oranda.demon.co.uk>
 
+       * libltdl/configure.in (ac_cv_lib_dl_dlopen): missing "x" in test
+       comparison corrected.
+
        * libltdl/ltdl.c (sys_wll_open): libltdl expects this function to
        fail if it is unable to physically load the library.  Sadly,
        LoadLibrary will search the loaded libraries for a match and
index 839fc00e8a158d712353932393555cefaee1aa4d..2cf4149e2f3a0b600407000089745a6e5a50cfc8 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)