[PHP-CVS-DAILY] cvs: php-src / ChangeLog

2004-06-06 Thread changelog
changelog   Sun Jun  6 20:32:17 2004 EDT

  Modified files:  
/php-srcChangeLog 
  Log:
  ChangeLog update
  
http://cvs.php.net/diff.php/php-src/ChangeLog?r1=1.1649r2=1.1650ty=u
Index: php-src/ChangeLog
diff -u php-src/ChangeLog:1.1649 php-src/ChangeLog:1.1650
--- php-src/ChangeLog:1.1649Sat Jun  5 20:33:16 2004
+++ php-src/ChangeLog   Sun Jun  6 20:32:16 2004
@@ -1,3 +1,60 @@
+2004-06-06  Pierre-Alain Joye  [EMAIL PROTECTED]
+
+* pear/go-pear-list.php:
+  - No more Pager
+
+* pear/go-pear-list.php:
+  - Update for 5.0RC3
+
+2004-06-06  Ilia Alshanetsky  [EMAIL PROTECTED]
+
+* (PHP_4_3)
+  NEWS
+  ext/standard/dir.c:
+  MFH: Fixed bug #28649 (Proper glob() return value on Linux when there are
+  no matches).
+
+* ext/standard/dir.c:
+  Fixed bug #28649 (Proper glob() return value on Linux when there are no
+  matches).
+
+2004-06-06  Greg Beaver  [EMAIL PROTECTED]
+
+* pear/tests/PEAR_test_mock_pearweb.php.inc
+  pear/tests/download_test.config.inc
+  pear/tests/package-PEARtests.xml
+  pear/tests/pear_downloader_invalid.phpt:
+  update unit tests for PEAR 1.4.0dev6, using new getDownloadURL() xml-rpc
+  call
+
+* pear/scripts/pearcmd.php:
+  add missing $tmp to PEAR::isError()
+
+* pear/scripts/pearcmd.php:
+  eliminate the annoyance of upgrading from crapster versions of PEAR once
+  and for all.
+  
+  Now, if getopt2 exists, it is used, otherwise getopt is used.
+
+2004-06-06  Georg Richter  [EMAIL PROTECTED]
+
+* ext/mysqli/mysqli_api.c
+  ext/mysqli/mysqli_fe.c
+  ext/mysqli/php_mysqli.h:
+  removed conditional defines for load_data_infile_handlers on windows
+  (4.1.2 windows build is fixed now on mysql.com)
+
+2004-06-06  Stefan Esser  [EMAIL PROTECTED]
+
+* ZendEngine2/zend_compile.h
+  ZendEngine2/zend_opcode.c:
+  Fixed Zend Function Destructor to use correct TSRM handle.
+
+2004-06-06  Sebastian Bergmann  [EMAIL PROTECTED]
+
+* ext/mysqli/mysqli.c:
+  ZTS fixes.
+
 2004-06-05  Georg Richter  [EMAIL PROTECTED]
 
 * NEWS:
@@ -4670,7 +4727,7 @@
 2004-03-18  Pierre-Alain Joye  [EMAIL PROTECTED]
 
 * ext/gd/tests/bug27582_2.phpt:
-  - Fix the test description and $Id: ChangeLog,v 1.1649 2004/06/06 00:33:16 
changelog Exp $
+  - Fix the test description and $Id: ChangeLog,v 1.1650 2004/06/07 00:32:16 
changelog Exp $
 
 2004-03-18  Derick Rethans  [EMAIL PROTECTED]
 


[PHP-CVS] cvs: php-src /ext/mysqli mysqli_api.c mysqli_fe.c php_mysqli.h

2004-06-06 Thread Georg Richter
georg   Sun Jun  6 04:52:19 2004 EDT

  Modified files:  
/php-src/ext/mysqli mysqli_api.c mysqli_fe.c php_mysqli.h 
  Log:
  removed conditional defines for load_data_infile_handlers on windows
  (4.1.2 windows build is fixed now on mysql.com)
  
  
http://cvs.php.net/diff.php/php-src/ext/mysqli/mysqli_api.c?r1=1.82r2=1.83ty=u
Index: php-src/ext/mysqli/mysqli_api.c
diff -u php-src/ext/mysqli/mysqli_api.c:1.82 php-src/ext/mysqli/mysqli_api.c:1.83
--- php-src/ext/mysqli/mysqli_api.c:1.82Sat Jun  5 14:31:56 2004
+++ php-src/ext/mysqli/mysqli_api.c Sun Jun  6 04:52:19 2004
@@ -15,7 +15,7 @@
   | Author: Georg Richter [EMAIL PROTECTED]|
   +--+
 
-  $Id: mysqli_api.c,v 1.82 2004/06/05 18:31:56 georg Exp $ 
+  $Id: mysqli_api.c,v 1.83 2004/06/06 08:52:19 georg Exp $ 
 */
 
 #ifdef HAVE_CONFIG_H
@@ -1042,7 +1042,6 @@
 }
 /* }}} */
 
-#ifndef PHP_WIN32
 /* {{{ proto mysqli_set_local_infile_default(object link)
unsets user defined handler for load local infile command */
 PHP_FUNCTION(mysqli_set_local_infile_default)
@@ -1105,7 +1104,6 @@
php_local_infile_end, php_local_infile_error, (void 
*)mysql); 
 }
 /* }}} */
-#endif
 
 /* {{{ proto bool mysqli_more_results(object link)
check if there any more query results from a multi query */
http://cvs.php.net/diff.php/php-src/ext/mysqli/mysqli_fe.c?r1=1.36r2=1.37ty=u
Index: php-src/ext/mysqli/mysqli_fe.c
diff -u php-src/ext/mysqli/mysqli_fe.c:1.36 php-src/ext/mysqli/mysqli_fe.c:1.37
--- php-src/ext/mysqli/mysqli_fe.c:1.36 Sat Jun  5 14:31:56 2004
+++ php-src/ext/mysqli/mysqli_fe.c  Sun Jun  6 04:52:19 2004
@@ -15,7 +15,7 @@
   | Author: Georg Richter [EMAIL PROTECTED]|
   +--+
 
-  $Id: mysqli_fe.c,v 1.36 2004/06/05 18:31:56 georg Exp $ 
+  $Id: mysqli_fe.c,v 1.37 2004/06/06 08:52:19 georg Exp $ 
 */
 
 #ifdef HAVE_CONFIG_H
@@ -96,10 +96,8 @@
PHP_FE(mysqli_info,
 NULL)
PHP_FE(mysqli_insert_id,   
 NULL)
PHP_FE(mysqli_kill,
 NULL)
-#ifndef PHP_WIN32
PHP_FE(mysqli_set_local_infile_default, NULL)
PHP_FE(mysqli_set_local_infile_handler, NULL)
-#endif
PHP_FE(mysqli_master_query,
 NULL)
PHP_FE(mysqli_more_results,
 NULL)
PHP_FE(mysqli_multi_query, 
 NULL)
http://cvs.php.net/diff.php/php-src/ext/mysqli/php_mysqli.h?r1=1.36r2=1.37ty=u
Index: php-src/ext/mysqli/php_mysqli.h
diff -u php-src/ext/mysqli/php_mysqli.h:1.36 php-src/ext/mysqli/php_mysqli.h:1.37
--- php-src/ext/mysqli/php_mysqli.h:1.36Sat Jun  5 14:31:56 2004
+++ php-src/ext/mysqli/php_mysqli.h Sun Jun  6 04:52:19 2004
@@ -15,7 +15,7 @@
   | Author: Georg Richter [EMAIL PROTECTED]|
   +--+
 
