diff options
author | Günther Deschner <gd@samba.org> | 2006-10-25 12:50:10 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 12:15:39 -0500 |
commit | 99433b1f7b3c06ebbcfd87075c2141622cf77c84 (patch) | |
tree | 2a774899a259ebaae8fe339fa9fe9c929d071b43 | |
parent | 78f977f746cf1f83fe1cc6f09634a831171a3435 (diff) | |
download | samba-99433b1f7b3c06ebbcfd87075c2141622cf77c84.tar.gz samba-99433b1f7b3c06ebbcfd87075c2141622cf77c84.tar.bz2 samba-99433b1f7b3c06ebbcfd87075c2141622cf77c84.zip |
r19494: 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
(This used to be commit 53d09487a003c00b7bb6c1a4824bda799b928bfc)
-rw-r--r-- | source3/configure.in | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/source3/configure.in b/source3/configure.in index 91d304f0f2..059643f38e 100644 --- a/source3/configure.in +++ b/source3/configure.in @@ -3429,7 +3429,9 @@ if test x"$with_ads_support" != x"no"; then ######################################################## # 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) |