From 8635465d77496e882ca73477690bbd20d877a197 Mon Sep 17 00:00:00 2001 From: Andreas Schneider Date: Fri, 24 Nov 2017 13:34:25 +0100 Subject: build: Move pam_wrapper to third_party Signed-off-by: Andreas Schneider Reviewed-by: Alexander Bokovoy --- wscript | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'wscript') diff --git a/wscript b/wscript index 7dbaa90e773..b1671022be1 100644 --- a/wscript +++ b/wscript @@ -176,6 +176,11 @@ def configure(conf): else: conf.define('USING_SYSTEM_UID_WRAPPER', 1) + if not conf.CHECK_PAM_WRAPPER(): + raise Utils.WafError('pam_wrapper package has not been found.\nIf third_party is installed, check that it is in the proper place.') + else: + conf.define('USING_SYSTEM_PAM_WRAPPER', 1) + conf.RECURSE('lib/ldb') if not (Options.options.without_ad_dc): @@ -204,8 +209,6 @@ def configure(conf): conf.RECURSE('lib/crypto') conf.RECURSE('pidl') if conf.CONFIG_GET('ENABLE_SELFTEST'): - if Options.options.with_pam: - conf.RECURSE('lib/pam_wrapper') if Options.options.with_ntvfs_fileserver != False: if not (Options.options.without_ad_dc): conf.DEFINE('WITH_NTVFS_FILESERVER', 1) -- cgit v1.2.1