From 0d7c522313d4fa2870d9a93bc864b3b8b257cfcd Mon Sep 17 00:00:00 2001 From: Date: Thu, 19 Jul 2001 00:11:34 +0000 Subject: [PATCH] ChangeLog update --- ChangeLog | 77 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 77 insertions(+) diff --git a/ChangeLog b/ChangeLog index 996454d7e6..36bad42594 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,80 @@ +2001-07-18 Sascha Schumann + + * ext/session/mod_mm.c: + Fix GC bug which did not increment the proper variable. + Fix warning regarding the initial hash value. + Use php_uint32 everywhere. + Speedup linked-list traversal by using the hash value. + Degrade linked-list to singledly linked-list. + Allocate a new shared memory buffer, if the data does not fit into the + current one. Prior to this change, we always allocated a new buffer. + Fix debug prints to be compatible with non-GCC compilers. + NUL-terminate string return values. + +2001-07-18 Thomas V.V.Cox + + * pear/PEAR/Installer.php: + - Only decompress package once + - Allow relative directory package calls (for ex: + pear install packs/Pear_DB-1.1.tgz) + +2001-07-18 Sascha Schumann + + * ext/session/session.c: + Instead of using the poor system rand() algorithm and the + system-time seed, rely on the long-living LCG to determine + whether to start the GC process. + + * ext/standard/lcg.c + ext/standard/php_lcg.h: + The lcg needs to operate on signed 32-bit integers, so use + the proper php_int32 types here. + + * ext/standard/basic_functions.h: Provide typedefs for php_int32 + + * ext/session/mod_mm.c: + Retire old hash algorithm and use the FNV-1 algorithm. + +2001-07-18 Harald Radi + + * ext/com/conversion.c: fixed a bug in 'case VT_DATE' + + * ext/com/COM.c + ext/com/conversion.c: MFH and VT_DATE patch + +2001-07-18 Thomas V.V.Cox + + * pear/PEAR/Installer.php: + - remove the xml parser code (use PEAR_Common::infoFromDescFile) + - added the new package.xml Dir tag support + - killed many bugs and warnings + + (as it is quite usable yet, work is still in progress) + + * pear/PEAR/Packager.php: + - always write a the package definition file as 'package.xml' inside the package + - other clean-up's + + * pear/PEAR/Common.php: killed some warnings + +2001-07-18 Stanislav Malyshev + + * ext/standard/formatted_print.c: Make variables receiving long be long + Fix binary (x,o,b) formats - they should not be signed + + * ext/curl/curl.c: + Prevent cURl from always outputting the header. Fix bug #12018 + +2001-07-18 Sascha Schumann + + * ext/ircg/ircg.c: Support IRCG 2.x + + Partly submitted by: Oliver Lehmann + +2001-07-18 Jon Parise + + * pear/CODING_STANDARDS: Private members don't have to be functions. + 2001-07-17 Jon Parise * pear/CODING_STANDARDS: Woops, missed a closing paren. -- 2.50.1