diff options
author | Jani Taskinen <jani@php.net> | 2010-11-18 10:43:01 +0000 |
---|---|---|
committer | Jani Taskinen <jani@php.net> | 2010-11-18 10:43:01 +0000 |
commit | 6791197b3100580b465a028b320c406d186322dd (patch) | |
tree | 2c196c3e961185fef06be9b6b6cee0aa3447e960 | |
parent | 9ef050ca648babb4135c72e28e52afb7544bdde4 (diff) | |
download | php-git-6791197b3100580b465a028b320c406d186322dd.tar.gz |
- Added section for build system changes in UPGRADING.INTERNALS
-rwxr-xr-x | UPGRADING | 4 | ||||
-rw-r--r-- | UPGRADING.INTERNALS | 38 |
2 files changed, 38 insertions, 4 deletions
@@ -224,10 +224,6 @@ UPGRADE NOTES - PHP X.Y 9. Changes in SAPI support ========================== -- When adding new binary SAPI (executable, like CLI/CGI/FPM) use CLI - config.m4 and Makefile.frag files as templates and replace CLI/cli with - your SAPI name. - - The REQUEST_TIME value inside server now returns a floating point number indicating the time with microsecond precision. All SAPIs providing this value should be returning float and not time_t. diff --git a/UPGRADING.INTERNALS b/UPGRADING.INTERNALS index c58b8d2394..a230a4db26 100644 --- a/UPGRADING.INTERNALS +++ b/UPGRADING.INTERNALS @@ -12,6 +12,11 @@ UPGRADE NOTES - PHP X.Y g. leak_variable h. API Signature changes +2. Build system changes + a. Unix build system changes + b. Windows build system changes + + ======================== 1. Internal API changes ======================== @@ -22,6 +27,7 @@ virtual_file_ex takes now a TSRM context as last parameter: CWD_API int virtual_file_ex(cwd_state *state, const char *path, verify_path_func verify_path, int use_realpath TSRLS_DC); + b. stat/lstat support lstat is now available on all platforms. On unix-like platform @@ -29,6 +35,7 @@ php_sys_lstat is an alias to lstat (when avaible). On Windows it is now available using php_sys_lstat. php_sys_stat and php_sys_lstat usage is recommended instead of calling lstat directly, to ensure portability. + c. readlink support readlink is now available on all platforms. On unix-like platform @@ -36,6 +43,7 @@ php_sys_readlink is an alias to readlink (when avaible). On Windows it is now available using php_sys_readlink. php_sys_readlink usage is recommended instead of calling readlink directly, to ensure portability. + d. layout of some core ZE structures (zend_op_array, zend_class_entry, ...) . zend_function.pass_rest_by_reference is replaced by @@ -59,7 +67,9 @@ instead of calling readlink directly, to ensure portability. by different information for internal and user classes. See zend_class_inttry.info union. + e. Zend\zend_fast_cache.h + It should not have been used anymore since php5, but now this header has been removed. The following macros are not available anymore: @@ -70,7 +80,9 @@ ZEND_FAST_FREE_REL(p, fc_type) Use emalloc, emalloc_rel, efree or efree_rel instead. + f. Streams that enclose private streams + Some streams, like the temp:// stream, may enclose private streams. If the outer stream leaks due to a programming error or is not exposed through a zval (and therefore is not deleted when all the zvals are gone), it will @@ -111,13 +123,17 @@ stream or clear the enclosing_stream pointer in its enclosed stream by calling php_stream_encloses with the 2nd argument NULL. If this is not done, there will be problems, so observe this requirement when using php_stream_encloses. + g. leak_variable + The function leak_variable(variable [, leak_data]) was added. It is only available on debug builds. It increments the refcount of a zval or, if the second argument is true and the variable is either an object or a resource it increments the refcounts of those objects instead. + h. API Signature changes + . zend_list_insert ZEND_API int zend_list_insert(void *ptr, int type TSRMLS_DC); call: zend_list_insert(a, SOMETYPE TSRMLS_CC); @@ -131,6 +147,10 @@ it increments the refcounts of those objects instead. . php_stream_context_alloc PHPAPI php_stream_context *php_stream_context_alloc(TSRMLS_D); call: context = php_stream_context_alloc(TSRMLS_C); + +. sapi_get_request_time(TSRMLS_D); + SAPI_API double sapi_get_request_time(TSRMLS_D); + . sapi_register_default_post_reader SAPI_API int sapi_register_default_post_reader(void (*default_post_reader)(TSRMLS_D) TSRMLS_DC); @@ -163,3 +183,21 @@ it increments the refcounts of those objects instead. . php_unescape_html_entities PHPAPI char *php_unescape_html_entities(unsigned char *old, size_t oldlen, size_t *newlen, int all, int flags, char *hint_charset TSRMLS_DC); + + +======================== +2. Build system changes +======================== + + a. Unix build system changes + + - Changes in SAPI module build: + . When adding new binary SAPI (executable, like CLI/CGI/FPM) use CLI config.m4 and Makefile.frag files as templates and replace CLI/cli with your SAPI name. + + - New macros: + . PHP_INIT_DTRACE(providerdesc, header-file, sources [, module]) + + + b. Windows build system changes + - + |