summaryrefslogtreecommitdiff
path: root/wscript
diff options
context:
space:
mode:
authorAndreas Schneider <asn@samba.org>2017-11-24 13:34:25 +0100
committerAndreas Schneider <asn@cryptomilk.org>2017-11-25 10:14:13 +0100
commit8635465d77496e882ca73477690bbd20d877a197 (patch)
tree6af1d731f589e20de0efd489a0b5b565a6f022f8 /wscript
parent6fbc8b810e094b946b92fb720953400fe28041ab (diff)
downloadsamba-8635465d77496e882ca73477690bbd20d877a197.tar.gz
build: Move pam_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--wscript7
1 files changed, 5 insertions, 2 deletions
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)