From: Felipe Pena Date: Wed, 10 Mar 2010 22:58:46 +0000 (+0000) Subject: - Fixed bug #51257 (CURL_VERSION_LARGEFILE incorrectly used after libcurl version... X-Git-Tag: php-5.4.0alpha1~191^2~1872 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=51de55b6e6633661600c03b53b55fb361ba1b4d7;p=php - Fixed bug #51257 (CURL_VERSION_LARGEFILE incorrectly used after libcurl version 7.10.1) patch by: aron dot ujvari at microsec dot hu --- diff --git a/ext/curl/interface.c b/ext/curl/interface.c index 150a2c24ef..483a088f86 100644 --- a/ext/curl/interface.c +++ b/ext/curl/interface.c @@ -370,7 +370,7 @@ PHP_MINFO_FUNCTION(curl) #ifdef CURL_VERSION_IPV6 {"IPv6", CURL_VERSION_IPV6}, #endif -#if LIBCURL_VERSION_NUM > 0x070a09 /* 7.10.1 */ +#if LIBCURL_VERSION_NUM > 0x070b00 /* 7.11.1 */ {"Largefile", CURL_VERSION_LARGEFILE}, #endif #if LIBCURL_VERSION_NUM > 0x070a05 /* 7.10.6 */