From 0b5f228d30718801c2b9b1a6da455a5b4e6a7815 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Sun, 25 Nov 2001 12:40:23 +0000 Subject: added HAVE_LDAP_H check (This used to be commit a1304be045d9cfd7bb793bb55ff49e158440a90e) --- source3/include/includes.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source3/include') diff --git a/source3/include/includes.h b/source3/include/includes.h index adae49ddea..27deaf4339 100644 --- a/source3/include/includes.h +++ b/source3/include/includes.h @@ -381,7 +381,7 @@ #include #endif -#if HAVE_LDAP +#if HAVE_LDAP_H #include #endif @@ -390,7 +390,7 @@ #endif /* we support ADS if we have krb5 and ldap libs */ -#if defined(HAVE_KRB5) && defined(HAVE_LDAP) && defined(HAVE_SASL_H) +#if defined(HAVE_KRB5) && defined(HAVE_LDAP) && defined(HAVE_LDAP_H) && defined(HAVE_SASL_H) #define HAVE_ADS #endif -- cgit