param: rename szPrintcapName -> printcap_name
[Samba.git] / buildtools / wafsamba / samba_third_party.py
blob46a1b9423a6918515fa01332b1016c6cadef9573
1 # functions to support third party libraries
3 from Configure import conf
4 import sys, Logs, os
5 from samba_bundled import *
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