svn commit: samba r19494 - in branches/SAMBA_3_0/source: .

gd at samba.org gd at samba.org
Wed Oct 25 12:50:25 GMT 2006


Author: gd
Date: 2006-10-25 12:50:10 +0000 (Wed, 25 Oct 2006)
New Revision: 19494

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

Log:
When building with a static Heimdal, make sure not to link against
-lgssapi_krb5. With that change I could sucessfully verify that Heimdal
support is still working nicely after the changes from jpeach.

Guenther

Modified:
   branches/SAMBA_3_0/source/configure.in


Changeset:
Modified: branches/SAMBA_3_0/source/configure.in
===================================================================
--- branches/SAMBA_3_0/source/configure.in	2006-10-25 12:10:48 UTC (rev 19493)
+++ branches/SAMBA_3_0/source/configure.in	2006-10-25 12:50:10 UTC (rev 19494)
@@ -3429,7 +3429,9 @@
 
   ########################################################
   # now see if we can find the gssapi libs in standard paths
-  AC_CHECK_LIB_EXT(gssapi_krb5, KRB5_LIBS,gss_display_status,[],[],have_gssapi=yes)
+  if test x"$have_gssapi" != x"yes"; then
+     AC_CHECK_LIB_EXT(gssapi_krb5, KRB5_LIBS,gss_display_status,[],[],have_gssapi=yes)
+  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