]> Pileus Git - ~andy/fetchmail/commitdiff
Look for MD5_Init in libcrypto (not libssl).
authorMatthias Andree <matthias.andree@gmx.de>
Wed, 19 Aug 2009 16:36:00 +0000 (16:36 -0000)
committerMatthias Andree <matthias.andree@gmx.de>
Wed, 19 Aug 2009 16:36:00 +0000 (16:36 -0000)
svn path=/branches/BRANCH_6-3/; revision=5423

NEWS
configure.ac

diff --git a/NEWS b/NEWS
index 68b3d1a7584a780b1705d2fc5a0a7bcf409f85ea..85d3261e435542c27d79900225d73bd56222fd4d 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -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)
index 864a29b2f0fbecae3cd967ac2eea0929467b5f1e..40fa405e3b3a44350ec002e0c5488423119cb0f6 100644 (file)
@@ -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})