From: Date: Mon, 16 Jun 2003 00:31:04 +0000 (+0000) Subject: ChangeLog update X-Git-Tag: RELEASE_1_0_2~212 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=0e4f73ee548026c943a6283045a1731f8e68d340;p=php ChangeLog update --- diff --git a/ChangeLog b/ChangeLog index 393d00f683..71bcc5ae2b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,138 @@ +2003-06-15 Edin Kadribasic + + * ext/xmlrpc/xmlrpc.dsp: + Fixed win32 build (link to external expat). + +2003-06-15 Marcus Boerger + + * ext/dom/php_dom.c: + Add an error handler (thx to timm for the idea) + +2003-06-15 Edin Kadribasic + + * ext/openssl/openssl.dsp + ext/openssl/xp_ssl.c + main/php_network.h + main/streams/xp_socket.c: + Win32 build fixes for openssl + + * ext/standard/file.h: + This needs to be exported for dynamic extensions + + * ext/exif/exif.c + ext/exif/exif.dsp + ext/shmop/shmop.dsp + sapi/pi3web/php4pi3web.dsp + sapi/pi3web/pi3web_sapi.c: + Fixed win32 build + +2003-06-15 Jani Taskinen + + * (PHP_4_3) + NEWS: + missing entries, cleanup + +2003-06-15 Rob Richards + + * ext/xml/compat.c: + remove leftover parser->mem_hdlrs - compiles now + +2003-06-15 Moriyoshi Koizumi + + * ext/xml/compat.c + ext/xml/expat_compat.h: + Removed xmlMemSetup() code as it doesn't help at all. + +2003-06-15 Pierre-Alain Joye + + * ext/gd/CREDITS: + add Marcus, enough work done + +2003-06-15 Marcus Boerger + + * ext/gd/gd.c + ext/gd/gd_ctx.c + ext/gd/php_gd.h + ext/gd/libgd/gd.h + ext/gd/libgd/xbm.c: + Add ImageXBM + +2003-06-15 Rob Richards + + * ext/dom/document.c + ext/dom/element.c + ext/dom/node.c + ext/dom/php_dom.c + ext/dom/php_dom.h + ext/dom/text.c + ext/dom/xml_common.h: + remove code no longer needed + fix format Output property + +2003-06-15 Marcus Boerger + + * ext/gd/tests/conv_test.xbm: + Better use '_' instead of '.' + + * ext/gd/config.m4: + Better configure output + +2003-06-15 Rob Richards + + * ext/xsl/xsl.dsp: + should be multithreaded and correct lib naming + +2003-06-15 Tomas V.V.Cox + + * pear/PEAR/Command/Package.php: + Added TODO and IDEAS to makerpm + + * pear/PEAR/Command/Package.php: + Fix makerpm (again) + Build an independant filelist tree + (this command still needs some work) + +2003-06-15 Andrey Hristov + + * ext/dbx/dbx.c + ext/exif/exif.c + ext/fam/fam.c + ext/fbsql/php_fbsql.c + ext/fdf/fdf.c + ext/ftp/php_ftp.c + ext/gd/gd.c + ext/hwapi/hwapi.cpp + ext/hyperwave/hw.c: + proto fixes + +2003-06-15 Rob Richards + + * ext/xsl/xsl.dsp: + be nice if i named the dll correctly and put it somewhere + + * ext/xsl/xsl.dsp: + fix xsl release build + link libxml2 and libxslt dynamically for consistancy + + * ext/dom/dom.dsp: + link libxml2 dynamically for consistancy + +2003-06-15 Edin Kadribasic + + * ext/interbase/interbase.c + sapi/nsapi/nsapi.c: + Fixed ZTS build + + * sapi/nsapi/nsapi.c: + No need for this in the HEAD branch + + * sapi/apache/php4apache.dsp: + Fixed win32 build (mod_php4 -> mod_php5) + + * ext/domxml/domxml.dsp: + Switch to dynamic linking of php_domxml.dll due to the libxml2 dependency + already being present for the core php4ts.dll. + 2003-06-14 Marcus Boerger * ext/standard/tests/serialize/005.phpt: diff --git a/Zend/ChangeLog b/Zend/ChangeLog index d1b6c0f54b..6b44a9039c 100644 --- a/Zend/ChangeLog +++ b/Zend/ChangeLog @@ -1,3 +1,33 @@ +2003-06-15 Sebastian Bergmann + + * zend_constants.c: + Fix ZTS build. + +2003-06-15 Stanislav Malyshev + + * zend.c: + Fix bug #23279 - exception handler exits after first function call + + * zend_execute_API.c: + No need to duplicate code - zend_get_constant() knows to + handle class constants now + + * zend_execute_API.c: + Fix bug #18872 - Improper handling of class constants used as default + function argument values + + * zend_constants.c: + set ending \0 for string + + * zend_compile.c + zend_constants.c + zend_language_parser.y: + Fix bug #23384 - static class::constant constants should now + work in static & array expressions. + + * zend_execute_API.c: + Fix bug #21800 - initialize opcode handlers in interactive mode + 2003-06-14 Marcus Boerger * zend_hash.c: