[PHP-CVS-DAILY] cvs: php4 / ChangeLog

2002-09-04 Thread changelog

changelog   Wed Sep  4 20:34:16 2002 EDT

  Modified files:  
/php4   ChangeLog 
  Log:
  ChangeLog update
  
  
Index: php4/ChangeLog
diff -u php4/ChangeLog:1.1151 php4/ChangeLog:1.1152
--- php4/ChangeLog:1.1151   Tue Sep  3 20:33:46 2002
+++ php4/ChangeLog  Wed Sep  4 20:34:15 2002
@@ -1,3 +1,110 @@
+2002-09-04  Yasuo Ohgaki  <[EMAIL PROTECTED]>
+
+* ext/pgsql/pgsql.c: php_error -> php_error_docref
+
+2002-09-04  Stefan Esser  <[EMAIL PROTECTED]>
+
+* main/SAPI.c:
+This 2 lines should have been removed when the header() code was rewritten.
+
+2002-09-04  Jani Taskinen  <[EMAIL PROTECTED]>
+
+* sapi/cgi/config.m4
+  sapi/pi3web/config.m4
+  ext/xmlrpc/config.m4
+  ext/xslt/config.m4
+  ext/zlib/config0.m4
+  ext/session/config.m4
+  ext/xml/config.m4
+  ext/mbstring/config.m4
+  ext/mysql/config.m4
+  ext/pdf/config.m4
+  ext/curl/config.m4
+  ext/domxml/config.m4
+  ext/gd/config.m4
+  configure.in
+  acinclude.m4: - Added --disable-all configure option. 
+
+* configure.in: MFH: Fix the missing libgcc problems.
+
+* ext/cyrus/config.m4: ws fix
+
+* ext/cyrus/config.m4:
+Fix the shared build (nobody ever build this as shared?)
+
+2002-09-04  Marcus Börger  <[EMAIL PROTECTED]>
+
+* sapi/cgi/cgi_main.c: Fix headers when default content type is used.
+
+2002-09-04  Martin Kraemer  <[EMAIL PROTECTED]>
+
+* ext/cyrus/config.m4:
+The sasl.h file is in .../include/sasl/ (at least in cyrus-sasl-2.1.6)
+
+2002-09-04  Jani Taskinen  <[EMAIL PROTECTED]>
+
+* ext/sockets/config.m4: Fix bug: #19212
+
+2002-09-04  Sebastian Bergmann  <[EMAIL PROTECTED]>
+
+* ext/overload/overload.c
+  main/internal_functions_win32.c:
+Don't build ext/overload with Zend Engine 2.
+
+2002-09-04  Dan Kalowsky  <[EMAIL PROTECTED]>
+
+* ext/session/config.m4: sniper claims its safe to take these out as well.
+
+* ext/session/mod_files.c: taking out the PWRITE calls too
+
+* ext/session/mod_files.c: Taking out the PWRITE functions too...
+
+* ext/session/mod_files.c: MFH, removing PREAD for Bug #15983
+
+* ext/session/mod_files.c: This fixes Bug #19022 and #15983
+
+2002-09-04  Martin Kraemer  <[EMAIL PROTECTED]>
+
+* ext/fbsql/config.m4: Fix bogus test
+
+2002-09-04  Anantha Kesari H Y  <[EMAIL PROTECTED]>
+
+* netware/phplib.mak:
+Makefile to build for NetWare: extensions, main, netware & regex files
+
+* netware/buildlib.bat:
+Batch file to build extensions and files under main, netware and regex folders
+
+* ext/bcmath/libbcmath/src/config.h: To include the NetWare config file
+
+2002-09-04  Yasuo Ohgaki  <[EMAIL PROTECTED]>
+
+* php.ini-dist
+  php.ini-recommended: Fixed mbstring.func_overload description.
+
+* ext/iconv/config.m4
+  ext/iconv/iconv.c
+  ext/iconv/iconv.dsp
+  ext/iconv/php_iconv.h
+  ext/iconv/tests/translit.phpt: Fixed undefiend referece at build time.
+Fixed transilit test script.
+Make fixes available on Windows.
+Patch by Yoshimori Koizumi<[EMAIL PROTECTED]>
+
+2002-09-04  Dan Kalowsky  <[EMAIL PROTECTED]>
+
+* ext/fbsql/php_fbsql.c:
+Fix for bug #19155 UNTESTED.  Unfortunately I don't have a way to test it
+hopefully the user will.
+
+* ext/fbsql/php_fbsql.h: No more C++ comments again
+
+* ext/fbsql/php_fbsql.h: No C++ comments, again!
+
+* ext/fbsql/php_fbsql.c: No C++ Comments
+
+* ext/fbsql/php_fbsql.c: No C++ comments
+
 2002-09-03  Jani Taskinen  <[EMAIL PROTECTED]>
 
 * ext/standard/basic_functions.c





