6 from waflib
import Options
, Errors
8 # work out what python external libraries we need to install
10 "iso8601": "pyiso8601/iso8601",
14 def find_third_party_module(conf
, module
, package
):
15 conf
.COMPOUND_START("Checking for third party Python module %s" % module
)
21 # Installed on the system
22 conf
.COMPOUND_END("system")
26 sys
.path
.append(os
.path
.join(conf
.path
.abspath(), os
.path
.dirname(package
)))
30 if samba_git
.has_submodules(conf
.srcnode
.abspath()):
31 raise Errors
.WafError("""\
32 Unable to find Python module '%s'. Please install the system package or check \
33 out the relevant submodule by running 'git submodule update --init'.
36 raise Errors
.WafError("""\
37 Unable to find Python module '%s'. Please install the system package or place a copy in
39 """ % (module
, package
))
41 conf
.COMPOUND_END("bundled")
47 for module
, package
in external_pkgs
.items():
48 find_third_party_module(conf
, module
, package
)
49 conf
.RECURSE('cmocka')
52 conf
.RECURSE('aesni-intel')
53 if conf
.CONFIG_GET('ENABLE_SELFTEST'):
54 conf
.RECURSE('socket_wrapper')
55 conf
.RECURSE('nss_wrapper')
56 conf
.RECURSE('resolv_wrapper')
57 conf
.RECURSE('uid_wrapper')
58 if Options
.options
.with_pam
:
59 conf
.RECURSE('pam_wrapper')
63 if not bld
.env
.disable_python
:
66 for module
, package
in external_pkgs
.items():
73 bld
.INSTALL_WILDCARD('${PYTHONARCHDIR}/samba/third_party', e
+ '/**/*', flat
=False,
74 exclude
='*.pyc', trim_path
=os
.path
.dirname(e
))
76 bld
.SAMBA_GENERATOR('third_party_init_py',
80 bld
.INSTALL_FILES('${PYTHONARCHDIR}/samba/third_party', 'empty_file', destname
='__init__.py')
85 bld
.RECURSE('aesni-intel')
86 if bld
.CONFIG_GET('SOCKET_WRAPPER'):
87 bld
.RECURSE('socket_wrapper')
88 if bld
.CONFIG_GET('NSS_WRAPPER'):
89 bld
.RECURSE('nss_wrapper')
90 if bld
.CONFIG_GET('RESOLV_WRAPPER'):
91 bld
.RECURSE('resolv_wrapper')
92 if bld
.CONFIG_GET('UID_WRAPPER'):
93 bld
.RECURSE('uid_wrapper')
94 if bld
.CONFIG_GET('PAM_WRAPPER'):
95 bld
.RECURSE('pam_wrapper')