changelog               Sun Feb 16 20:31:34 2003 EDT

  Modified files:              
    /php4       ChangeLog 
  Log:
  ChangeLog update
  
Index: php4/ChangeLog
diff -u php4/ChangeLog:1.1268 php4/ChangeLog:1.1269
--- php4/ChangeLog:1.1268       Sat Feb 15 20:32:03 2003
+++ php4/ChangeLog      Sun Feb 16 20:31:33 2003
@@ -1,3 +1,176 @@
+2003-02-16  Wez Furlong  <[EMAIL PROTECTED]>
+
+    * win32/installer/setini.php:
+      Some additional sanity.
+
+    * win32/php4dllts.dsp:
+      Add the sunfuncs to the .dsp file for Moshe.
+
+    * win32/php4dllts.dsp:
+      Update win32 project for streams juggling.
+
+    * ext/standard/file.c:
+      Remove unused vars
+
+2003-02-16  Moshe Doron  <[EMAIL PROTECTED]>
+
+    * ext/standard/basic_functions.c
+      ext/standard/config.m4
+      ext/standard/datetime.c
+      ext/standard/datetime.h
+      ext/standard/php_standard.h
+      ext/standard/sunfuncs.c
+      ext/standard/sunfuncs.h
+      ext/standard/tests/general_functions/sunfuncts.phpt
+      ext/standard/tests/time/idate.phpt:
+      
+
+2003-02-16  Wez Furlong  <[EMAIL PROTECTED]>
+
+    * configure.in
+      main/memory_streams.c
+      main/streams.c
+      main/user_streams.c
+      main/streams/.cvsignore
+      main/streams/cast.c
+      main/streams/filter.c
+      main/streams/memory.c
+      main/streams/php_streams_int.h
+      main/streams/plain_wrapper.c
+      main/streams/streams.c
+      main/streams/userspace.c:
+      Move streams files around a bit, to ease maintenance.
+      I will update the win32 .dsp in a moment.
+
+2003-02-16  Georg Richter  <[EMAIL PROTECTED]>
+
+    * ext/mysqli/tests/042.phpt
+      ext/mysqli/tests/047.phpt:
+      fixed output
+
+2003-02-16  Ilia Alshanetsky  <[EMAIL PROTECTED]>
+
+    * ext/mysqli/mysqli_api.c:
+      Reverted lld -> lld patch and added explanation as to why it should not be
+      done.
+
+    * ext/mysqli/mysqli_api.c
+      ext/mysqli/php_mysqli.h:
+      Moved longlong conversion to a macro.
+
+    * ext/mysqli/tests/014.phpt:
+      better skip condition.
+
+2003-02-16  Wez Furlong  <[EMAIL PROTECTED]>
+
+    * ext/standard/tests/file/bug21131.phpt:
+      Remove bogus test.
+      Append mode always causes written data to go to the end of the file,
+      regardless of the current seek position.
+
+    * ext/standard/proc_open.c
+      ext/standard/proc_open.h:
+      Integrate Shanes patch that allows specifying the cwd and environment
+      for the child process created by proc_open().
+
+2003-02-16  Jani Taskinen  <[EMAIL PROTECTED]>
+
+    * (PHP_4_3_1)
+      NEWS:
+      BFN
+
+2003-02-16  Georg Richter  <[EMAIL PROTECTED]>
+
+    * ext/mysqli/tests/047.phpt:
+      test for mysqli_prepare_result
+
+2003-02-16  Wez Furlong  <[EMAIL PROTECTED]>
+
+    * ext/bcmath/libbcmath/src/config.h:
+      Fix bcmath build under win32.
+
+2003-02-16  Georg Richter  <[EMAIL PROTECTED]>
+
+    * ext/mysqli/tests/046.phpt:
+      test for mysqli_stmt_affected_rows (delete command)
+
+    * ext/mysqli/mysqli_api.c
+      ext/mysqli/mysqli_fe.c
+      ext/mysqli/mysqli_nonapi.c
+      ext/mysqli/php_mysqli.h:
+      added new function mysqli_stmt_affected_rows
+      added bigint support for mysqli_affected_rows
+      fixed memleak in mysqli_prepare (stmt->is_null)
+      fixed return type for mysqli_connect
+
+2003-02-16  Wez Furlong  <[EMAIL PROTECTED]>
+
+    * run-tests.php
+      ext/curl/interface.c
+      ext/curl/streams.c
+      ext/fbsql/php_fbsql.c
+      ext/ftp/ftp.c
+      ext/hyperwave/hg_comm.c
+      ext/hyperwave/hw.c
+      ext/imap/php_imap.c
+      ext/ldap/ldap.c
+      ext/mcal/php_mcal.c
+      ext/mysql/php_mysql.c
+      ext/odbc/php_odbc.c
+      ext/rpc/com/com_wrapper.c
+      ext/snmp/snmp.c
+      ext/standard/dns.c
+      ext/standard/file.c
+      ext/standard/fsock.c
+      ext/standard/ftp_fopen_wrapper.c
+      ext/standard/http_fopen_wrapper.c
+      ext/standard/pack.c
+      ext/zlib/zlib.c
+      main/fopen_wrappers.c
+      main/mergesort.c
+      main/network.c
+      main/php.h
+      main/php_open_temporary_file.c
+      main/streams.c
+      win32/php4dllts.dsp
+      win32/sendmail.c
+      win32/time.h:
+      A add much more useful select(2) implementation than is provided by
+      windows sockets.  The winsock implementation will only work with sockets;
+      our implementation works with sockets and file descriptors.
+      By association, stream_select() will now operate correctly with files,
+      pipes and sockets.
+      
+      This change required linking against the winsock2 library.  In terms of
+      compatibility, only older versions of windows 95 do not have winsock2
+      installed by default.  It is available as a redistributable file, and is
+      most likely installed by any OS patches (eg: Internet Explorer) applied by
+      the user.
+      
+      Also, add a win32 compatible pipe test when opening a stream from a pipe. 
+      This test will only work on NT, win2k and XP platforms.  Without this
+      test, interleaved fread() and select() calls would cause the read buffer
+      to be clobbered.  I will be working on a fix for this issue for win9x.
+
+2003-02-16  Anil Madhavapeddy  <[EMAIL PROTECTED]>
+
+    * pear/PEAR/Command/Package.php:
+      fix error msg typo
+
+2003-02-16  Marcus Boerger  <[EMAIL PROTECTED]>
+
+    * sapi/cgi/cgi_main.c
+      sapi/cgi/getopt.c
+      sapi/cgi/php_getopt.h
+      sapi/cli/getopt.c
+      sapi/cli/php.1.in
+      sapi/cli/php_cli.c
+      sapi/cli/php_getopt.h:
+      - Allow long option names
+      - Update CLI's manpage
+      
+      
+
 2003-02-15  Jani Taskinen  <[EMAIL PROTECTED]>
 
     * (PHP_4_3_1)
@@ -309,7 +482,7 @@
 
     * (PHP_4_3)
       sapi/cgi/cgi_main.c:
-      Added missing $Id: ChangeLog,v 1.1268 2003/02/16 01:32:03 changelog Exp $ tag
+      Added missing $Id: ChangeLog,v 1.1269 2003/02/17 01:31:33 changelog Exp $ tag
 
 2003-02-14  Thies C. Arntzen  <[EMAIL PROTECTED]>
 


Reply via email to