Hello, here is my list of important pending bugs which need to be fixed before PHP 4.1.0 can be released IMO.
---------------------------------------------------------------------- Bug 11813 (not really a bug): [ImageGammaCorrect no longer works] Let's keep this open (critical) until it really is solved. And I think there should be two modules in the win32 release, for both 1.8.x and 2.0.x versions of GD. ---------------------------------------------------------------------- Bug 13143 (patch attached): [TSRM fails to build] GCC 2 ignores it, GCC 3 does not. ---------------------------------------------------------------------- Bug 13703: [PHP allows function redefinition] Something weird going on with multiple function definitions in classes ---------------------------------------------------------------------- Bug 13711: [set_time_limit affects other requests on the same Apache process] Trying to reproduce this now. ---------------------------------------------------------------------- Bug 14014: [Need later config.guess/config.sub] Can someone look at bug#14014 before we do 4.1.0 (or what ever the next release is?) It breaks being able to build on OpenUNIX 8. ---------------------------------------------------------------------- regards, Derick Rethans --------------------------------------------------------------------- PHP: Scripting the Web - www.php.net - [EMAIL PROTECTED] SRM: Site Resource Manager - www.vl-srm.net --------------------------------------------------------------------- JDI Media Solutions - www.jdimedia.nl - [EMAIL PROTECTED] Boulevard Heuvelink 102 - 6828 KT Arnhem - The Netherlands ---------------------------------------------------------------------
Index: tsrm_virtual_cwd.c =================================================================== RCS file: /repository/TSRM/tsrm_virtual_cwd.c,v retrieving revision 1.25 diff -u -r1.25 tsrm_virtual_cwd.c --- tsrm_virtual_cwd.c 2001/08/05 01:34:40 1.25 +++ tsrm_virtual_cwd.c 2001/11/16 07:57:05 @@ -553,7 +553,7 @@ va_list arg; va_start(arg, flags); - mode = va_arg(arg, mode_t); + mode = (mode_t) va_arg(arg, int); va_end(arg); f = open(new_state.cwd, flags, mode);
-- PHP Development Mailing List <http://www.php.net/> To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]