forked from php/php-src
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Unknown
committed
Jul 19, 2001
1 parent
664df24
commit 0d7c522
Showing
1 changed file
with
77 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,80 @@ | ||
2001-07-18 Sascha Schumann <[email protected]> | ||
|
||
* 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 <[email protected]> | ||
|
||
* 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 <[email protected]> | ||
|
||
* 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 <[email protected]> | ||
|
||
* 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 <[email protected]> | ||
|
||
* 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 <[email protected]> | ||
|
||
* 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 <[email protected]> | ||
|
||
* ext/ircg/ircg.c: Support IRCG 2.x | ||
|
||
Partly submitted by: Oliver Lehmann <[email protected]> | ||
|
||
2001-07-18 Jon Parise <[email protected]> | ||
|
||
* pear/CODING_STANDARDS: Private members don't have to be functions. | ||
|
||
2001-07-17 Jon Parise <[email protected]> | ||
|
||
* pear/CODING_STANDARDS: Woops, missed a closing paren. | ||
|