mirror of
https://github.com/samba-team/samba.git
synced 2024-12-27 03:21:53 +03:00
a509b93518
This will avoid problems with redefinition of libs tests
32 lines
1.1 KiB
Python
32 lines
1.1 KiB
Python
#!/usr/bin/env python
|
|
|
|
def configure(conf):
|
|
conf.CHECK_HEADERS('zlib.h')
|
|
conf.CHECK_FUNCS_IN('zlibVersion', 'z')
|
|
|
|
conf.CHECK_CODE('''
|
|
#if (ZLIB_VERNUM >= 0x1230)
|
|
#else
|
|
#error "ZLIB_VERNUM < 0x1230"
|
|
#endif
|
|
''',
|
|
headers='zlib.h',
|
|
local_include=False,
|
|
msg='Checking for ZLIB_VERNUM >= 0x1230',
|
|
define='HAVE_ZLIB')
|
|
|
|
# If we don't do this then we will receive an error that lib 'z'
|
|
# is already declared as a system lib (for the cases where zlibVersion
|
|
# is defined
|
|
if not conf.env['HAVE_ZLIB']:
|
|
conf.LOCAL_CACHE_SET('TARGET_TYPE', 'z', 'EMPTY')
|
|
|
|
def build(bld):
|
|
if not bld.CONFIG_SET('HAVE_ZLIB'):
|
|
bld.SAMBA_LIBRARY('z',
|
|
private_library=True,
|
|
deps='replace',
|
|
source='''adler32.c compress.c crc32.c gzio.c
|
|
uncompr.c deflate.c trees.c zutil.c
|
|
inflate.c infback.c inftrees.c inffast.c''')
|