From: Date: Sat, 11 May 2002 00:21:06 +0000 (+0000) Subject: ChangeLog update X-Git-Tag: php-4.3.0dev-ZendEngine2-Preview1~140 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=548d89d449d2cccf4636c1259750468ecf7fede3;p=php ChangeLog update --- diff --git a/ChangeLog b/ChangeLog index 0b52df1417..10044a337e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,45 @@ +2002-05-10 Edin Kadribasic + + * configure.in: + Fixed "make install" when compiled with --disable-cli option. + +2002-05-10 Markus Fischer + + * sapi/cgi/cgi_main.c + sapi/cli/php_cli.c: + - Prefix the first version line with 'PHP' so it's easier to use shell tools to + parse the version number (both CLI and CGI). + + * sapi/cli/php_cli.c + sapi/cgi/cgi_main.c: - This affects both CGI and CLI sapi: + Remove Zend version output from -m switch and move it over to the output of + the -v switch (-v is supposed to list version numbers, not -m). + +2002-05-10 Christian Stocker + + * ext/domxml/php_domxml.c: + - added fifth optional parameter to domxml_xslt_process. If set, + it will output profiling information to the file stated (chregu) + - introduced version numbering for this extension + +2002-05-10 Martin Jansen + + * pear/Makefile.frag: + * package-pear.xml has been renamed to package-PEAR.xml. + +2002-05-10 Edin Kadribasic + + * NEWS + main/config.w32.h.in + win32/crypt_win32.c + win32/md5crypt.c + win32/md5crypt.h + win32/php4dllts.dsp: Added MD5 support for crypt() on Windows. + + * win32/.cvsignore: Ignoring *.aps files. + + * ext/pgsql/php_pgsql.h: Fix win32 build. + 2002-05-09 Preston L. Bannister * sapi/cgi/cgi_main.c: Backed out preceding change. diff --git a/Zend/ChangeLog b/Zend/ChangeLog index 6e664f1729..0c3a6deda4 100644 --- a/Zend/ChangeLog +++ b/Zend/ChangeLog @@ -1,3 +1,26 @@ +2002-05-10 Andi Gutmans + + * zend_builtin_functions.c: - Nuke C++ comment + + * zend_builtin_functions.c: + - Make debug_backtrace() return an array. Still not finished because I + might want to differentiate between method calls and static methods. + + Example: + $bt = debug_backtrace(); + foreach ($bt as $frame) { + if (isset($frame['class'])) { + print $frame['class']; + print "::"; + } + print $frame['function']; + print " ["; + print $frame['file']; + print ":"; + print $frame['line']; + print "]\n"; + } + 2002-05-08 Andi Gutmans * zend_execute.c