From 0b91485ed5edff920135a287410f2fba3bfa5f3e Mon Sep 17 00:00:00 2001 From: "Frank M. Kromann" Date: Wed, 31 Dec 2003 19:28:31 +0000 Subject: [PATCH] Make sure zlib.lib is found --- ext/gd/config.w32 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/gd/config.w32 b/ext/gd/config.w32 index fe460cc379..939b7b52bd 100644 --- a/ext/gd/config.w32 +++ b/ext/gd/config.w32 @@ -7,7 +7,7 @@ if (PHP_GD != "no") { if (CHECK_LIB("libjpeg.lib", "gd", PHP_GD) && CHECK_LIB("freetype2.lib", "gd", PHP_GD) && CHECK_LIB("libpng.lib", "gd", PHP_GD) && - CHECK_LIB("zlib.lib", "gd", PHP_GD) && + CHECK_LIB("zlib.lib", "gd", PHP_GD + ";..\\zlib;" + php_usual_lib_suspects) && CHECK_HEADER_ADD_INCLUDE("gd.h", "CFLAGS_GD", PHP_GD + ";ext\\gd\\libgd")) { EXTENSION("gd", "gd.c gdttf.c", null, "-Iext/gd/libgd", "php_gd2.dll"); -- 2.50.1