diff options
author | Tim Potter <tpot@samba.org> | 2003-06-25 02:24:48 +0000 |
---|---|---|
committer | Tim Potter <tpot@samba.org> | 2003-06-25 02:24:48 +0000 |
commit | 86c9ba789c8d4a0f7b4418ec367a0298ff333534 (patch) | |
tree | 7dfbd30af06bfe6b91c67d60aa4e5f9b7c00d64e | |
parent | 1bc691069b3e4ee9d772c3ed75564c49fe4c820f (diff) | |
download | samba-86c9ba789c8d4a0f7b4418ec367a0298ff333534.tar.gz samba-86c9ba789c8d4a0f7b4418ec367a0298ff333534.tar.bz2 samba-86c9ba789c8d4a0f7b4418ec367a0298ff333534.zip |
Only append to KRB5_LIBS when doing AC_CHECK_LIB for libkrb5.
I think we are done with MIT Kerberos for the moment. The Heimdal detection
looks like it has been broken for ages so it's next on the list.
(This used to be commit 7690a722f99485f717215787db168f6878422f2f)
-rw-r--r-- | source3/configure.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/configure.in b/source3/configure.in index 0578baa22f..3fef0402f1 100644 --- a/source3/configure.in +++ b/source3/configure.in @@ -2353,7 +2353,7 @@ if test x"$with_ads_support" = x"yes"; then ######################################################## # now see if we can find the krb5 libs in standard paths # or as specified above - AC_CHECK_LIB(krb5, krb5_mk_req_extended, [KRB5_LIBS="$LIBS -lkrb5"; + AC_CHECK_LIB(krb5, krb5_mk_req_extended, [KRB5_LIBS="$KRB5_LIBS -lkrb5"; KRB5_CFLAGS="$CFLAGS"; AC_DEFINE(HAVE_KRB5,1,[Whether KRB5 is available])]) |