svn commit: samba r5079 - in branches/SAMBA_4_0/source/libads: .

tridge at samba.org tridge at samba.org
Sat Jan 29 02:41:46 GMT 2005


Author: tridge
Date: 2005-01-29 02:41:46 +0000 (Sat, 29 Jan 2005)
New Revision: 5079

WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=5079

Log:
don't look for gss_display_status() in libgssapi_krb5 unless we
haven't already got it from libgssapi. This should fix the problem of
building with heimdal when we have MIT installed

Modified:
   branches/SAMBA_4_0/source/libads/config.m4


Changeset:
Modified: branches/SAMBA_4_0/source/libads/config.m4
===================================================================
--- branches/SAMBA_4_0/source/libads/config.m4	2005-01-29 02:22:13 UTC (rev 5078)
+++ branches/SAMBA_4_0/source/libads/config.m4	2005-01-29 02:41:46 UTC (rev 5079)
@@ -304,8 +304,10 @@
 
 	########################################################
 	# now see if we can find the gssapi libs in standard paths
-	AC_CHECK_LIB_EXT(gssapi_krb5, KRB5_LIBS,gss_display_status,[],[],
+	if test x"$ac_cv_lib_ext_gssapi_gss_display_status" != x"yes"; then
+	   AC_CHECK_LIB_EXT(gssapi_krb5, KRB5_LIBS,gss_display_status,[],[],
 		AC_DEFINE(HAVE_GSSAPI,1,[Whether GSSAPI is available]))
+        fi
 
 	AC_CHECK_FUNC_EXT(krb5_set_real_time, $KRB5_LIBS)
 	AC_CHECK_FUNC_EXT(krb5_set_default_in_tkt_etypes, $KRB5_LIBS)



More information about the samba-cvs mailing list