summaryrefslogtreecommitdiff
path: root/wscript
diff options
context:
space:
mode:
authorAndreas Schneider <asn@samba.org>2017-11-07 11:40:11 +0100
committerAndreas Schneider <asn@cryptomilk.org>2017-11-25 10:14:13 +0100
commit5d2b5e98485430ff0e07cd389609ccde0cd13975 (patch)
tree6999a2d669874931679cdfcafb00ea8713ab86d2 /wscript
parent22bf36c85ae11cd280a58729348c76032910dc16 (diff)
downloadsamba-5d2b5e98485430ff0e07cd389609ccde0cd13975.tar.gz
build: Move nss_wrapper to third_party
Signed-off-by: Andreas Schneider <asn@samba.org> Reviewed-by: Alexander Bokovoy <ab@samba.org>
Diffstat (limited to 'wscript')
-rw-r--r--wscript6
1 files changed, 5 insertions, 1 deletions
diff --git a/wscript b/wscript
index f7bdb1f3d39..30cf0251738 100644
--- a/wscript
+++ b/wscript
@@ -161,6 +161,11 @@ def configure(conf):
else:
conf.define('USING_SYSTEM_SOCKET_WRAPPER', 1)
+ if not conf.CHECK_NSS_WRAPPER():
+ raise Utils.WafError('nss_wrapper package has not been found.\nIf third_party is installed, check that it is in the proper place.')
+ else:
+ conf.define('USING_SYSTEM_NSS_WRAPPER', 1)
+
conf.RECURSE('lib/ldb')
if not (Options.options.without_ad_dc):
@@ -189,7 +194,6 @@ def configure(conf):
conf.RECURSE('lib/crypto')
conf.RECURSE('pidl')
if conf.CONFIG_GET('ENABLE_SELFTEST'):
- conf.RECURSE('lib/nss_wrapper')
conf.RECURSE('lib/resolv_wrapper')
conf.RECURSE('lib/uid_wrapper')
if Options.options.with_pam: