changelog               Sat Sep 24 01:35:37 2005 EDT

  Modified files:              
    /php-src    ChangeLog 
  Log:
  ChangeLog update
  
http://cvs.php.net/diff.php/php-src/ChangeLog?r1=1.2111&r2=1.2112&ty=u
Index: php-src/ChangeLog
diff -u php-src/ChangeLog:1.2111 php-src/ChangeLog:1.2112
--- php-src/ChangeLog:1.2111    Fri Sep 23 01:33:16 2005
+++ php-src/ChangeLog   Sat Sep 24 01:35:36 2005
@@ -1,3 +1,161 @@
+2005-09-23  Marcus Boerger  <[EMAIL PROTECTED]>
+
+    * ZendEngine2/zend_reflection_api.c:
+      - Remove unused variable
+
+    * ZendEngine2/zend_compile.h:
+      - WS
+
+    * ZendEngine2/zend_API.h:
+      - WS fix
+
+2005-09-23  Andrei Zmievski  <[EMAIL PROTECTED]>
+
+    * README.UNICODE-UPGRADES:
+      substr() sample case
+
+2005-09-23  Antony Dovgal  <[EMAIL PROTECTED]>
+
+    * 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  <[EMAIL PROTECTED]>
+
+    * (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  <[EMAIL PROTECTED]>
+
+    * (PHP_5_1)
+      acinclude.m4:
+      ws fix
+
+2005-09-23  Antony Dovgal  <[EMAIL PROTECTED]>
+
+    * 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  <[EMAIL PROTECTED]>
+
+    * (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  <[EMAIL PROTECTED]>
+
+    * ext/session/session.c:
+      - Improved the fix for #21306 a bit
+
+2005-09-23  Derick Rethans  <[EMAIL PROTECTED]>
+
+    * (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  <[EMAIL PROTECTED]>
 
     * (PHP_5_0)
@@ -12369,7 +12527,7 @@
 
     * (PHP_4_3)
       ext/standard/url_scanner_ex.re:
-      Missing $Id: ChangeLog,v 1.2111 2005/09/23 05:33:16 changelog Exp $ tag
+      Missing $Id: ChangeLog,v 1.2112 2005/09/24 05:35:36 changelog Exp $ tag
 
     * (PHP_5_0)
       ext/standard/url_scanner_ex.c:
@@ -15770,7 +15928,7 @@
       ext/session/mod_mm.h
       ext/session/mod_user.h
       ext/session/php_session.h:
-      - Missing $Id: ChangeLog,v 1.2111 2005/09/23 05:33:16 changelog Exp $ 
tags
+      - Missing $Id: ChangeLog,v 1.2112 2005/09/24 05:35:36 changelog Exp $ 
tags
 
     * (PHP_4_3)
       ext/session/session.c:
@@ -16251,7 +16409,7 @@
 
     * (PHP_4_3)
       Zend/zend_ini_scanner.l:
-      Missing $Id: ChangeLog,v 1.2111 2005/09/23 05:33:16 changelog Exp $ tag 
+ ws fix
+      Missing $Id: ChangeLog,v 1.2112 2005/09/24 05:35:36 changelog Exp $ tag 
+ ws fix
 
     * ZendEngine2/zend_ini_scanner.l
       ZendEngine2/zend_ini_scanner.l:
@@ -17725,7 +17883,7 @@
       ext/standard/url_scanner_ex.c
       ext/standard/url_scanner_ex.h
       ext/standard/url_scanner_ex.re:
-      Missing $Id: ChangeLog,v 1.2111 2005/09/23 05:33:16 changelog Exp $ tag
+      Missing $Id: ChangeLog,v 1.2112 2005/09/24 05:35:36 changelog Exp $ tag
 
     * ext/standard/credits_ext.h
       ext/standard/credits_sapi.h:

Reply via email to