diff options
author | David Soria Parra <dsp@php.net> | 2013-04-25 08:04:30 +0200 |
---|---|---|
committer | David Soria Parra <dsp@php.net> | 2013-04-25 08:04:30 +0200 |
commit | e04baf692a6ff9492b42e231f7263f6d13f0f767 (patch) | |
tree | 6f772ab3bf8a4b0e75ad1cbe1beefef36c392652 /ext/curl | |
parent | 182fef46a989fa1f8d4ea1a7e3e22040f04e7c51 (diff) | |
download | php-git-e04baf692a6ff9492b42e231f7263f6d13f0f767.tar.gz |
Fix curl build on windows
Diffstat (limited to 'ext/curl')
-rw-r--r-- | ext/curl/config.w32 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/curl/config.w32 b/ext/curl/config.w32 index a481e29486..965721318e 100644 --- a/ext/curl/config.w32 +++ b/ext/curl/config.w32 @@ -13,7 +13,7 @@ if (PHP_CURL != "no") { && (((PHP_ZLIB=="no") && (CHECK_LIB("zlib_a.lib;zlib.lib", "curl", PHP_CURL))) || (PHP_ZLIB_SHARED && CHECK_LIB("zlib.lib", "curl", PHP_CURL)) || (PHP_ZLIB == "yes" && (!PHP_ZLIB_SHARED))) ) { - EXTENSION("curl", "interface.c multi.c share.c streams.c curl_file.c", true); + EXTENSION("curl", "interface.c multi.c share.c curl_file.c", true); AC_DEFINE('HAVE_CURL', 1, 'Have cURL library'); AC_DEFINE('HAVE_CURL_SSL', 1, 'Have SSL suppurt in cURL'); AC_DEFINE('HAVE_CURL_EASY_STRERROR', 1, 'Have curl_easy_strerror in cURL'); |