From a2f4a17b5e005afa1a8b15921e81c42cda6bcec0 Mon Sep 17 00:00:00 2001 From: Günther Deschner Date: Fri, 18 Feb 2011 15:33:25 +0100 Subject: s3-waf: fix popt support. Guenther --- buildtools/wafsamba/samba3.py | 3 +++ 1 file changed, 3 insertions(+) (limited to 'buildtools/wafsamba/samba3.py') diff --git a/buildtools/wafsamba/samba3.py b/buildtools/wafsamba/samba3.py index 6759450f60..9344e55e87 100644 --- a/buildtools/wafsamba/samba3.py +++ b/buildtools/wafsamba/samba3.py @@ -72,6 +72,9 @@ def s3_fix_kwargs(bld, kwargs): if not bld.CONFIG_SET('USING_SYSTEM_TALLOC'): extra_includes += [ '../lib/talloc' ] + if not bld.CONFIG_SET('USING_SYSTEM_POPT'): + extra_includes += [ '../lib/popt' ] + # s3 builds assume that they will have a bunch of extra include paths includes = [] for d in extra_includes: -- cgit