]> git.ipfire.org Git - thirdparty/dovecot/core.git/commitdiff
Removed MIT Kerberos v1.2 check, since Heimdal v1.2 is out and it works fine.
authorTimo Sirainen <tss@iki.fi>
Fri, 18 Jul 2008 10:52:27 +0000 (13:52 +0300)
committerTimo Sirainen <tss@iki.fi>
Fri, 18 Jul 2008 10:52:27 +0000 (13:52 +0300)
--HG--
branch : HEAD

configure.in

index 5a858ba2e06b52ccc6751272ae19e21c779d62e9..53cacc5c4e369eb6af6fca1a9866af54c0efad89 100644 (file)
@@ -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`