]> granicus.if.org Git - php/commitdiff
ChangeLog update
author <changelog@php.net> <>
Sat, 24 Sep 2005 05:35:43 +0000 (05:35 +0000)
committer <changelog@php.net> <>
Sat, 24 Sep 2005 05:35:43 +0000 (05:35 +0000)
ChangeLog
Zend/ChangeLog

index 6e52e461e9bb27dc4899af1eadf398ae00be4148..fc6d9b42c111e3350237303c0feed86f24fdbb98 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,161 @@
+2005-09-23  Marcus Boerger  <marcus.boerger@post.rwth-aachen.de>
+
+    * ZendEngine2/zend_reflection_api.c:
+      - Remove unused variable
+
+    * ZendEngine2/zend_compile.h:
+      - WS
+
+    * ZendEngine2/zend_API.h:
+      - WS fix
+
+2005-09-23  Andrei Zmievski  <andrei@gravitonic.com>
+
+    * README.UNICODE-UPGRADES:
+      substr() sample case
+
+2005-09-23  Antony Dovgal  <antony@zend.com>
+
+    * ZendEngine2/tests/error_reporting10.phpt:
+      fix test
+
+    * ZendEngine2/tests/bug33771.phpt
+      ZendEngine2/tests/error_reporting01.phpt
+      ZendEngine2/tests/error_reporting02.phpt
+      ZendEngine2/tests/error_reporting03.phpt
+      ZendEngine2/tests/error_reporting04.phpt
+      ZendEngine2/tests/error_reporting05.phpt
+      ZendEngine2/tests/error_reporting06.phpt
+      ZendEngine2/tests/error_reporting07.phpt
+      ZendEngine2/tests/error_reporting08.phpt
+      ZendEngine2/tests/error_reporting09.phpt:
+      fix tests to work with HEAD and its new E_* values
+
+2005-09-23  Anantha Kesari H Y  <hyanantha@novell.com>
+
+    * (PHP_5_1)
+      ext/sockets/config.m4
+      ext/sockets/config.m4
+      ext/sockets/sockets.c
+      ext/sockets/sockets.c:
+      NetWare LibC don't have socketpair function. So enabling socket_create_pair
+      functionality only if socketpair is available in the host LibC.
+      --Kamesh
+
+2005-09-23  Jani Taskinen  <jani.taskinen@sci.fi>
+
+    * (PHP_5_1)
+      acinclude.m4:
+      ws fix
+
+2005-09-23  Antony Dovgal  <antony@zend.com>
+
+    * ZendEngine2/tests/bug21888.phpt:
+      remove double EXPECT tag
+
+    * ZendEngine2/tests/error_reporting01.phpt
+      ZendEngine2/tests/error_reporting02.phpt
+      ZendEngine2/tests/error_reporting03.phpt
+      ZendEngine2/tests/error_reporting04.phpt
+      ZendEngine2/tests/error_reporting05.phpt
+      ZendEngine2/tests/error_reporting06.phpt
+      ZendEngine2/tests/error_reporting07.phpt
+      ZendEngine2/tests/error_reporting08.phpt
+      ZendEngine2/tests/error_reporting09.phpt
+      ZendEngine2/tests/error_reporting10.phpt:
+      add new tests
+
+    * ZendEngine2/tests/error_reporting01.phpt
+      ZendEngine2/tests/error_reporting01.phpt
+      ZendEngine2/tests/error_reporting02.phpt
+      ZendEngine2/tests/error_reporting02.phpt
+      ZendEngine2/tests/error_reporting03.phpt
+      ZendEngine2/tests/error_reporting03.phpt
+      ZendEngine2/tests/error_reporting04.phpt
+      ZendEngine2/tests/error_reporting04.phpt
+      ZendEngine2/tests/error_reporting05.phpt
+      ZendEngine2/tests/error_reporting05.phpt
+      ZendEngine2/tests/error_reporting06.phpt
+      ZendEngine2/tests/error_reporting06.phpt
+      ZendEngine2/tests/error_reporting07.phpt
+      ZendEngine2/tests/error_reporting07.phpt
+      ZendEngine2/tests/error_reporting08.phpt
+      ZendEngine2/tests/error_reporting08.phpt
+      ZendEngine2/tests/error_reporting09.phpt
+      ZendEngine2/tests/error_reporting09.phpt
+      ZendEngine2/tests/error_reporting10.phpt
+      ZendEngine2/tests/error_reporting10.phpt:
+      
+      file error_reporting01.phpt was initially added on branch PHP_5_1.
+
+    * ZendEngine2/zend_vm_def.h
+      ZendEngine2/zend_vm_execute.h
+      ZendEngine2/zend_vm_opcodes.h:
+      MF5.1:
+      - store current value of error_reporting only if it's not stored yet
+      - reset old_error_reporting to NULL only it points to the tmp_var at
+      current opline
+
+    * (PHP_5_1)
+      ZendEngine2/zend_vm_def.h
+      ZendEngine2/zend_vm_execute.h
+      ZendEngine2/zend_vm_opcodes.h:
+      - store current value of error_reporting only if it's not stored yet
+      - reset old_error_reporting to NULL only it points to the tmp_var at
+      current opline
+
+2005-09-23  Anantha Kesari H Y  <hyanantha@novell.com>
+
+    * (PHP_4_4)
+      acinclude.m4
+      acinclude.m4:
+      In NetWare two binaries with the same name can not be loaded in kernel
+      address space(This is the default behaviour for NetWare apache webserver
+      and hence PHP extensions also get loaded in kernel address space)
+      simultaneoulsy. As the current autoconf built mysql extension is built as
+      mysql.nlm this forbids the loading of mysql client binary. To work around
+      this NetWare idiosyncrasy prefixing all the extensions with "php" except
+      php5lib(phpts.dll eqivalent of Windows). I could have named this
+      extensions prefixed with "php_" but "_" is eaten from the exported symbol
+      prefix by the GCC cross compiler for NetWare so sticking to "php".
+      This fixes the issue of not needing
+      "PHP_SUBST(EXTENSIONNAME_SHARED_LIBADD)" in all the extensions especially
+      when they need to be built shared.
+      
+      --Kamesh
+
+    * (PHP_5_0)
+      acinclude.m4:
+      In NetWare two binaries with the same name can not be loaded in kernel
+      address space(This is the default behaviour for NetWare apache webserver
+      and hence PHP extensions also get loaded in kernel address space)
+      simultaneoulsy. As the current autoconf built mysql extension is built as
+      mysql.nlm this forbids the loading of mysql client binary. To work around
+      this NetWare idiosyncrasy prefixing all the extensions with "php" except
+      php5lib(phpts.dll eqivalent of Windows). I could have named this
+      extensions prefixed with "php_" but "_" is eaten by the exported symbol
+      prefix by the GCC cross compiler for NetWare so sticking to "php".
+      This fixes the issue of not needing
+      "PHP_SUBST(EXTENSIONNAME_SHARED_LIBADD)" in all the extensions especially
+      when they need to be built shared.
+      
+      --Kamesh
+
+2005-09-23  Jani Taskinen  <jani.taskinen@sci.fi>
+
+    * ext/session/session.c:
+      - Improved the fix for #21306 a bit
+
+2005-09-23  Derick Rethans  <php@derickrethans.nl>
+
+    * (PHP_5_0)
+      ZendEngine2/zend_execute.c:
+      - MFH: Moved the FREE_OP to after the execution of the included file, or
+      eval
+        statement so that it is safe to access this information in the
+      overridden
+        zend_execute() function, which is what Xdebug does.
+
 2005-09-22  Antony Dovgal  <antony@zend.com>
 
     * (PHP_5_0)
