9 # work out what python external libraries we need to install
11 "dns.resolver": "dnspython/dns",
12 "iso8601": "pyiso8601/iso8601",
16 def find_third_party_module(conf, module, package):
17 conf.COMPOUND_START("Checking for third party Python module %s" % module)
23 # Installed on the system
24 conf.COMPOUND_END("system")
28 sys.path.append(os.path.join(conf.curdir, os.path.dirname(package)))
32 if samba_git.has_submodules(conf.srcdir):
33 raise Utils.WafError("""\
34 Unable to find Python module '%s'. Please install the system package or check \
35 out the relevant submodule by running 'git submodule update --init'.
38 raise Utils.WafError("""\
39 Unable to find Python module '%s'. Please install the system package or place a copy in
41 """ % (module, package))
43 conf.COMPOUND_END("bundled")
49 for module, package in external_pkgs.items():
50 find_third_party_module(conf, module, package)
51 conf.RECURSE('cmocka')
54 conf.RECURSE('aesni-intel')
55 if conf.CONFIG_GET('ENABLE_SELFTEST'):
56 conf.RECURSE('socket_wrapper')
57 conf.RECURSE('nss_wrapper')
58 conf.RECURSE('resolv_wrapper')
59 conf.RECURSE('uid_wrapper')
60 if Options.options.with_pam:
61 conf.RECURSE('pam_wrapper')
67 for module, package in external_pkgs.items():
74 bld.INSTALL_WILDCARD('${PYTHONARCHDIR}/samba/third_party', e + '/**/*', flat=False,
75 exclude='*.pyc', trim_path=os.path.dirname(e))
77 bld.SAMBA_GENERATOR('third_party_init_py',
81 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')