diff options
author | Tim Potter <tpot@samba.org> | 2003-06-24 07:46:26 +0000 |
---|---|---|
committer | Tim Potter <tpot@samba.org> | 2003-06-24 07:46:26 +0000 |
commit | 52e4b4d5abf8136959b21d7cc0ad11c480a7f471 (patch) | |
tree | 383a6fc00cb6d3e99f533119834de7a0ee7fe32f /source3 | |
parent | 200af4e84cbf48caa000915d86532e678e84fc46 (diff) | |
download | samba-52e4b4d5abf8136959b21d7cc0ad11c480a7f471.tar.gz samba-52e4b4d5abf8136959b21d7cc0ad11c480a7f471.tar.bz2 samba-52e4b4d5abf8136959b21d7cc0ad11c480a7f471.zip |
More tuning of Kerberos detection - don't fall through to detect kerberos libs
when we have already decided that we can't do it.
(This used to be commit db792ed530da4e040084d4b42b716ffdcdd13bd3)
Diffstat (limited to 'source3')
-rw-r--r-- | source3/configure.in | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/source3/configure.in b/source3/configure.in index 4d52d493eb..03561012be 100644 --- a/source3/configure.in +++ b/source3/configure.in @@ -2215,11 +2215,14 @@ if test x"$with_ads_support" != x"no"; then CFLAGS="$ac_save_CFLAGS" LIBS="$ac_save_LIBS" - fi - # Get rid of case where $with_ads_support=auto + else + + # Get rid of case where $with_ads_support=auto - with_ads_support="yes" + with_ads_support="yes" + + fi fi # Now we have determined whether we really want ADS support |