From 15babe7715399e2e1ba6c0d8f190dbe5c7f1d82c Mon Sep 17 00:00:00 2001 From: Date: Sat, 6 Jun 2009 01:33:00 +0000 Subject: [PATCH] ChangeLog update --- ChangeLog | 106 +++++++++++++++++++++++++++++++++++++++++++++++++ Zend/ChangeLog | 63 +++++++++++++++++++++++++++++ 2 files changed, 169 insertions(+) diff --git a/ChangeLog b/ChangeLog index 627b46268e..964cf09f08 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,109 @@ +2009-06-05 Brian Shire + + * (PHP_5_3) + ZendEngine2/zend_compile.h + ZendEngine2/zend_opcode.c: + MFH: Make pass_two visible to extensions with ZEND_API (required for + optimizer). + + * ZendEngine2/zend_compile.h + ZendEngine2/zend_opcode.c: + Make pass_two visible to extensions with ZEND_API (required for optimizer). + +2009-06-05 Rasmus Lerdorf + + * (PHP_5_2) + ext/date/php_date.c: + Make this happy on gcc2 + + * (PHP_5_2) + ZendEngine2/zend.h: + We don't have these in gcc2 + + * ZendEngine2/zend.h: + No always_inline attribute in gcc2 + + * (PHP_5_3) + ZendEngine2/zend.h: + There is no always_inline attribute in gcc2 + +2009-06-05 Matt Wilmas + + * (PHP_5_3) + ZendEngine2/zend_builtin_functions.c + ZendEngine2/zend_execute.h + ZendEngine2/zend_execute_API.c + ext/interbase/php_ibase_udf.c + ext/mbstring/php_mbregex.c + ext/pcre/php_pcre.c + ext/standard/assert.c + sapi/cli/php_cli.c: + MFH: Added zend_eval_stringl and made create_function(), etc. binary-safe + + * ZendEngine2/zend_builtin_functions.c + ZendEngine2/zend_execute.h + ZendEngine2/zend_execute_API.c + ext/interbase/php_ibase_udf.c + ext/mbstring/php_mbregex.c + ext/pcre/php_pcre.c + ext/standard/assert.c + sapi/cli/php_cli.c: + Added zend_eval_stringl and made create_function(), etc. binary-safe + + * (PHP_5_3) + ext/standard/tests/array/array_slice_variation2.phpt + ext/standard/tests/array/array_slice_variation3.phpt + ext/standard/tests/math/decbin_variation1_64bit.phpt + ext/standard/tests/math/dechex_variation1_64bit.phpt + ext/standard/tests/math/decoct_variation1_64bit.phpt: + MFH: Fixed tests again after double->long conversion change (to match 5.2) + + * ext/standard/tests/array/array_slice_variation2.phpt + ext/standard/tests/array/array_slice_variation3.phpt + ext/standard/tests/math/decbin_variation1_64bit.phpt + ext/standard/tests/math/dechex_variation1_64bit.phpt + ext/standard/tests/math/decoct_variation1_64bit.phpt: + Fixed tests again after double->long conversion change (to match 5.2) + +2009-06-05 Arnaud Le Blanc + + * (PHP_5_2) + ZendEngine2/zend_execute.h + ZendEngine2/zend_ptr_stack.h + ZendEngine2/zend_types.h + ZendEngine2/zend_vm_def.h + ZendEngine2/zend_vm_execute.h: + better fix for #48409 , #48428 , #48228 + + * (PHP_5_3) + ZendEngine2/zend_execute.h + ZendEngine2/zend_ptr_stack.h + ZendEngine2/zend_types.h + ZendEngine2/zend_vm_def.h + ZendEngine2/zend_vm_execute.h: + MFH: better fix for #48409 , #48428 , #48228 + + * ZendEngine2/zend_execute.h + ZendEngine2/zend_ptr_stack.h + ZendEngine2/zend_types.h + ZendEngine2/zend_vm_def.h + ZendEngine2/zend_vm_execute.h: + better fix for #48409 , #48428 , #48228 + +2009-06-05 Greg Beaver + + * (PHP_5_3) + NEWS + ext/phar/phar_object.c + ext/phar/tests/phar_oo_011.phpt: + MFH: fixed isset() on sub-directories (isset("blah") if file "blah/foo.php" + exists) + + * ext/phar/phar_object.c + ext/phar/tests/phar_oo_011.phpt: + fixed isset() on sub-directories (isset('blah') if file 'blah/foo.php' + exists) + 2009-06-04 Greg Beaver * (PHP_5_3) diff --git a/Zend/ChangeLog b/Zend/ChangeLog index a514c5efb9..79cc49240b 100644 --- a/Zend/ChangeLog +++ b/Zend/ChangeLog @@ -1,3 +1,66 @@ +2009-06-05 Brian Shire + + * (PHP_5_3) + zend_compile.h + zend_opcode.c: + MFH: Make pass_two visible to extensions with ZEND_API (required for + optimizer). + + * zend_compile.h + zend_opcode.c: + Make pass_two visible to extensions with ZEND_API (required for optimizer). + +2009-06-05 Rasmus Lerdorf + + * (PHP_5_2) + zend.h: + We don't have these in gcc2 + + * zend.h: + No always_inline attribute in gcc2 + + * (PHP_5_3) + zend.h: + There is no always_inline attribute in gcc2 + +2009-06-05 Matt Wilmas + + * (PHP_5_3) + zend_builtin_functions.c + zend_execute.h + zend_execute_API.c: + MFH: Added zend_eval_stringl and made create_function(), etc. binary-safe + + * zend_builtin_functions.c + zend_execute.h + zend_execute_API.c: + Added zend_eval_stringl and made create_function(), etc. binary-safe + +2009-06-05 Arnaud Le Blanc + + * (PHP_5_2) + zend_execute.h + zend_ptr_stack.h + zend_types.h + zend_vm_def.h + zend_vm_execute.h: + better fix for #48409 , #48428 , #48228 + + * (PHP_5_3) + zend_execute.h + zend_ptr_stack.h + zend_types.h + zend_vm_def.h + zend_vm_execute.h: + MFH: better fix for #48409 , #48428 , #48228 + + * zend_execute.h + zend_ptr_stack.h + zend_types.h + zend_vm_def.h + zend_vm_execute.h: + better fix for #48409 , #48428 , #48228 + 2009-06-04 Matt Wilmas * (PHP_5_3) -- 2.40.0