changeset 8008:1d209ee7eead HEAD

Removed MIT Kerberos v1.2 check, since Heimdal v1.2 is out and it works fine.
author Timo Sirainen <tss@iki.fi>
date Fri, 18 Jul 2008 13:52:27 +0300
parents b3dd6db685a4
children 289593cceb58
files configure.in
diffstat 1 files changed, 0 insertions(+), 7 deletions(-) [+]
line wrap: on
line diff
--- a/configure.in	Fri Jul 18 01:02:08 2008 +0300
+++ b/configure.in	Fri Jul 18 13:52:27 2008 +0300
@@ -1713,9 +1713,6 @@
 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 @@
 		    # 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`