From 3e017464201818d940128ca47b5c4f2703a23d63 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Mon, 29 Mar 2010 17:20:39 +1100 Subject: ldb-waf: ldb needs HAVE_CONFIG_H for building a bundled popt --- source4/lib/ldb/wscript | 2 ++ 1 file changed, 2 insertions(+) (limited to 'source4/lib') diff --git a/source4/lib/ldb/wscript b/source4/lib/ldb/wscript index ffbb68e4b8..a7419e1981 100644 --- a/source4/lib/ldb/wscript +++ b/source4/lib/ldb/wscript @@ -37,6 +37,8 @@ def configure(conf): # we need this for the ldap backend conf.CHECK_FUNCS_IN('ber_flush ldap_open', 'lber ldap', headers='lber.h ldap.h', mandatory=True) + conf.DEFINE('HAVE_CONFIG_H', 1, add_to_cflags=True) + conf.SAMBA_CONFIG_H() def build(bld): -- cgit