backupkey: Handle more clearly the case where we find the secret, but it has no value
[Samba.git] / third_party / zlib / wscript
blobb221288e6c1927270e5f60c35c13be3035837c1a
1 #!/usr/bin/env python
3 def configure(conf):
4 if conf.CHECK_ZLIB():
5 conf.define('USING_SYSTEM_ZLIB', 1)
7 def build(bld):
8 if bld.CONFIG_SET('USING_SYSTEM_ZLIB'):
9 return
11 bld.SAMBA_LIBRARY('z',
12 private_library=True,
13 deps='replace',
14 allow_warnings=True,
15 source='''adler32.c compress.c crc32.c gzio.c
16 uncompr.c deflate.c trees.c zutil.c
17 inflate.c infback.c inftrees.c inffast.c''')