From: Timo Sirainen Date: Fri, 18 Jul 2008 10:52:27 +0000 (+0300) Subject: Removed MIT Kerberos v1.2 check, since Heimdal v1.2 is out and it works fine. X-Git-Tag: 1.2.alpha1~153 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=d1469ef1b16d597999e3f75fa13907369899cc61;p=thirdparty%2Fdovecot%2Fcore.git Removed MIT Kerberos v1.2 check, since Heimdal v1.2 is out and it works fine. --HG-- branch : HEAD --- diff --git a/configure.in b/configure.in index 5a858ba2e0..53cacc5c4e 100644 --- a/configure.in +++ b/configure.in @@ -1713,9 +1713,6 @@ have_gssapi=no if test $want_gssapi != no; then AC_CHECK_PROG(KRB5CONFIG, krb5-config, YES, NO) if test $KRB5CONFIG = YES; then - # we have a kludgy check here to check that we have - # version >= v1.3. Although this doesn't work right with - # non-MIT kerberos versioning.. if ! krb5-config --version gssapi 2>/dev/null > /dev/null; then # krb5-config doesn't support gssapi. KRB5_LIBS="`krb5-config --libs`" @@ -1727,10 +1724,6 @@ if test $want_gssapi != no; then # failed KRB5_LIBS= ], $KRB5_LIBS) - elif krb5-config --version|grep '1\.2' > /dev/null; then - if test $want_gssapi = yes; then - AC_ERROR([Can't build with GSSAPI support: v1.2 library not supported]) - fi else KRB5_LIBS=`krb5-config --libs gssapi` KRB5_CFLAGS=`krb5-config --cflags gssapi`