mirror of
https://github.com/samba-team/samba.git
synced 2024-12-25 23:21:54 +03:00
92449412dc
metze
27 lines
905 B
Python
27 lines
905 B
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')
|
|
|
|
def build(bld):
|
|
if bld.CONFIG_SET('HAVE_ZLIB'):
|
|
bld.TARGET_ALIAS('z', 'ZLIB')
|
|
else:
|
|
bld.SAMBA_LIBRARY('ZLIB',
|
|
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''')
|