[PHP-CVS-DAILY] cvs: php4 / NEWS
changelog Mon Jun 24 20:27:57 2002 EDT Modified files: /php4 NEWS Log: NEWS update Index: php4/NEWS diff -u php4/NEWS:1.1026 php4/NEWS:1.1027 --- php4/NEWS:1.1026Mon Jun 24 18:43:47 2002 +++ php4/NEWS Mon Jun 24 20:27:57 2002 @@ -1,6 +1,11 @@ PHP 4 NEWS ||| ?? ??? 2002, Version 4.3.0 +- GetImageSize now allways set fields unknown to 0 and new Imagetype + iff. (Marcus) +- Add runtime Apache2 thread check to ensure we don't run a non-threaded + PHP inside a threaded Apache2 MPM. (Rasmus) +- Turn off ZTS if Apache2 is using the prefork MPM. (Rasmus) - Made getimagesize() and exif_read_data() to return also the mime-type and exif_thumbnail() to return also the image-type. (Marcus) - Added image_type_to_mime_type() which converts image-types to mime-types.
[PHP-CVS-DAILY] cvs: ZendEngine2 / ChangeLog
changelog Mon Jun 24 20:27:38 2002 EDT Modified files: /ZendEngine2ChangeLog Log: ChangeLog update Index: ZendEngine2/ChangeLog diff -u ZendEngine2/ChangeLog:1.61 ZendEngine2/ChangeLog:1.62 --- ZendEngine2/ChangeLog:1.61 Sun Jun 23 20:24:35 2002 +++ ZendEngine2/ChangeLog Mon Jun 24 20:27:38 2002 @@ -1,3 +1,43 @@ +2002-06-24 Andi Gutmans <[EMAIL PROTECTED]> + +* 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 <[EMAIL PROTECTED]> + +* Zend.m4: IMHO, ZTS should no longer be labeled experimental. + +2002-06-24 Andi Gutmans <[EMAIL PROTECTED]> + +* 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 <[EMAIL PROTECTED]> * zend_compile.c
[PHP-CVS-DAILY] cvs: Zend / ChangeLog
changelog Mon Jun 24 20:27:15 2002 EDT Modified files: /Zend ChangeLog Log: ChangeLog update Index: Zend/ChangeLog diff -u Zend/ChangeLog:1.44 Zend/ChangeLog:1.45 --- Zend/ChangeLog:1.44 Sat Jun 22 20:23:58 2002 +++ Zend/ChangeLog Mon Jun 24 20:27:14 2002 @@ -1,3 +1,25 @@ +2002-06-24 Andi Gutmans <[EMAIL PROTECTED]> + +* zend_alloc.c: +- MFZE2 (Fixes some warnings and a bug introduced in an earlier patch) + +* zend_alloc.c: - Clean up shutdown_memory_manager(). + +2002-06-24 Sebastian Bergmann <[EMAIL PROTECTED]> + +* Zend.m4: IMHO, ZTS should no longer be labeled experimental. + +2002-06-24 Andi Gutmans <[EMAIL PROTECTED]> + +* zend_alloc.c: - Only do some initializations when needed +- Nuke some old commented code + +* zend.h + zend_types.h: +- Move type definitions out of zend.h so that we can include them without +- having to include all of zend.h (which sometimes causes circular +- dependencies) + 2002-06-22 Andi Gutmans <[EMAIL PROTECTED]> * zend_language_parser.y: - MFH @@ -97,7 +119,7 @@ 2002-05-13 Sterling Hughes <[EMAIL PROTECTED]> -* zend_qsort.c: add $Id: ChangeLog,v 1.44 2002/06/23 00:23:58 changelog Exp $ tag +* zend_qsort.c: add $Id: ChangeLog,v 1.45 2002/06/25 00:27:14 changelog Exp $ tag 2002-05-13 Derick Rethans <[EMAIL PROTECTED]>
[PHP-CVS-DAILY] cvs: php4 / ChangeLog
changelog Mon Jun 24 20:27:07 2002 EDT Modified files: /php4 ChangeLog Log: ChangeLog update Index: php4/ChangeLog diff -u php4/ChangeLog:1.1085 php4/ChangeLog:1.1086 --- php4/ChangeLog:1.1085 Sun Jun 23 20:23:38 2002 +++ php4/ChangeLog Mon Jun 24 20:27:01 2002 @@ -1,3 +1,124 @@ +2002-06-24 Jani Taskinen <[EMAIL PROTECTED]> + +* NEWS: Minor cleanup. + +2002-06-24 Marcus Börger <[EMAIL PROTECTED]> + +* 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 <[EMAIL PROTECTED]> + +* 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 <[EMAIL PROTECTED]> + +* 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 <[EMAIL PROTECTED]> + +* 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 <[EMAIL PROTECTED]> + +* ext/domxml/TODO: added some points to the todo list + +2002-06-24 Rasmus Lerdorf <[EMAIL PROTECTED]> + +* 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 <[EMAIL PROTECTED]> + +* pear/PEAR/Command/Remote.php: * Rephrase help text. + +2002-06-24 Rasmus Lerdorf <[EMAIL PROTECTED]> + +* sapi/apache2filter/config.m4 + sapi/apache2filter/sapi_apache2.c: + Turn off ZTS if Apache2 is using the prefork MPM. + +2002-06-24 Jani Taskinen <[EMAIL PROTECTED]> + +* 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 <[EMAIL PROTECTED]> + +* 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 <[EMAIL PROTECTED]> + +* ext/ldap/config.m4: No need to have multiple AC_CHECK_FUNCS calls + +2002-06-24 Derick Rethans <[EMAIL PROTECTED]> + +* Makefile.in: +- Fix make install to respect the prefix= argument (patch by Troels Arvin + <[EMAIL PROTECTED]>) + +* ext/mcal/config.m4: +- Fix building a shared extension (patch by Troels Arvin <[EMAIL PROTECTED]>) + +* ext/sysvsem/php_sysvsem.h + ext/sysvsem/sysvsem.c + ext/standard/versioning.c: - MFH + +2002-06-24 Edin Kadribasic <[EMAIL PROTECTED]> + +* win32/time.c + win32/time.h: MFH + +2002-06-24 Derick Rethans <[EMAIL PROTECTED]> + +* 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 <[EMAIL PROTECTED]> + +* buildconf: iterate through passed arguments + 2002-06-23 Edin Kadribasic <[EMAIL PROTECTED]> * win32/time.c