index 8e562c300700610f8595aec71dd81c5c269df5ed..946592c82f94458471b13f1361be98f6f97667e5 100644 (file)
@@ -1,3 +1,95 @@
+2005-09-23  Marcus Boerger  <marcus.boerger@post.rwth-aachen.de>
+
+    * zend_reflection_api.c:
+      - Remove unused variable
+
+    * zend_compile.h:
+      - WS
+
+    * zend_API.h:
+      - WS fix
+
+2005-09-23  Antony Dovgal  <antony@zend.com>
+
+    * tests/error_reporting10.phpt:
+      fix test
+
+    * tests/bug33771.phpt
+      tests/error_reporting01.phpt
+      tests/error_reporting02.phpt
+      tests/error_reporting03.phpt
+      tests/error_reporting04.phpt
+      tests/error_reporting05.phpt
+      tests/error_reporting06.phpt
+      tests/error_reporting07.phpt
+      tests/error_reporting08.phpt
+      tests/error_reporting09.phpt:
+      fix tests to work with HEAD and its new E_* values
+
+    * tests/bug21888.phpt:
+      remove double EXPECT tag
+
+    * tests/error_reporting01.phpt
+      tests/error_reporting02.phpt
+      tests/error_reporting03.phpt
+      tests/error_reporting04.phpt
+      tests/error_reporting05.phpt
+      tests/error_reporting06.phpt
+      tests/error_reporting07.phpt
+      tests/error_reporting08.phpt
+      tests/error_reporting09.phpt
+      tests/error_reporting10.phpt:
+      add new tests
+
+    * tests/error_reporting01.phpt
+      tests/error_reporting01.phpt
+      tests/error_reporting02.phpt
+      tests/error_reporting02.phpt
+      tests/error_reporting03.phpt
+      tests/error_reporting03.phpt
+      tests/error_reporting04.phpt
+      tests/error_reporting04.phpt
+      tests/error_reporting05.phpt
+      tests/error_reporting05.phpt
+      tests/error_reporting06.phpt
+      tests/error_reporting06.phpt
+      tests/error_reporting07.phpt
+      tests/error_reporting07.phpt
+      tests/error_reporting08.phpt
+      tests/error_reporting08.phpt
+      tests/error_reporting09.phpt
+      tests/error_reporting09.phpt
+      tests/error_reporting10.phpt
+      tests/error_reporting10.phpt:
+      
+      file error_reporting01.phpt was initially added on branch PHP_5_1.
+
+    * zend_vm_def.h
+      zend_vm_execute.h
+      zend_vm_opcodes.h:
+      MF5.1:
+      - store current value of error_reporting only if it's not stored yet
+      - reset old_error_reporting to NULL only it points to the tmp_var at
+      current opline
+
+    * (PHP_5_1)
+      zend_vm_def.h
+      zend_vm_execute.h
+      zend_vm_opcodes.h:
+      - store current value of error_reporting only if it's not stored yet
+      - reset old_error_reporting to NULL only it points to the tmp_var at
+      current opline
+
+2005-09-23  Derick Rethans  <php@derickrethans.nl>
+
+    * (PHP_5_0)
+      zend_execute.c:
+      - MFH: Moved the FREE_OP to after the execution of the included file, or
+      eval
+        statement so that it is safe to access this information in the
+      overridden
+        zend_execute() function, which is what Xdebug does.
+
 2005-09-22  Antony Dovgal  <antony@zend.com>
 
     * zend_modules.h