diff options
author | <changelog@php.net> | 2002-04-23 00:28:29 +0000 |
---|---|---|
committer | <changelog@php.net> | 2002-04-23 00:28:29 +0000 |
commit | d16ea58e8ba8dd44410db692af4595bb5070bc08 (patch) | |
tree | 68ac4b1baa64d0fa30bbed4ccbd7560df2d679a1 | |
parent | ae2e36a4e5a74fbcd3f58d2ea3b9371a3cf0410e (diff) | |
download | php-git-d16ea58e8ba8dd44410db692af4595bb5070bc08.tar.gz |
ChangeLog update
-rw-r--r-- | ChangeLog | 75 | ||||
-rw-r--r-- | Zend/ChangeLog | 21 |
2 files changed, 96 insertions, 0 deletions
@@ -1,3 +1,78 @@ +2002-04-22 Rui Hirokawa <rui_hirokawa@ybb.ne.jp> + + * win32/readdir.c: + fixed access problem when japanese Shift_JIS character is used as directory name. Some characters in Shift_JIS are including 0x5c (slash) as second byte. + +2002-04-22 Sascha Schumann <sascha@schumann.cx> + + * ext/standard/php_smart_str.h: remove unnecessary casts + + * ext/session/mod_files.c: + Set the close-on-exec flag for fds. Child processes should not inherit + the fd. + + Also rip out the broken O_EXCL use. Our file names are not unique and + this left a small window open where creating a session file would fail + (a, b notice that the file does not exist; a creates the file successfully; + b tries to create, but fails due to O_EXCL). + +2002-04-22 Jim Jagielski <jim@jaguNET.com> + + * sapi/apache2filter/apache_config.c: Typo in error string + +2002-04-22 Harald Radi <h.radi@nme.at> + + * ext/rpc/rpc.c + ext/rpc/rpc_proxy.c: + set up a proxy object when requesting a reference to a variable + + * ext/standard/php_smart_str.h: fixes a warning when compiling under win32 + +2002-04-22 Marko Karppinen <karppinen@pobox.com> + + * sapi/apache2filter/config.m4: Refine the OS X support a bit + + * sapi/apache2filter/config.m4: + Merged the Mac OS X compile changes from the Apache 1.3 SAPI. + --with-apxs2 should now work on Mac OS X / Darwin. + + * NEWS: Prettify the NEWS entries + + * CREDITS: Let's pretend this is up-to-date now + +2002-04-22 Harald Radi <h.radi@nme.at> + + * ext/rpc/com/com.c + ext/rpc/handler.h + ext/rpc/rpc.c + ext/rpc/rpc.h + ext/rpc/rpc_proxy.c + ext/rpc/rpc_proxy.h: + changes related to the latest commit of the zend engine + +2002-04-22 Edin Kadribasic <edink@proventum.net> + + * sapi/apache2filter/php4apache2.dsp: Reverting my previous patch. + +2002-04-22 Derick Rethans <d.rethans@jdimedia.nl> + + * NEWS: - Fix date + +2002-04-22 Martin Jansen <mail@martin-jansen.de> + + * pear/PEAR/WebInstaller.php: + * Due to the recent changes in the installer stuff, the webinstaller + is not supported at the moment. + +2002-04-22 Sascha Schumann <sascha@schumann.cx> + + * ext/pgsql/pgsql.c: + hash keys lengths include the NUL-byte, so we need to copy one byte less. + + also add missing commas in the INSERT clause. + + Noticed by: Yasuo Ohgaki + 2002-04-21 Jani Taskinen <sniper@iki.fi> * ext/domxml/tests/.cvsignore: missing .cvsignore diff --git a/Zend/ChangeLog b/Zend/ChangeLog index a3aa109504..2b91eedd23 100644 --- a/Zend/ChangeLog +++ b/Zend/ChangeLog @@ -1,3 +1,24 @@ +2002-04-22 Harald Radi <h.radi@nme.at> + + * zend_object_handlers.c + zend_object_handlers.h + zend_objects.h + zend_operators.h + zend_API.c + zend_API.h + zend_builtin_functions.c: added get_class_entry callback handler to the + object handlers structure + +2002-04-22 Sebastian Bergmann <sb@sebastian-bergmann.de> + + * Zend.m4: MFZE1: Change default value of inline-opt to yes (Sascha). + +2002-04-22 Harald Radi <h.radi@nme.at> + + * zend_config.w32.h + acconfig.h + flex.skl: fixed linkage warning under win32 + 2002-04-20 Zeev Suraski <zeev@zend.com> * zend_execute_API.c: MFZE1 |