From: Doug Evans Date: Sat, 22 May 1999 12:50:19 +0000 (+0000) Subject: * libltdl/configure.in (dlerror): Fix typo in dlopen found in -ldl X-Git-Tag: release-1-3-2~11 X-Git-Url: http://git.ipfire.org/gitweb/gitweb.cgi?a=commitdiff_plain;h=fddb048cf2115d44ce8b4ad74072346c51fcf0d2;p=thirdparty%2Flibtool.git * libltdl/configure.in (dlerror): Fix typo in dlopen found in -ldl test. --- diff --git a/ChangeLog b/ChangeLog index 438a5fdbf..d4f897a93 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +1999-05-22 Doug Evans + + * libltdl/configure.in (dlerror): Fix typo in dlopen found in -ldl + test. + 1999-05-22 Gary V. Vaughan * configure.in: bumped to 1.3.1a. diff --git a/libltdl/configure.in b/libltdl/configure.in index d6d7b116f..10233c6ce 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)