From: Date: Tue, 25 Jun 2002 00:27:38 +0000 (+0000) Subject: ChangeLog update X-Git-Tag: php-4.3.0dev_zend2_alpha2~98 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=26d98b5b0a951df3c5eb14582379bfcb8b862e54;p=php ChangeLog update --- diff --git a/ChangeLog b/ChangeLog index b81577342b..2593d8b324 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,124 @@ +2002-06-24 Jani Taskinen + + * NEWS: Minor cleanup. + +2002-06-24 Marcus Börger + + * ext/exif/tests/003.phpt + ext/exif/tests/test3.jpg: modified test3 (old one had a warning) + + * ext/standard/image.c: missing return value + + * NEWS: cleanup + + * ext/exif/exif.c + ext/standard/image.c + ext/standard/php_image.h + ext/standard/basic_functions.c: + register IMAGETYPE_ constants in image.c as they are needed + there. + +2002-06-24 Derick Rethans + + * ext/gd/config.m4 + ext/gd/gd.c: + - Make functions not exist when they are not available. This means you can + now safely do function_exists() on all gd functions. + +2002-06-24 Marko Karppinen + + * ext/xslt/php_sablot.h + ext/xslt/sablot.c: Revert to php_4_2_1 to get sablotron working again. + +2002-06-24 Marcus Börger + + * ext/exif/exif.c + ext/standard/image.c + ext/standard/php_image.h: + GetImageSize now allways set fields unknown to 0 and new Imagetype + iff. + +2002-06-24 Christian Stocker + + * ext/domxml/TODO: added some points to the todo list + +2002-06-24 Rasmus Lerdorf + + * sapi/apache2filter/sapi_apache2.c: + Add runtime Apache2 thread check to ensure we don't run a non-threaded + PHP inside a threaded Apache2 MPM. + +2002-06-24 Martin Jansen + + * pear/PEAR/Command/Remote.php: * Rephrase help text. + +2002-06-24 Rasmus Lerdorf + + * sapi/apache2filter/config.m4 + sapi/apache2filter/sapi_apache2.c: + Turn off ZTS if Apache2 is using the prefork MPM. + +2002-06-24 Jani Taskinen + + * configure.in: + - gethostname() is found in glibc (at least on Linux) and the yp_* funcs + are in libnsl. Fixes bug: #17941 + + * NEWS: ..unless someone adds all the missing ones.. :) + + * ext/mcal/config.m4: Fix the shared build properly. + + * acinclude.m4: + Fixed PHP_ADD_LIBRARY_DEFER_WITH_PATH to work with shared builds. + +2002-06-24 Edin Kadribasic + + * sapi/apache2filter/CREDITS + sapi/apache2filter/README + sapi/apache2filter/apache_config.c + sapi/apache2filter/php_apache.h + sapi/apache2filter/php_functions.c + sapi/apache2filter/sapi_apache2.c: MFH + +2002-06-24 Jani Taskinen + + * ext/ldap/config.m4: No need to have multiple AC_CHECK_FUNCS calls + +2002-06-24 Derick Rethans + + * Makefile.in: + - Fix make install to respect the prefix= argument (patch by Troels Arvin + ) + + * ext/mcal/config.m4: + - Fix building a shared extension (patch by Troels Arvin ) + + * ext/sysvsem/php_sysvsem.h + ext/sysvsem/sysvsem.c + ext/standard/versioning.c: - MFH + +2002-06-24 Edin Kadribasic + + * win32/time.c + win32/time.h: MFH + +2002-06-24 Derick Rethans + + * ext/standard/string.c: - MFH + + * ext/standard/math.c: - Fix the MFH :) + + * ext/standard/basic_functions.c: - MFH + + * ext/mcrypt/mcrypt.c: - Partly MFH + + * ext/standard/math.c + ext/gmp/config.m4: - MFH + +2002-06-24 Sascha Schumann + + * buildconf: iterate through passed arguments + 2002-06-23 Edin Kadribasic * win32/time.c diff --git a/Zend/ChangeLog b/Zend/ChangeLog index 72672e4cdc..a8f19a9817 100644 --- a/Zend/ChangeLog +++ b/Zend/ChangeLog @@ -1,3 +1,43 @@ +2002-06-24 Andi Gutmans + + * zend_fast_cache.h: + - MFZE1 (Turn off fast cache until we make sure it performs well.) + + * zend_alloc.c: - More fixes (warnings, bug fixes etc.) + + * zend_execute.c: + - Revert patch which checks at run-time if you're allowed to assign + - certain values by reference. + - We still need to find a solution for cases when this shouldn't be allowed + - as it might cause leaks. + + * zend_alloc.c: - Fix crash bug and clean up a bit. + +2002-06-24 Sebastian Bergmann + + * Zend.m4: IMHO, ZTS should no longer be labeled experimental. + +2002-06-24 Andi Gutmans + + * zend_alloc.c: - MFZE1 + + * zend_alloc.c: - Don't use cache if we're using ZEND_MM + + * zend_mm.c: + - Hardcode alignment to 8. We might need a configure check for this. + + * zend_mm.c + zend_mm.h: - Improve memory manager to allocate small blocks quickly. + + * zend_alloc.h + zend_mm.h + zend_alloc.c: + - Don't keep allocated blocks in a linked list if we're in non-debug mode + - as now the memory manager takes care to nuke all leaking blocks. + + * zend.h + zend_types.h: - MFZE1 + 2002-06-23 Andi Gutmans * zend_compile.c