-  $Id: php_mysqli.h,v 1.36 2004/06/05 18:31:56 georg Exp $ 
+  $Id: php_mysqli.h,v 1.37 2004/06/06 08:52:19 georg Exp $ 
 */
 
 /* A little hack to prevent build break, when mysql is used together with
@@ -310,10 +310,8 @@
 PHP_FUNCTION(mysqli_insert_id);
 PHP_FUNCTION(mysqli_init);
 PHP_FUNCTION(mysqli_kill);
-#ifndef PHP_WIN32
 PHP_FUNCTION(mysqli_set_local_infile_default);
 PHP_FUNCTION(mysqli_set_local_infile_handler);
-#endif
 PHP_FUNCTION(mysqli_master_query);
 PHP_FUNCTION(mysqli_more_results);
 PHP_FUNCTION(mysqli_multi_query);

-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-CVS] cvs: php-src /ext/standard dir.c

2004-06-06 Thread Ilia Alshanetsky
iliaa   Sun Jun  6 12:21:12 2004 EDT

  Modified files:  
/php-src/ext/standard   dir.c 
  Log:
  Fixed bug #28649 (Proper glob() return value on Linux when there are no
  matches).
  
  
http://cvs.php.net/diff.php/php-src/ext/standard/dir.c?r1=1.138r2=1.139ty=u
Index: php-src/ext/standard/dir.c
diff -u php-src/ext/standard/dir.c:1.138 php-src/ext/standard/dir.c:1.139
--- php-src/ext/standard/dir.c:1.138Tue May 11 09:34:19 2004
+++ php-src/ext/standard/dir.c  Sun Jun  6 12:21:11 2004
@@ -16,7 +16,7 @@
+--+
  */
 
-/* $Id: dir.c,v 1.138 2004/05/11 13:34:19 iliaa Exp $ */
+/* $Id: dir.c,v 1.139 2004/06/06 16:21:11 iliaa Exp $ */
 
 /* {{{ includes/startup/misc */
 
@@ -400,7 +400,7 @@
 * doesn't. This ensure that if no match is found, an empty 
array
 * is always returned so it can be used without worrying in 
e.g.
 * foreach() */
-#if __linux__
+#ifndef __linux__
RETURN_FALSE;
 #else
array_init(return_value);

-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-CVS] cvs: php-src(PHP_4_3) / NEWS /ext/standard dir.c

2004-06-06 Thread Ilia Alshanetsky
iliaa   Sun Jun  6 12:21:31 2004 EDT

  Modified files:  (Branch: PHP_4_3)
/php-srcNEWS 
/php-src/ext/standard   dir.c 
  Log:
  MFH: Fixed bug #28649 (Proper glob() return value on Linux when there are
  no matches).
  
  
http://cvs.php.net/diff.php/php-src/NEWS?r1=1.1247.2.675r2=1.1247.2.676ty=u
Index: php-src/NEWS
diff -u php-src/NEWS:1.1247.2.675 php-src/NEWS:1.1247.2.676
--- php-src/NEWS:1.1247.2.675   Fri Jun  4 11:27:05 2004
+++ php-src/NEWSSun Jun  6 12:21:30 2004
@@ -1,6 +1,8 @@
 PHP 4  NEWS
 |||
 ?? ??? 2004, Version 4.3.8
+- Fixed bug #28649 (Proper glob() return value on Linux when there are no
+  matches). (Ilia)
 - Fixed bug #28632 (Prevent open_basedir bypass via MySQL's LOAD DATA LOCAL).
   (Ilia)
 - Fixed bug #28627 (When multiple MySQL links are used default link is leaked).
http://cvs.php.net/diff.php/php-src/ext/standard/dir.c?r1=1.109.2.16r2=1.109.2.17ty=u
Index: php-src/ext/standard/dir.c
diff -u php-src/ext/standard/dir.c:1.109.2.16 php-src/ext/standard/dir.c:1.109.2.17
--- php-src/ext/standard/dir.c:1.109.2.16   Tue May 11 09:34:31 2004
+++ php-src/ext/standard/dir.c  Sun Jun  6 12:21:30 2004
@@ -16,7 +16,7 @@
+--+
  */
 
