aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2001-05-31 08:24:50 +0000
committerDaniel Stenberg <daniel@haxx.se>2001-05-31 08:24:50 +0000
commit43d0d75688cf12dd278d7d72d1c7e2298c0da3e5 (patch)
treea886d1e6d18f497156697837af9fd83884f008e5
parent77f34915ce25a22b2f2742ba69ac76093376dc94 (diff)
fixed the dlopen check
-rw-r--r--configure.in5
1 files changed, 3 insertions, 2 deletions
diff --git a/configure.in b/configure.in
index 78bfb92f9..d07158775 100644
--- a/configure.in
+++ b/configure.in
@@ -418,7 +418,7 @@ dnl ucb lib?
AC_CHECK_FUNC(gethostname, , AC_CHECK_LIB(ucb, gethostname))
dnl dl lib?
-AC_CHECK_FUNC(dlopen, , AC_CHECK_LIB(dl, dlopen))
+AC_CHECK_FUNC(dlclose, , AC_CHECK_LIB(dl, dlopen))
dnl **********************************************************************
dnl Check for the random seed preferences
@@ -799,7 +799,8 @@ AC_CHECK_FUNCS( socket \
getpass_r \
strlcat \
getpwuid \
- geteuid
+ geteuid \
+ dlopen
)
dnl removed 'getpass' check on October 26, 2000