From 86c9ba789c8d4a0f7b4418ec367a0298ff333534 Mon Sep 17 00:00:00 2001 From: Tim Potter Date: Wed, 25 Jun 2003 02:24:48 +0000 Subject: 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) --- source3/configure.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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])]) -- cgit