mirror of
https://github.com/php/php-src.git
synced 2024-11-28 04:14:26 +08:00
Add CURL_WRAPPERS_ENABLE constant
see http://news.php.net/php.internals/66871
This commit is contained in:
parent
7b07d05917
commit
d7f709a032
3
NEWS
3
NEWS
@ -5,6 +5,9 @@ PHP NEWS
|
||||
. Fixed bug #64433 (follow_location parameter of context is ignored for most
|
||||
response codes). (Sergey Akbarov)
|
||||
|
||||
- CURL
|
||||
. Add CURL_WRAPPERS_ENABLE constant. (Laruence)
|
||||
|
||||
?? ??? 2013, PHP 5.4.14
|
||||
- Core:
|
||||
. Fixed bug #64529 (Ran out of opcode space). (Dmitry)
|
||||
|
@ -914,6 +914,7 @@ PHP_MINIT_FUNCTION(curl)
|
||||
}
|
||||
|
||||
#ifdef PHP_CURL_URL_WRAPPERS
|
||||
REGISTER_LONG_CONSTANT("CURL_WRAPPERS_ENABLE", 1, CONST_CS | CONST_PERSISTENT);
|
||||
# if HAVE_CURL_VERSION_INFO
|
||||
{
|
||||
curl_version_info_data *info = curl_version_info(CURLVERSION_NOW);
|
||||
@ -940,6 +941,8 @@ PHP_MINIT_FUNCTION(curl)
|
||||
php_unregister_url_stream_wrapper("ldap");
|
||||
php_register_url_stream_wrapper("ldap", &php_curl_wrapper TSRMLS_CC);
|
||||
# endif
|
||||
#else
|
||||
REGISTER_LONG_CONSTANT("CURL_WRAPPERS_ENABLE", 0, CONST_CS | CONST_PERSISTENT);
|
||||
#endif
|
||||
|
||||
return SUCCESS;
|
||||
|
Loading…
Reference in New Issue
Block a user