Re: [PHP-DEV] Segfault in current HEAD

2004-05-26 Thread Andi Gutmans
What crashes? At 08:27 AM 5/26/2004 +0200, Sebastian Bergmann wrote: Timm Friebe wrote: > Works fine here. I just noticed that it works fine here under Linux, too, but still crashes on Windows. Odd. -- Sebastian Bergmann http://sebastian-bergmann.de/ http://phpOpenTracker.de/

Re: [PHP-DEV] Segfault in current HEAD

2004-05-26 Thread Sebastian Bergmann
Andi Gutmans wrote: > What crashes? -- Sebastian Bergmann http://sebastian-bergmann.de/ http://phpOpenTracker.de/ Das Buch zu PHP 5: http://professionelle-softwareentwicklung-mit-php5.de/ -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http

RE: [PHP-DEV] [PATCH] primitive load order deps for unix build system

2004-05-26 Thread Wez Furlong
We've done a fair bit of testing, refinement etc. on a number of systems. There are only two problem cases: mawk: runs, but doesn't appear to change the deps order. In other words, it doesn't make any difference, but at least it doesn't break the build. Solaris /usr/bin/awk: doesn't like user d

Re: [PHP-DEV] PHP 5.0 RC 3

2004-05-26 Thread Ilia Alshanetsky
Latest CVS appears to crash during pear install and several tests fail due to a rather strange message: (null)(0) : Freeing 0x4036CF5C (0 bytes), script=/path/to/bug20539.php === Total 1 memory leaks detected === The crash backtrace is as follows: #0 shutdown_memory_manager (silent=0, full_sh

RE: [PHP-DEV] [PATCH] primitive load order deps for unix build system

2004-05-26 Thread Sascha Schumann
Wez, can you please ensure that the awk script works on BSDI. We have had bad surprises with that particular platform before, because they are sometimes out of touch with the rest of the BSD camp. So, even if it works on FreeBSD, you cannot fully rely on that information.

RE: [PHP-DEV] [PATCH] primitive load order deps for unix build system

2004-05-26 Thread Wez Furlong
Does anyone have a BSDI box to test this on? --Wez. > Wez, > > can you please ensure that the awk script works on BSDI. We > have had bad surprises with that particular platform before, > because they are sometimes out of touch with the rest of the > BSD camp. So, even if

Re: [PHP-DEV] PHP 5.0 RC 3

2004-05-26 Thread Andi Gutmans
Can you please do a clean build and if it still happens send me a reproducing case? Thanks, Andi At 08:47 AM 5/26/2004 -0400, Ilia Alshanetsky wrote: Latest CVS appears to crash during pear install and several tests fail due to a rather strange message: (null)(0) : Freeing 0x4036CF5C (0 bytes),

Re: [PHP-DEV] PHP 5.0 RC 3

2004-05-26 Thread Ilia Alshanetsky
Andi, This was made from a clean build. The reproducing case is "make install". Ilia On May 26, 2004 10:26 am, you wrote: > Can you please do a clean build and if it still happens send me a > reproducing case? > > Thanks, > > Andi > > At 08:47 AM 5/26/2004 -0400, Ilia Alshanetsky wrote: > >Lates

[PHP-DEV] [PATCH] fix couple of typos in main/streams/

2004-05-26 Thread Antony Dovgal
Hi all! This tiny patch will fix compile warnings in ext/standard/streamfuncs.c, that were caused by typos in main/streams/. --- Wbr, Antony Dovgal aka tony2001 [EMAIL PROTECTED] ? filters.diff Index: filter.c === RCS file: /reposi

[PHP-DEV] Constant value as a zval*

2004-05-26 Thread Andrei Zmievski
This reminds me: why do we have constant value as a regular zval instead of zval*? On every constant fetch we are invoking a copy constructor and that can add up in applications that use a lot of constants, PEAR-based ones especially. I don't see any compeling architectural reason for it. Andi, Zee

[PHP-DEV] [PATCH] libxml - Move Callback Reg to Request Init

2004-05-26 Thread Paul Querna
Patch Moves the Registering of the PHP XML Streams to the request init, instead of installing them globaly in the Module init. This is needed if any other Apache modules use libxml2 on a non-php request. If this patch is not applied, any other use of libxml2 in the same process will likely fail w

[PHP-DEV] Re: Constant value as a zval*

2004-05-26 Thread Andi Gutmans
I don't think there's a good reason especially as I used zval * for class constants. Probably just because it's legacy code and it was never changed. I'll try and play around with it right after 5.0. Andi At 02:04 PM 5/26/2004 -0700, Andrei Zmievski wrote: This reminds me: why do we have constant