mirror of
https://github.com/php/php-src.git
synced 2024-11-24 10:24:11 +08:00
killed warning + added reminder
This commit is contained in:
parent
337bcc7014
commit
a04805ce88
2
TODO
2
TODO
@ -3,6 +3,8 @@ parenthesis means that person has taken on this project.
|
|||||||
|
|
||||||
global
|
global
|
||||||
------
|
------
|
||||||
|
* make sure that all ZTS globals get destructed. Most ts_allocate_id()
|
||||||
|
calls should have a dtor entry.
|
||||||
* activate all extensions by default that don't rely on external
|
* activate all extensions by default that don't rely on external
|
||||||
dependices. (eg ftp)
|
dependices. (eg ftp)
|
||||||
* --enable-all in configure. (--enable-shared=max ...)
|
* --enable-all in configure. (--enable-shared=max ...)
|
||||||
|
@ -164,7 +164,7 @@ PHP_MINIT_FUNCTION(xml)
|
|||||||
le_xml_parser = register_list_destructors(xml_parser_dtor, NULL);
|
le_xml_parser = register_list_destructors(xml_parser_dtor, NULL);
|
||||||
|
|
||||||
#ifdef ZTS
|
#ifdef ZTS
|
||||||
xml_globals_id = ts_allocate_id(sizeof(php_xml_globals), php_xml_init_globals, NULL);
|
xml_globals_id = ts_allocate_id(sizeof(php_xml_globals), (ts_allocate_ctor) php_xml_init_globals, NULL);
|
||||||
#else
|
#else
|
||||||
XML(default_encoding) = "ISO-8859-1";
|
XML(default_encoding) = "ISO-8859-1";
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
Reference in New Issue
Block a user