Commit:    e04baf692a6ff9492b42e231f7263f6d13f0f767
Author:    David Soria Parra <d...@php.net>         Thu, 25 Apr 2013 08:04:30 
+0200
Parents:   182fef46a989fa1f8d4ea1a7e3e22040f04e7c51
Branches:  PHP-5.5 master

Link:       
http://git.php.net/?p=php-src.git;a=commitdiff;h=e04baf692a6ff9492b42e231f7263f6d13f0f767

Log:
Fix curl build on windows

Changed paths:
  M  ext/curl/config.w32


Diff:
diff --git a/ext/curl/config.w32 b/ext/curl/config.w32
index a481e29..9657213 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');


--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to