From: Andrew Bartlett Date: Sat, 22 Sep 2012 04:57:22 +0000 (-0700) Subject: build: Try not build with LDAP if we do not have ldap.h X-Git-Tag: talloc-2.0.8~234 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=b8eaa57a100818d337c85ac42828801a59062587;p=thirdparty%2Fsamba.git build: Try not build with LDAP if we do not have ldap.h --- diff --git a/source3/wscript b/source3/wscript index d0e76f36178..23ea327d0b3 100644 --- a/source3/wscript +++ b/source3/wscript @@ -541,7 +541,7 @@ msg.msg_acctrightslen = sizeof(fd); conf.DEFINE('LDAP_SET_REBIND_PROC_ARGS', '2') # last but not least, if ldap_init() exists, we want to use ldap - if conf.CONFIG_SET('HAVE_LDAP_INIT'): + if conf.CONFIG_SET('HAVE_LDAP_INIT') and conf.CONFIG_SET('HAVE_LDAP_H'): conf.DEFINE('HAVE_LDAP', '1') conf.DEFINE('LDAP_DEPRECATED', '1') conf.env['HAVE_LDAP'] = '1'