From fddb048cf2115d44ce8b4ad74072346c51fcf0d2 Mon Sep 17 00:00:00 2001 From: Doug Evans Date: Sat, 22 May 1999 12:50:19 +0000 Subject: [PATCH] * libltdl/configure.in (dlerror): Fix typo in dlopen found in -ldl test. --- ChangeLog | 5 +++++ libltdl/configure.in | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) 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) -- 2.47.2