diff options
Diffstat (limited to 'ext/zlib/config.w32')
-rw-r--r-- | ext/zlib/config.w32 | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/ext/zlib/config.w32 b/ext/zlib/config.w32 new file mode 100644 index 0000000000..99790cd3c4 --- /dev/null +++ b/ext/zlib/config.w32 @@ -0,0 +1,12 @@ +// $Id$ +// vim:ft=javascript + +ARG_ENABLE("zlib", "ZLIB support", "yes"); + +if (PHP_ZLIB == "yes") { + EXTENSION("zlib", "zlib.c zlib_fopen_wrapper.c", null, "/D ZLIB_EXPORTS"); + AC_DEFINE("HAVE_ZLIB", 1, "Tokenizer support"); + ADD_FLAG("LIBS_ZLIB", "zlib.lib"); +} + + |