diff options
-rw-r--r-- | NEWS | 1 | ||||
-rw-r--r-- | configure.ac | 8 |
2 files changed, 7 insertions, 2 deletions
@@ -209,6 +209,7 @@ fetchmail 6.3.0 (not yet released officially): * Fix bogus "cannot resolve service * to port number" error. Simon Barner. (MA) * Failure to set up SSL connections now results in PS_SOCKET. Suggested by Thomas Wolff. Matthias Andree. +* Kerberos IV detection fix for FreeBSD 4. Simon Barner. (MA) # INTERNAL CHANGES * Switched to automake. Matthias Andree. diff --git a/configure.ac b/configure.ac index 06426108..3d3ee540 100644 --- a/configure.ac +++ b/configure.ac @@ -5,7 +5,7 @@ dnl dnl Process this file with autoconf to produce a configure script. dnl -AC_INIT([fetchmail],[6.2.9-rc4]) +AC_INIT([fetchmail],[6.2.9-rc5]) AC_CONFIG_SRCDIR([fetchmail.h]) AC_CONFIG_HEADERS([config.h]) AC_CONFIG_LIBOBJ_DIR([.]) @@ -507,7 +507,11 @@ else AC_CHECK_LIB(45, krb_mk_req) fi LDFLAGS="-L$dir/lib $ac_saveLDFLAGS" - AC_SEARCH_LIBS(des_string_to_key, [des425 des crypto], [], continue) + if test `uname` = "FreeBSD"; then + AC_SEARCH_LIBS(_ossl_old_des_string_to_key, [des425 des crypto], [], continue) + else + AC_SEARCH_LIBS(des_string_to_key, [crypto], [], continue) + fi AC_SEARCH_LIBS(krb_realmofhost, [krb4 krb], [], continue) with_kerberos="$dir" if test -f "$dir/include/kerberosIV/krb.h" ; then |