From b8eaa57a100818d337c85ac42828801a59062587 Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Fri, 21 Sep 2012 21:57:22 -0700 Subject: build: Try not build with LDAP if we do not have ldap.h --- source3/wscript | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source3/wscript') diff --git a/source3/wscript b/source3/wscript index d0e76f3617..23ea327d0b 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' -- cgit