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

2002-09-11 Thread changelog

changelog   Wed Sep 11 20:33:38 2002 EDT

  Modified files:  
/php4   ChangeLog 
  Log:
  ChangeLog update
  
  
Index: php4/ChangeLog
diff -u php4/ChangeLog:1.1158 php4/ChangeLog:1.1159
--- php4/ChangeLog:1.1158   Tue Sep 10 20:33:19 2002
+++ php4/ChangeLog  Wed Sep 11 20:33:37 2002
@@ -1,3 +1,95 @@
+2002-09-11  Edin Kadribasic  [EMAIL PROTECTED]
+
+* ext/standard/filestat.c: My compiler likes it like this.
+
+* ext/standard/array.c: Fix ZTS build.
+
+2002-09-11  Sterling Hughes  [EMAIL PROTECTED]
+
+* ext/swf/swf.c:
+virtual filepath fix, don't know why i bother, the module isn't threadsafe
+and never will be, but still...
+
+* ext/standard/filestat.c:
+max this use the virtual_filepath() function and feel all threadsafe and
+wholesome inside
+
+2002-09-11  Derick Rethans  [EMAIL PROTECTED]
+
+* ext/mysql/php_mysql.c: - Un-deprecating mysql_escape_string
+
+2002-09-11  Marcus Börger  [EMAIL PROTECTED]
+
+* run-tests.php: Unlink output files even if test is skipped.
+
+2002-09-11  Derick Rethans  [EMAIL PROTECTED]
+
+* ext/standard/array.c: - Little whitespace changes
+
+2002-09-11  Andrey Hristov  [EMAIL PROTECTED]
+
+* ext/standard/tests/array/007.phpt:
+Regression test for array_diff() and array_diff_assoc(). The latter is newly
+introduced.
+
+* ext/standard/array.c
+  ext/standard/basic_functions.c
+  ext/standard/php_array.h:
+New function added : array_diff_assoc() . Like array_diff() but does
+additional checks on key values. Test script will be added too.
+
+2002-09-11  Jani Taskinen  [EMAIL PROTECTED]
+
+* ext/gd/config.m4: For now, check only when not using bundled GD lib.
+
+2002-09-11  Sander Roobol  [EMAIL PROTECTED]
+
+* ext/dba/config.m4: Fix configure
+
+2002-09-11  Jani Taskinen  [EMAIL PROTECTED]
+
+* ext/gd/config.m4: Added build test. Bug: #19345
+
+* ext/iconv/iconv.c: Fix bug: #19355 (the parameter is optional)
+
+2002-09-11  Dan Kalowsky  [EMAIL PROTECTED]
+
+* ext/dba/config.m4:
+Patch for Bug #19341 submitted by [EMAIL PROTECTED]
+
+2002-09-11  Jani Taskinen  [EMAIL PROTECTED]
+
+* ext/standard/string.c: tok tok..
+
+2002-09-11  Andrei Zmievski  [EMAIL PROTECTED]
+
+* ext/pcre/php_pcre.c:
+- Added ability to use Perl-style ${n} subpattern references in the
+  replacement string for preg_replace(). Takes care of bug #18442. 
+
+2002-09-11  Jani Taskinen  [EMAIL PROTECTED]
+
+* ext/standard/string.c: ws fix
+
+* ext/standard/string.c: fix proto
+
+* ext/standard/info.c
+  ext/standard/dir.c: ws fix
+
+2002-09-11  Anantha Kesari H Y  [EMAIL PROTECTED]
+
+* ext/ftp/ftp.c: Removed unnecessary code that was added for NetWare
+
+* netware/start.c: Changed the licence to the one used by PHP Group
+
+* main/reentrancy.c: NetWare related changes/modifications
+
+2002-09-11  Edin Kadribasic  [EMAIL PROTECTED]
+
+* NEWS: Added note about file_exits() and friends.
+
+* ext/standard/filestat.c: Fixed file_exists() on platforms using VCWD.
+
 2002-09-10  Edin Kadribasic  [EMAIL PROTECTED]
 
 * ext/standard/array.c





Re: [PHP-CVS] Need info on PHP release dates.

2002-09-11 Thread Edin Kadribasic

You should probably ask these kind of questions in the php-dev group.
But since we're already here :)

Ananth Kesari wrote:
 Hi,
 
 As you are aware, I am committing NetWare related source code changes
 / modiications into PHP-CVS source code tree.
 
 I have a couple of questions here: Is this branch a continuation of
 PHP 4.2.x branch or is this the 4.3.x branch? Or is it that, only one
 branch is used and the different release versions are siphoned off
 that branch? Please let me know.

