diff options
author | Daniel Stenberg <daniel@haxx.se> | 2001-05-21 13:33:03 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2001-05-21 13:33:03 +0000 |
commit | 1b9e26a287a2f59be7112270c5e081092d941471 (patch) | |
tree | 4fe7d86dd68310c0316c4c4826ae88f8c775ae7c | |
parent | 9f24645a5bcfbb32d22ef41a025a28f7f51ebd11 (diff) |
added a lame double-check for libcrypto as otherwise it wouldn't get added
properly! (?) Anyone has any better solution then please step forward!
-rw-r--r-- | configure.in | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/configure.in b/configure.in index d7ccbb867..9a60a8aca 100644 --- a/configure.in +++ b/configure.in @@ -569,8 +569,7 @@ else dnl This is only reasonable to do if crypto actually is there: check for dnl SSL libs NOTE: it is important to do this AFTER the crypto lib - LIBS="$LIBS -lcrypto" - + AC_CHECK_LIB(crypto, CRYPTO_add_lock) AC_CHECK_LIB(ssl, SSL_connect) if test "$ac_cv_lib_ssl_SSL_connect" != yes; then |