diff options
author | Pierre Joye <pajoye@php.net> | 2009-04-23 08:46:37 +0000 |
---|---|---|
committer | Pierre Joye <pajoye@php.net> | 2009-04-23 08:46:37 +0000 |
commit | b7747cf30c7d79ba20030d4dc9b8d897c9d1400c (patch) | |
tree | caf091a61ab269aa9946f02489f7577da2e495a5 | |
parent | 9e8a9e8bf12ce96ebadbbd753f01e7ad7fdf2b5a (diff) | |
download | php-git-b7747cf30c7d79ba20030d4dc9b8d897c9d1400c.tar.gz |
- c/p error
-rw-r--r-- | ext/curl/config.w32 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/curl/config.w32 b/ext/curl/config.w32 index 33e5ad75f2..de92bff7aa 100644 --- a/ext/curl/config.w32 +++ b/ext/curl/config.w32 @@ -10,8 +10,8 @@ if (PHP_CURL != "no") { CHECK_LIB("libeay32.lib", "curl", PHP_CURL) && CHECK_LIB("winmm.lib", "curl", PHP_CURL) && CHECK_LIB("wldap32.lib", "curl", PHP_CURL) - && (((PHP_ZLIB=="no") && (CHECK_LIB("zlib_a.lib", "zip", PHP_ZIP) || CHECK_LIB("zlib.lib", "zip", PHP_ZIP))) || - (PHP_ZLIB_SHARED && CHECK_LIB("zlib.lib", "zip", PHP_ZIP)) || (PHP_ZLIB == "yes" && (!PHP_ZLIB_SHARED))) + && (((PHP_ZLIB=="no") && (CHECK_LIB("zlib_a.lib", "curl", PHP_ZIP) || CHECK_LIB("zlib.lib", "curl", PHP_ZIP))) || + (PHP_ZLIB_SHARED && CHECK_LIB("zlib.lib", "curl", PHP_ZIP)) || (PHP_ZLIB == "yes" && (!PHP_ZLIB_SHARED))) ) { EXTENSION("curl", "interface.c multi.c streams.c", true); AC_DEFINE('HAVE_CURL', 1, 'Have cURL library'); |