]> granicus.if.org Git - php/commitdiff
ChangeLog update
author <changelog@php.net> <>
Sat, 6 Jun 2009 01:33:00 +0000 (01:33 +0000)
committer <changelog@php.net> <>
Sat, 6 Jun 2009 01:33:00 +0000 (01:33 +0000)
ChangeLog
Zend/ChangeLog

index 627b46268e69853c56c1a5d31edca5d85065c566..964cf09f08a6dcb4d00c08ef684d5d648db12210 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,109 @@
+2009-06-05  Brian Shire  <shire@tekrat.com>
+
+    * (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  <rasmus@lerdorf.com>
+
+    * (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_lists@realplain.com>
+
+    * (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  <arnaud.lb@gmail.com>
+
+    * (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  <greg@chiaraquartet.net>
+
+    * (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  <greg@chiaraquartet.net>
 
     * (PHP_5_3)
index a514c5efb96e652ee89c7b42b64aad69a267d49e..79cc49240bd25943bd57c1d96094e69e74dadb29 100644 (file)
@@ -1,3 +1,66 @@
+2009-06-05  Brian Shire  <shire@tekrat.com>
+
+    * (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  <rasmus@lerdorf.com>
+
+    * (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_lists@realplain.com>
+
+    * (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  <arnaud.lb@gmail.com>
+
+    * (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_lists@realplain.com>
 
     * (PHP_5_3)