[PHP-DEV] CVS Account Request: sankazim

2007-02-20 Thread Emanuele Ruffaldi
Publishing of the AMFEXT extension http://www.teslacore.it/wiki/index.php?title=AMFEXT -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] RCs explained (draft)

2007-02-20 Thread Antony Dovgal
On 02/20/2007 03:15 AM, Mike R wrote: Antony Dovgal write: On 02/19/2007 08:40 PM, Marcus Boerger wrote: If they only help us they wouldn't do anything. So we need to make clear that they help themselves by running the tests and their own software. Well, saying that they help only

Re: [PHP-DEV] fileinfo for 5.2.2

2007-02-20 Thread Derick Rethans
On Sun, 18 Feb 2007, Kevin Waterson wrote: Is it possible to include the current pecl extension fileinfo. It is just silly not having the ability to verify a file type as a standard feature. This was discussed earlier and it was thought to have some merit. Can we make it happen? I am all

[PHP-DEV] 4.4.6RC1

2007-02-20 Thread Derick Rethans
Hello! there is a critical issues in PHP 4.4.5: - when register_globals = On, sessions don't work correctly (segfaults). Because of this I'd like to release a 4.4.6 soon with this fixes. As there is also an upgrade to pcre 7.0 we'd need atleast one RC, which I plan to release on Thursday. Any

Re: [PHP-DEV] fileinfo for 5.2.2

2007-02-20 Thread Arnold Daniels
I'm also very in favor of this, though I like it much better if it would use the same config file as `file` uses. Otherwise it's quite confusion where to config magic and hard to understand why the result differs. Arnold Derick Rethans wrote: On Sun, 18 Feb 2007, Kevin Waterson wrote:

Re: [PHP-DEV] fileinfo for 5.2.2

2007-02-20 Thread Derick Rethans
On Tue, 20 Feb 2007, Arnold Daniels wrote: I'm also very in favor of this, though I like it much better if it would use the same config file as `file` uses. Otherwise it's quite confusion where to config magic and hard to understand why the result differs. The idea is to embed the database so

Re: [PHP-DEV] fileinfo for 5.2.2

2007-02-20 Thread Lukas Kahwe Smith
Derick Rethans wrote: On Tue, 20 Feb 2007, Arnold Daniels wrote: I'm also very in favor of this, though I like it much better if it would use the same config file as `file` uses. Otherwise it's quite confusion where to config magic and hard to understand why the result differs. The idea is

Re: [PHP-DEV] 4.4.6RC1

2007-02-20 Thread Derick Rethans
On Tue, 20 Feb 2007, Ilia Alshanetsky wrote: RC followed by a quick release sounds like a good plan. When do you plan to make the RC? ... we'd need atleast one RC, which I plan to release on Thursday. ... :) regards, Derick -- PHP Internals - PHP Runtime Development Mailing List To

Re: [PHP-DEV] 4.4.6RC1

2007-02-20 Thread William A. Rowe, Jr.
Derick Rethans wrote: Hello! there is a critical issues in PHP 4.4.5: - when register_globals = On, sessions don't work correctly (segfaults). Because of this I'd like to release a 4.4.6 soon with this fixes. As there is also an upgrade to pcre 7.0 we'd need atleast one RC, which I

Re: [PHP-DEV] 4.4.6RC1

2007-02-20 Thread Pierre
On 2/20/07, William A. Rowe, Jr. [EMAIL PROTECTED] wrote: Derick Rethans wrote: Hello! there is a critical issues in PHP 4.4.5: - when register_globals = On, sessions don't work correctly (segfaults). Because of this I'd like to release a 4.4.6 soon with this fixes. As there is also an

[PHP-DEV] Z_BVAL (lvalue casts)

2007-02-20 Thread Oliver Block
Hello internals, I don't know if you are aware of that. I just tried to compile some pecl code. I get an error message using this with gcc 4.x if it is used like Z_BVAL(myval) = ...; I was told it the gcc-team deprecated lvalue casts with version 3.4. Regards, Oliver -- PHP Internals -

Re: [PHP-DEV] 4.4.6RC1

2007-02-20 Thread Jim Jagielski
Pierre wrote: Good question. What's about 4.4.6 with only the required fix(es)? Or is there very good reason to update pcre now? 4.4.6 with required fixes seems the safest and fastest. Certainly for those who can't/won't downgrade to 4.4.4 but find 4.4.5 problematic. --

Re: [PHP-DEV] pcre build problems

2007-02-20 Thread Chris Malton
Oops, No I'm not used to building php from CVS. I'll create a shell script that calls the following in the right order for me: cvs update ./cvsclean ./configure --my-options make make test Then we'll see what happens! Rebuilding with ./cvsclean run! Chris Hannes Magnusson wrote: Did you

Re: [PHP-DEV] pcre build problems

2007-02-20 Thread Antony Dovgal
On 02/20/2007 11:49 PM, Chris Malton wrote: Oops, No I'm not used to building php from CVS. I'll create a shell script that calls the following in the right order for me: cvs update ./cvsclean insert ./buildconf here ./configure --my-options make make test Then we'll see what happens!

Re: [PHP-DEV] Re: pcre build problems

2007-02-20 Thread Antony Dovgal
On 02/21/2007 12:17 AM, Chris Malton wrote: OK, there are still some problems with PHP6, as indicated by my make test command. The script has posted my results to the server. I await the message's arrival on php.qa Btw, it won't appear on php.qa. Only test results for current releases and

Re: [PHP-DEV] Re: pcre build problems

2007-02-20 Thread Hannes Magnusson
On 2/20/07, Chris Malton [EMAIL PROTECTED] wrote: OK, there are still some problems with PHP6, as indicated by my make test command. The script has posted my results to the server. I await the message's arrival on php.qa PHP QA only accepts test results from the current test or stable

[PHP-DEV] Re: Z_BVAL (lvalue casts)

2007-02-20 Thread Michael Wallner
Oliver Block wrote: Hello internals, I don't know if you are aware of that. I just tried to compile some pecl code. I get an error message using this with gcc 4.x if it is used like Z_BVAL(myval) = ...; That should be ZVAL_BOOL(z, ...); So, what's been some pecl code? -- Michael --