changelog Mon Jan 10 20:35:44 2005 EDT
Modified files:
/php-src ChangeLog
Log:
ChangeLog update
http://cvs.php.net/diff.php/php-src/ChangeLog?r1=1.1860&r2=1.1861&ty=u
Index: php-src/ChangeLog
diff -u php-src/ChangeLog:1.1860 php-src/ChangeLog:1.1861
--- php-src/ChangeLog:1.1860 Mon Jan 10 10:07:50 2005
+++ php-src/ChangeLog Mon Jan 10 20:35:43 2005
@@ -1,3 +1,104 @@
+2005-01-10 Rasmus Lerdorf <[EMAIL PROTECTED]>
+
+ * ZendEngine2/zend.h
+ ZendEngine2/zend_API.c:
+ Fix OSX DL_UNLOAD macro and actually use it to make shared extensions
+ work on OSX.
+
+2005-01-10 Antony Dovgal <[EMAIL PROTECTED]>
+
+ * ext/iconv/config.m4:
+ fix Konstantin's last name Chugeuv -> Chuguev
+
+2005-01-10 Rasmus Lerdorf <[EMAIL PROTECTED]>
+
+ * (PHP_4_3)
+ Zend/zend.h
+ Zend/zend_API.c:
+ Fixed shared extensions on OSX. We were using zend_mh_bundle_load to
+ load a shared extension, but dlclose() to unload it because it was
+ hardcoded. This caused problems for extensions loaded from php.ini
+ since the Apple linker does a symbol check on an unload and we hadn't
+ properly unloaded the shared extensions when Apache unloaded the parent
+ PHP shared library during its 2-pass load/unload/load startup routine.
+ By fixing the DL_UNLOAD macro and un-hardcoding the dlclose() call this
+ now works.
+
+2005-01-10 Jani Taskinen <[EMAIL PROTECTED]>
+
+ * (PHP_4_3)
+ ext/standard/tests/math/bug30069.phpt:
+ MFH: update test to include negative floats as strings too
+
+ * ext/standard/tests/math/bug30069.phpt:
+ update test to include negative floats as strings too
+
+ * (PHP_4_3)
+ NEWS
+ sapi/cgi/cgi_main.c:
+ MFH: - Fixed bug #28074 (FastCGI: stderr should be written in a FCGI
stderr
+ stream).
+
+ * (PHP_5_0)
+ NEWS
+ sapi/cgi/cgi_main.c:
+ - Fixed bug #28074 (FastCGI: stderr should be written in a FCGI stderr
+ stream).
+ (chris at ex-parrot dot com)
+
+ * sapi/cgi/cgi_main.c:
+ - Fixed bug #28074 (FastCGI: stderr should be written in a FCGI stderr
+ stream).
+
+ * ext/standard/php_parsedate.h
+ ext/standard/php_smart_str.h
+ ext/standard/php_smart_str_public.h
+ ext/standard/url_scanner_ex.c
+ ext/standard/url_scanner_ex.h
+ ext/standard/url_scanner_ex.re:
+ Missing $Id: ChangeLog,v 1.1861 2005/01/11 01:35:43 changelog Exp $ tag
+
+ * ext/standard/credits_ext.h
+ ext/standard/credits_sapi.h:
+ - Update credits
+
+ * ChangeLog
+ ChangeLog.2004.gz:
+ - Compressed 2004 Changelog
+
+ * ZendEngine2/header
+ ZendEngine2/zend_arg_defs.c
+ ZendEngine2/zend_strtod.c
+ ZendEngine2/zend_vm_def.h
+ ZendEngine2/zend_vm_execute.h
+ ZendEngine2/zend_vm_gen.php
+ ZendEngine2/zend_vm_opcodes.h:
+ - Added missing header sections.
+
+2005-01-10 Marcus Boerger <[EMAIL PROTECTED]>
+
+ * ext/sqlite/sqlite.c:
+ - Fix proto
+
+ * ext/sqlite/sqlite.c:
+ - Bugfix #31342: SQLite OO interface with Exceptions (hugo dot pl at
gmail
+ dot com)
+
+ * ext/sqlite/php_sqlite.h
+ ext/sqlite/sqlite.c:
+ - Implement iterator interface in sqlite
+
+2005-01-10 Jani Taskinen <[EMAIL PROTECTED]>
+
+ * ZendEngine2/acinclude.m4
+ ZendEngine2/configure.in:
+ - Added AC_ZEND_C_BIGENDIAN macro (as requested by Andi)
+
+ * configure.in
+ configure.in
+ configure.in:
+ - The pic/no-pic patch by Joe Orton.
+
2005-01-09 Jani Taskinen <[EMAIL PROTECTED]>
* (PHP_4_3)