mirror of
https://github.com/samba-team/samba.git
synced 2025-02-23 09:57:40 +03:00
24 lines
764 B
Python
24 lines
764 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
|
|
''',
|
|
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''')
|