tests/py_creds: Add a SamLogonEx test with an empty string domain
[Samba.git] / buildtools / wafsamba / samba_third_party.py
blobac77be74f5ac5050f9aa2466ceb31c59542967e2
1 # functions to support third party libraries
3 import os
4 import Utils, Build
5 from Configure import conf
7 @conf
8 def CHECK_FOR_THIRD_PARTY(conf):
9 return os.path.exists(os.path.join(Utils.g_module.srcdir, 'third_party'))
11 Build.BuildContext.CHECK_FOR_THIRD_PARTY = CHECK_FOR_THIRD_PARTY
13 @conf
14 def CHECK_ZLIB(conf):
15 version_check='''
16 #if (ZLIB_VERNUM >= 0x1230)
17 #else
18 #error "ZLIB_VERNUM < 0x1230"
19 #endif
20 z_stream *z;
21 inflateInit2(z, -15);
22 '''
23 return conf.CHECK_BUNDLED_SYSTEM('z', minversion='1.2.3', pkg='zlib',
24 checkfunctions='zlibVersion',
25 headers='zlib.h',
26 checkcode=version_check,
27 implied_deps='replace')
29 Build.BuildContext.CHECK_ZLIB = CHECK_ZLIB
31 @conf
32 def CHECK_POPT(conf):
33 return conf.CHECK_BUNDLED_SYSTEM('popt', checkfunctions='poptGetContext', headers='popt.h')
35 Build.BuildContext.CHECK_POPT = CHECK_POPT
37 @conf
38 def CHECK_CMOCKA(conf):
39 return conf.CHECK_BUNDLED_SYSTEM_PKG('cmocka', minversion='1.1.1')
41 Build.BuildContext.CHECK_CMOCKA = CHECK_CMOCKA