diff options
author | Stefan Metzmacher <metze@samba.org> | 2010-04-23 08:11:44 +0200 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2010-04-24 13:19:23 +0200 |
commit | 92449412dcb1c809689eebd0ab7e2ebee3de6fbf (patch) | |
tree | e86f04e802062757a7bf780da807bd59436c2634 /lib | |
parent | 4c7cc8bb6303e9f976cdb87e2c00849ac46f8f02 (diff) | |
download | samba-92449412dcb1c809689eebd0ab7e2ebee3de6fbf.tar.gz |
lib/zlib/wscript: fix system zlib detection
metze
Diffstat (limited to 'lib')
-rw-r--r-- | lib/zlib/wscript | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/zlib/wscript b/lib/zlib/wscript index ab6e7fba4b..6f0d4f7989 100644 --- a/lib/zlib/wscript +++ b/lib/zlib/wscript @@ -10,6 +10,9 @@ def configure(conf): #error "ZLIB_VERNUM < 0x1230" #endif ''', + headers='zlib.h', + local_include=False, + msg='Checking for ZLIB_VERNUM >= 0x1230', define='HAVE_ZLIB') def build(bld): |