[PHP-CVS-DAILY] cvs: ZendEngine2 / ChangeLog

2002-09-04 Thread changelog

changelog   Wed Sep  4 20:34:50 2002 EDT

  Modified files:  
/ZendEngine2ChangeLog 
  Log:
  ChangeLog update
  
  
Index: ZendEngine2/ChangeLog
diff -u ZendEngine2/ChangeLog:1.101 ZendEngine2/ChangeLog:1.102
--- ZendEngine2/ChangeLog:1.101 Tue Sep  3 20:34:17 2002
+++ ZendEngine2/ChangeLog   Wed Sep  4 20:34:49 2002
@@ -1,3 +1,40 @@
+2002-09-04  Sebastian Bergmann  <[EMAIL PROTECTED]>
+
+* ZEND_CHANGES: Whitespace fixes.
+
+2002-09-04  Stanislav Malyshev  <[EMAIL PROTECTED]>
+
+* zend_object_handlers.c: remove dead code
+
+* ZEND_CHANGES
+  zend_object_handlers.c: Fix __call and add some docs
+
+2002-09-04  Sebastian Bergmann  <[EMAIL PROTECTED]>
+
+* zend_object_handlers.c: Fix ZTS build.
+
+* ZEND_CHANGES: TBD: __call(), __get(), __set().
+
+2002-09-04  Stanislav Malyshev  <[EMAIL PROTECTED]>
+
+* zend.h
+  zend_compile.c
+  zend_compile.h
+  zend_execute.c
+  zend_extensions.h
+  zend_object_handlers.c
+  zend_objects.c: Support for __get, __set and __call in classes.
+This should work as follows: if class hasn't member with given name,
+__get/__set is called. If class has no method with given name, __call is called.
+__get/__set are not recursive, __call can be.
+
+2002-09-04  Sebastian Bergmann  <[EMAIL PROTECTED]>
+
+* ZEND_CHANGES: Workaround for superfluous comma in var_export() result.
+
+* ZEND_CHANGES:
+Let debug_backtrace() example print out the class name, if applicable, and the 
+function/method arguments.
+
 2002-09-03  Thies C. Arntzen  <[EMAIL PROTECTED]>
 
 * zend_builtin_functions.c: nuke warning





[PHP-CVS-DAILY] cvs: php4 / NEWS

2002-09-04 Thread changelog

changelog   Wed Sep  4 20:35:40 2002 EDT

  Modified files:  
/php4   NEWS 
  Log:
  NEWS update
  
  
Index: php4/NEWS
diff -u php4/NEWS:1. php4/NEWS:1.1112
--- php4/NEWS:1.Tue Sep  3 20:35:09 2002
+++ php4/NEWS   Wed Sep  4 20:35:39 2002
@@ -1,6 +1,7 @@
 PHP 4  NEWS
 |||
 ? ? ??? 2002, Version 4.3.0
+- Added --disable-all configure option. (Jani)
 - Backported debug_backtrace() from ZendEngine2. (Thies)
 - Added html-free phpinfo() output for CLI. (Jan)
 - Fixed socket_recvfrom() to be binary safe. (Jason)