From 872f499c55ac13befb357d3e8eca0f526ea14978 Mon Sep 17 00:00:00 2001 From: Michael Adam Date: Tue, 30 Oct 2012 14:43:42 +0100 Subject: build(waf): fix the cluster(ctdb) build without system talloc installed MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This is analogous to the earlier patch for tdb. It temporarily adds the talloc include path to the includes search list for the ctdb-header configure checks. Signed-off-by: Michael Adam Tested-by: Björn Baumbach --- source3/wscript | 3 +++ 1 file changed, 3 insertions(+) (limited to 'source3/wscript') diff --git a/source3/wscript b/source3/wscript index 9db03ec6e3..5cbfd35f2a 100644 --- a/source3/wscript +++ b/source3/wscript @@ -1305,6 +1305,9 @@ main() { if not conf.env.USING_SYSTEM_TDB: includes = includes + ' ' + srcdir + '/lib/tdb/include' + if not conf.env.USING_SYSTEM_TALLOC: + includes = includes + ' ' + srcdir + '/lib/talloc' + have_cluster_support = True ctdb_broken = "" -- cgit