diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 17:20:00 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 17:20:00 +0000 |
commit | 8daa83a594a2e98f39d764422bfbdbc62c9efd44 (patch) | |
tree | 4099e8021376c7d8c05bdf8503093d80e9c7bad0 /third_party/wscript | |
parent | Initial commit. (diff) | |
download | samba-8daa83a594a2e98f39d764422bfbdbc62c9efd44.tar.xz samba-8daa83a594a2e98f39d764422bfbdbc62c9efd44.zip |
Adding upstream version 2:4.20.0+dfsg.upstream/2%4.20.0+dfsg
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'third_party/wscript')
-rw-r--r-- | third_party/wscript | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/third_party/wscript b/third_party/wscript new file mode 100644 index 0000000..e95bc31 --- /dev/null +++ b/third_party/wscript @@ -0,0 +1,29 @@ +#!/usr/bin/env python + +from waflib import Options + +def configure(conf): + conf.RECURSE('cmocka') + conf.RECURSE('popt') + if conf.CONFIG_GET('ENABLE_SELFTEST'): + conf.RECURSE('socket_wrapper') + conf.RECURSE('nss_wrapper') + conf.RECURSE('resolv_wrapper') + conf.RECURSE('uid_wrapper') + if Options.options.with_pam: + conf.RECURSE('pam_wrapper') + + +def build(bld): + bld.RECURSE('cmocka') + bld.RECURSE('popt') + if bld.CONFIG_GET('SOCKET_WRAPPER'): + bld.RECURSE('socket_wrapper') + if bld.CONFIG_GET('NSS_WRAPPER'): + bld.RECURSE('nss_wrapper') + if bld.CONFIG_GET('RESOLV_WRAPPER'): + bld.RECURSE('resolv_wrapper') + if bld.CONFIG_GET('UID_WRAPPER'): + bld.RECURSE('uid_wrapper') + if bld.CONFIG_GET('PAM_WRAPPER'): + bld.RECURSE('pam_wrapper') |