From: Date: Fri, 25 Feb 2005 01:35:47 +0000 (+0000) Subject: ChangeLog update X-Git-Tag: RELEASE_0_3~195 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=896efd3a139390e0474cd8ae87093e7708492736;p=php ChangeLog update --- diff --git a/ChangeLog b/ChangeLog index 7de79d6519..7812ca1280 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,99 @@ +2005-02-24 Ilia Alshanetsky + + * (PHP_5_0) + NEWS + ext/mysqli/mysqli_nonapi.c: + MFH: Fixed bug #32081 (default socket value is not being used). + + * ext/mysqli/mysqli_nonapi.c: + Fixed bug #32081 (default socket value is not being used). + +2005-02-24 Marcus Boerger + + * ext/standard/image.c: + - Little speed up + + * ext/standard/image.c: + - This must be == 1 + +2005-02-24 Jani Taskinen + + * acinclude.m4 + configure.in + ext/iconv/config.m4: + - Fixed all buildconf warnings + cross-compiling issues + +2005-02-24 Andi Gutmans + + * ZendEngine2/zend_language_scanner.l: + - Make one line comments work the same with as with + - other tags. This will break scripts that have whitespace at the end + - of the closing tag but this is barely used as it is + - and I doubt ppl used whitespace. (patch by Jani) + +2005-02-24 Jani Taskinen + + * TSRM/threads.m4: + - cross-compile fix + +2005-02-24 Andi Gutmans + + * ZendEngine2/zend_objects_API.h: + - This part of the patch was right + +2005-02-24 Jani Taskinen + + * acinclude.m4 + configure.in + scripts/phpize.m4: + - Restructured and added a few comments here and there. + - Made macros of couple of tests previously littering configure.in + (e.g. PHP_PROG_AWK, PHP_PROG_LEX, PHP_PROG_BISON..) + - Moved all PHP_SUBST() calls into their respective macros. + (no point adding empty entries in Makefile if macro is not used) + + * ext/standard/var_unserializer.c: + - Generated with re2c 0.9.4 + +2005-02-24 Stanislav Malyshev + + * ext/standard/var_unserializer.c + ext/standard/var_unserializer.re: + fix typo + +2005-02-24 Dmitry Stogov + + * (PHP_5_0) + ZendEngine2/zend_execute.c + ZendEngine2/zend_vm_def.h + ZendEngine2/zend_vm_execute.h + ZendEngine2/zend_vm_opcodes.h: + Fixed bug in ZEND_POST_INC/ZEND_POST_DEC handlers. + These opcodes assume IS_TMP_VAR as result. + +2005-02-24 Andi Gutmans + + * ZendEngine2/zend_modules.h: + - Need zend_Compile.h for struct _zend_arg_info definiton (thanks to Joe + Orton) + + * main/streams/mmap.c: + - Fix comment + + * ZendEngine2/zend_objects.c + ZendEngine2/zend_objects.h + ZendEngine2/zend_objects_API.h: + - Revert following patch until we decide what is the right way to handle + - this: + - Fix signatures they are all meant to be able to deal with any type in + any + object storage (though we are still missing several parts) + +2005-02-24 Marcus Boerger + + * ext/standard/image.c: + - Prevent superflous memory allocation + 2005-02-23 Ilia Alshanetsky * ext/standard/image.c: diff --git a/Zend/ChangeLog b/Zend/ChangeLog index 4689d5cb5b..85581022f3 100644 --- a/Zend/ChangeLog +++ b/Zend/ChangeLog @@ -1,3 +1,39 @@ +2005-02-24 Andi Gutmans + + * zend_language_scanner.l: + - Make one line comments work the same with as with + - other tags. This will break scripts that have whitespace at the end + - of the closing tag but this is barely used as it is + - and I doubt ppl used whitespace. (patch by Jani) + + * zend_objects_API.h: + - This part of the patch was right + +2005-02-24 Dmitry Stogov + + * (PHP_5_0) + zend_execute.c + zend_vm_def.h + zend_vm_execute.h + zend_vm_opcodes.h: + Fixed bug in ZEND_POST_INC/ZEND_POST_DEC handlers. + These opcodes assume IS_TMP_VAR as result. + +2005-02-24 Andi Gutmans + + * zend_modules.h: + - Need zend_Compile.h for struct _zend_arg_info definiton (thanks to Joe + Orton) + + * zend_objects.c + zend_objects.h + zend_objects_API.h: + - Revert following patch until we decide what is the right way to handle + - this: + - Fix signatures they are all meant to be able to deal with any type in + any + object storage (though we are still missing several parts) + 2005-02-23 Derick Rethans * (PHP_5_0)