From: Gary V. Vaughan Date: Wed, 16 Jun 1999 18:33:51 +0000 (+0000) Subject: * libltdl/configure.in (ac_cv_lib_dl_dlopen): missing "x" in test X-Git-Tag: release-1-3b~17 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=db655ec51bbd7e3db7c92231d2f2f8eb0a40695e;p=thirdparty%2Flibtool.git * libltdl/configure.in (ac_cv_lib_dl_dlopen): missing "x" in test comparison corrected. --- diff --git a/ChangeLog b/ChangeLog index 4ff854cdc..fe3db5df1 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ 1999-06-16 Gary V. Vaughan + * 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 diff --git a/libltdl/configure.in b/libltdl/configure.in index 839fc00e8..2cf4149e2 100644 --- a/libltdl/configure.in +++ b/libltdl/configure.in @@ -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)