You are currently commiting into HEAD branch which will eventually
become 4.3.0.
 
 Also, can you tell me when is the next release of 4.2.x branch and
 when is it for 4.3.x? We need to know this for us to plan the
 corresponding release of the latest PHP for NetWare.

It is not certain (probably even unlikely) that there will be another
release from 4.2.x branch. 4.3.0 will be released when ready --
probably in couple of months.

Edin

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




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

2002-09-11 Thread Jani Taskinen

sniper  Wed Sep 11 10:17:27 2002 EDT

  Modified files:  
/php4/ext/standard  dir.c 
  Log:
  ws fix
  
  
Index: php4/ext/standard/dir.c
diff -u php4/ext/standard/dir.c:1.96 php4/ext/standard/dir.c:1.97
--- php4/ext/standard/dir.c:1.96Fri Aug 23 21:19:27 2002
+++ php4/ext/standard/dir.c Wed Sep 11 10:17:26 2002
 -16,7 +16,7 
+--+
  */
 
-/* $Id: dir.c,v 1.96 2002/08/24 01:19:27 helly Exp $ */
+/* $Id: dir.c,v 1.97 2002/09/11 14:17:26 sniper Exp $ */
 
 /* {{{ includes/startup/misc */
 
 -98,9 +98,9 
 
 static void php_set_default_dir(int id TSRMLS_DC)
 {
-if (DIRG(default_dir)!=-1) {
-zend_list_delete(DIRG(default_dir));
-}
+   if (DIRG(default_dir)!=-1) {
+   zend_list_delete(DIRG(default_dir));
+   }
 
if (id != -1) {
zend_list_addref(id);
 -214,7 +214,8 
if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, s, str, str_len) == 
FAILURE) {
RETURN_FALSE;
}
-ret = chroot(str);
+   
+   ret = chroot(str);

if (ret != 0) {
php_error_docref(NULL TSRMLS_CC, E_WARNING, %s (errno %d), 
strerror(errno), errno);
 -326,7 +327,7 
 
 #ifdef HAVE_GLOB
 /* {{{ proto array glob(string pattern [, int flags])
-Find pathnames matching a pattern */
+   Find pathnames matching a pattern */
 PHP_FUNCTION(glob)
 {
char *pattern = NULL;



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




[PHP-CVS] cvs: php4 /ext/dba config.m4

2002-09-11 Thread Dan Kalowsky

kalowskyWed Sep 11 11:05:06 2002 EDT

  Modified files:  
/php4/ext/dba   config.m4 
  Log:
  Patch for Bug #19341 submitted by [EMAIL PROTECTED]
  
  
Index: php4/ext/dba/config.m4
diff -u php4/ext/dba/config.m4:1.19 php4/ext/dba/config.m4:1.20
--- php4/ext/dba/config.m4:1.19 Thu Apr 18 08:30:18 2002
+++ php4/ext/dba/config.m4  Wed Sep 11 11:05:06 2002
@@ -1,5 +1,5 @@
 dnl
-dnl $Id: config.m4,v 1.19 2002/04/18 12:30:18 derick Exp $
+dnl $Id: config.m4,v 1.20 2002/09/11 15:05:06 kalowsky Exp $
 dnl
 
 AC_DEFUN(PHP_TEMP_LDFLAGS,[
@@ -152,10 +152,19 @@
 [  --with-db3[=DIR]Include Berkeley DB3 support],[
   if test $withval != no; then
 for i in /usr/local /usr /usr/local/BerkeleyDB.3.0 $withval; do
-  if test -f $i/include/db3/db.h; then
+  if test -f $i/db3/db.h; then
+THIS_PREFIX=$i
+DB3_EXTRA=db3
+  elif test -f $i/include/db3/db.h; then
 THIS_PREFIX=$i
 DB3_EXTRA=db3/db.h
-  elif test -f $i/include/db.h ; then
+  elif test -f $i/include/db/db3.h; then
+THIS_PREFIX=$i
+DB3_EXTRA=db/db3.h
+  elif test -f $i/include/db3.h; then
+THIS_PREFIX=$i
+DB3_EXTRA=db3.h
+  elif test -f $i/include/db.h ; 
 THIS_PREFIX=$i
 DB3_EXTRA=db.h
   fi



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