diff options
-rw-r--r-- | NEWS | 3 | ||||
-rw-r--r-- | configure.ac | 2 |
2 files changed, 4 insertions, 1 deletions
@@ -62,6 +62,9 @@ fetchmail 6.3.12 (released XXXX-XX-XX - not yet): # BUG FIXES * Fix error reporting for GSSAPI on Heimdal (h5l) Kerberos. +* Look for MD5_Init in libcrypto rather than libssl, fixes Gentoo Kerberos + builds; fixes upstream parts of Gentoo Bugs #231400 and #185652, and fixes + BerliOS Bug #16134. # TRANSLATION UPDATES AND ADDITIONS (ordered by language name): * [ca] Catalan (Ernest Adrogué Calveras) diff --git a/configure.ac b/configure.ac index 864a29b2..40fa405e 100644 --- a/configure.ac +++ b/configure.ac @@ -573,7 +573,7 @@ else AC_CHECK_LIB(db2, db_open, ac_krblibs="$ac_krblibs -ldb2", [], ${LDFLAGS}) AC_CHECK_LIB(des, des_string_to_key, libk5crypto=-ldes, - AC_CHECK_LIB(ssl, MD5_Init, [], + AC_CHECK_LIB(crypto, MD5_Init, [], AC_MSG_ERROR([DES libraries not found. Try adding --with-ssl to enable OpenSSL support]), ${LDFLAGS} ${ac_krblibs}), ${LDFLAGS} ${ac_krblibs}) |