-/* $Id: dir.c,v 1.109.2.16 2004/05/11 13:34:31 iliaa Exp $ */
+/* $Id: dir.c,v 1.109.2.17 2004/06/06 16:21:30 iliaa Exp $ */
 
 /* {{{ includes/startup/misc */
 
@@ -391,7 +391,7 @@
 * doesn't. This ensure that if no match is found, an empty 
array
 * is always returned so it can be used without worrying in 
e.g.
 * foreach() */
-#if __linux__
+#ifndef __linux__
RETURN_FALSE;
 #else
array_init(return_value);

-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-CVS] cvs: php-src(PHP_4_3) /ext/sockets sockets.c

2004-06-06 Thread Sara Golemon
pollita Mon Jun  7 00:42:41 2004 EDT

  Modified files:  (Branch: PHP_4_3)
/php-src/ext/socketssockets.c 
  Log:
  Missing length limit parameter.
  
http://cvs.php.net/diff.php/php-src/ext/sockets/sockets.c?r1=1.125.2.23r2=1.125.2.24ty=u
Index: php-src/ext/sockets/sockets.c
diff -u php-src/ext/sockets/sockets.c:1.125.2.23 
php-src/ext/sockets/sockets.c:1.125.2.24
--- php-src/ext/sockets/sockets.c:1.125.2.23Wed May 26 02:54:00 2004
+++ php-src/ext/sockets/sockets.c   Mon Jun  7 00:42:40 2004
@@ -19,7 +19,7 @@
+--+
  */
 
-/* $Id: sockets.c,v 1.125.2.23 2004/05/26 06:54:00 derick Exp $ */
+/* $Id: sockets.c,v 1.125.2.24 2004/06/07 04:42:40 pollita Exp $ */
 
 #ifdef HAVE_CONFIG_H
 #include config.h
@@ -350,7 +350,7 @@
buf = hstrerror(error);
 #else
{
-   spprintf((SOCKETS_G(strerror_buf)), Host lookup error %d, 
error);
+   spprintf((SOCKETS_G(strerror_buf)), 0, Host lookup error 
%d, error);
buf = SOCKETS_G(strerror_buf);
}
 #endif

-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-CVS] cvs: php-src /ext/sockets sockets.c

2004-06-06 Thread Sara Golemon
pollita Mon Jun  7 01:00:38 2004 EDT

  Modified files:  
/php-src/ext/socketssockets.c 
  Log:
  MFB: Missing length limit parameter.
  
http://cvs.php.net/diff.php/php-src/ext/sockets/sockets.c?r1=1.164r2=1.165ty=u
Index: php-src/ext/sockets/sockets.c
diff -u php-src/ext/sockets/sockets.c:1.164 php-src/ext/sockets/sockets.c:1.165
--- php-src/ext/sockets/sockets.c:1.164 Wed May 26 02:53:04 2004
+++ php-src/ext/sockets/sockets.c   Mon Jun  7 01:00:37 2004
@@ -19,7 +19,7 @@
+--+
  */
 
-/* $Id: sockets.c,v 1.164 2004/05/26 06:53:04 derick Exp $ */
+/* $Id: sockets.c,v 1.165 2004/06/07 05:00:37 pollita Exp $ */
 
 #ifdef HAVE_CONFIG_H
 #include config.h
@@ -322,7 +322,7 @@
buf = hstrerror(error);
 #else
{
-   spprintf((SOCKETS_G(strerror_buf)), Host lookup error %d, 
error);
+   spprintf((SOCKETS_G(strerror_buf)), 0, Host lookup error 
%d, error);
buf = SOCKETS_G(strerror_buf);
}
 #endif

-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php