diff options
author | Wez Furlong <wez@php.net> | 2003-12-05 20:17:47 +0000 |
---|---|---|
committer | Wez Furlong <wez@php.net> | 2003-12-05 20:17:47 +0000 |
commit | 952e0db997caa3114bac77fcf5a012ad8c1c8796 (patch) | |
tree | ebcb43d609439c604332aa1c8ea103d005e87de4 /ext/zlib | |
parent | 29e47dc7e42ef5d333b26acf4277cd38e5c2848f (diff) | |
download | php-git-952e0db997caa3114bac77fcf5a012ad8c1c8796.tar.gz |
Use Rob's static libxml+libiconv library; new build no longer
requires libxml2.dll or iconv.dll at runtime.
Since we have iconv built in, enable iconv extension by
default too.
Diffstat (limited to 'ext/zlib')
-rw-r--r-- | ext/zlib/config.w32 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/zlib/config.w32 b/ext/zlib/config.w32 index 5159696fd1..72e0ac06ab 100644 --- a/ext/zlib/config.w32 +++ b/ext/zlib/config.w32 @@ -6,7 +6,7 @@ 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"); - CHECK_LIB("zlib.lib", "zlib", "..\\zlib;" + php_usual_lib_suspects); + CHECK_LIB("zlib_a;zlib.lib", "zlib", "..\\zlib;" + php_usual_lib_suspects); CHECK_HEADER_ADD_INCLUDE("zlib.h", "CFLAGS", "..\\zlib;" + php_usual_include_suspects); } |