summaryrefslogtreecommitdiff
path: root/ext/zlib
diff options
context:
space:
mode:
authorWez Furlong <wez@php.net>2004-01-07 20:06:32 +0000
committerWez Furlong <wez@php.net>2004-01-07 20:06:32 +0000
commit48b96c10d2c9efbe4ff11876c6cd9f9361073bc3 (patch)
treef71638754ba0c720f15651f9d797c308f1a623c3 /ext/zlib
parent6e65e1d82106b9aca0a2dcf498df54ffccae7168 (diff)
downloadphp-git-48b96c10d2c9efbe4ff11876c6cd9f9361073bc3.tar.gz
glob-ify lib checks; this simplifies writing of config.w32 files a little.
Diffstat (limited to 'ext/zlib')
-rw-r--r--ext/zlib/config.w322
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/zlib/config.w32 b/ext/zlib/config.w32
index 0a53f5ea0a..2f32a05fe1 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, "ZLIB support");
- CHECK_LIB("zlib.lib", "zlib", "..\\zlib;" + php_usual_lib_suspects);
+ CHECK_LIB("zlib.lib", "zlib", PHP_ZLIB);
CHECK_HEADER_ADD_INCLUDE("zlib.h", "CFLAGS", "..\\zlib;" + php_usual_include_suspects);
}