From ac65070490c9a6e46bd45665daa15cdc164b3748 Mon Sep 17 00:00:00 2001 From: Andreas Schneider Date: Tue, 7 Nov 2017 11:55:04 +0100 Subject: build: Move resolv_wrapper to third_party Signed-off-by: Andreas Schneider Reviewed-by: Alexander Bokovoy --- wscript | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'wscript') diff --git a/wscript b/wscript index 30cf0251738..771555a1c04 100644 --- a/wscript +++ b/wscript @@ -166,6 +166,11 @@ def configure(conf): else: conf.define('USING_SYSTEM_NSS_WRAPPER', 1) + if not conf.CHECK_RESOLV_WRAPPER(): + raise Utils.WafError('resolv_wrapper package has not been found.\nIf third_party is installed, check that it is in the proper place.') + else: + conf.define('USING_SYSTEM_RESOLV_WRAPPER', 1) + conf.RECURSE('lib/ldb') if not (Options.options.without_ad_dc): @@ -194,7 +199,6 @@ def configure(conf): conf.RECURSE('lib/crypto') conf.RECURSE('pidl') if conf.CONFIG_GET('ENABLE_SELFTEST'): - conf.RECURSE('lib/resolv_wrapper') conf.RECURSE('lib/uid_wrapper') if Options.options.with_pam: conf.RECURSE('lib/pam_wrapper') -- cgit v1.2.1