[PHP-DEV] PHP 5.2.6RC5 Released

2008-04-10 Thread Ilia Alshanetsky
We are hard at work on setting an RC record with 5.2.6, with the RC5. Nothing too unusual, this time just a few fairly trivial fixes, so I think we are finally ready for the stable release. I'd like to ask all developers to avoid commits to 5.2 branch in the next week to avoid last minute r

Re: [PHP-DEV] intl win32, which ICU version and binaries?

2008-04-10 Thread Stanislav Malyshev
Hi! Ah? in 3.6/8 it takes three arguments on my architecture (win xp, 32bit mode with amd64). Which version do you use? I have ICU 3.6 AFAIK. Here's a quote from unistr.h: /** * UChar* constructor. * @param text The characters to place in the UnicodeString. * @param textLength The

Re: [PHP-DEV] intl win32, which ICU version and binaries?

2008-04-10 Thread Pierre Joye
On Thu, Apr 10, 2008 at 9:07 PM, Stanislav Malyshev <[EMAIL PROTECTED]> wrote: > Hi! > > > > > UnicodeString::UnicodeString(unsigned short const *,int) seems > > actually wrong, for what I can see in the headers. There is no > > > > It builds on my machine. And it uses UnicodeString(UChar *, int)

Re: [PHP-DEV] [PATCH] Scanner fixes and tweaks

2008-04-10 Thread Nuno Lopes
Patch applied, thanks! I haven't merged my other patch to HEAD yet, but I'll do so ASAP. Thanks, Nuno - Original Message - Hi Scott, I noticed that Nuno changed yyless() to be like flex after your commit (not in HEAD? I considered that, but figured you guys wanted it different :-))

Re: [PHP-DEV] intl win32, which ICU version and binaries?

2008-04-10 Thread Stanislav Malyshev
Hi! UnicodeString::UnicodeString(unsigned short const *,int) seems actually wrong, for what I can see in the headers. There is no It builds on my machine. And it uses UnicodeString(UChar *, int) which looks OK and ctor with this signature is defined in unistr.h. it this way is correct, sho

Re: [PHP-DEV] Small test case fixes / observations (php-5.2.6_rc4)

2008-04-10 Thread Nuno Lopes
Commited, thanks! Nuno On 2008-04-06 23:44, Christian Hoffmann wrote: > Heya, > > while building and testing a minimal version of PHP and as such > disabling the session extension, I discovered that > ext/standard/tests/general_functions/bug44394_2.phpt fails without the > session extension bei

Re: [PHP-DEV] intl win32, which ICU version and binaries?

2008-04-10 Thread Pierre Joye
On Thu, Apr 10, 2008 at 8:13 PM, Stanislav Malyshev <[EMAIL PROTECTED]> wrote: > Hi! > > > > > > > Is what I get: > > > > http://phpfi.com/308828 > > > > I did not investigate further yet but it may be simply a missing include. > > > > I've fixed the ascii_check issue, but don't see other ones, cu

Re: [PHP-DEV] intl win32, which ICU version and binaries?

2008-04-10 Thread Stanislav Malyshev
Hi! Is what I get: http://phpfi.com/308828 I did not investigate further yet but it may be simply a missing include. I've fixed the ascii_check issue, but don't see other ones, current CVS builds fine for me. -- Stanislav Malyshev, Zend Software Architect [EMAIL PROTECTED] http://www.ze

[PHP-DEV] FPE in ld-linux-x86-64.so loading custom extension

2008-04-10 Thread Michael B Allen
Dear All, One of my clients is seeing an FPE in ld-linux-x86-64.so when loading extensions with my custom extension loaded. The backtrace is inlined below. With my extension disabled, everything loads and runs ok. I can't tell if the loader is in the process of loading my extension. I have an Op

Re: [PHP-DEV] [PATCH] Scanner fixes and tweaks

2008-04-10 Thread Philip Olson
On 10 Apr 2008, at 09:48, Marcus Boerger wrote: Hello Matt, Thursday, April 10, 2008, 3:50:41 PM, you wrote: Hi Scott, I noticed that Nuno changed yyless() to be like flex after your commit (not in HEAD? I considered that, but figured you guys wanted it different :-)), but now the here

Re: [PHP-DEV] [PATCH] Scanner fixes and tweaks

2008-04-10 Thread Marcus Boerger
Hello Matt, Thursday, April 10, 2008, 3:50:41 PM, you wrote: > Hi Scott, > I noticed that Nuno changed yyless() to be like flex after your commit (not > in HEAD? I considered that, but figured you guys wanted it different :-)), > but now the heredoc end part is wrong again (hehe), and I see Ton

Re: [PHP-DEV] [PATCH] Scanner fixes and tweaks

2008-04-10 Thread Matt Wilmas
Hi Scott, I noticed that Nuno changed yyless() to be like flex after your commit (not in HEAD? I considered that, but figured you guys wanted it different :-)), but now the heredoc end part is wrong again (hehe), and I see Tony reported the broken tests... Attached patch puts it back to pre-re2c

Re: [PHP-DEV] Re: destroy the current object (PDO)

2008-04-10 Thread Olivier Bonvalet
Ok, so if I don't want PDO stop the script on error, I have to always put a try-catch when calling the constructor, since the ATTR_ERRMODE is not used for connection. So I will update my scripts in this way... thanks. Olivier Johannes Schlüter a écrit : On Wed, 2008-04-09 at 10:14 +0200, Olivi

Re: [PHP-DEV] intl win32, which ICU version and binaries?

2008-04-10 Thread Pierre Joye
On Thu, Apr 10, 2008 at 12:08 PM, Pierre Joye <[EMAIL PROTECTED]> wrote: > On Wed, Apr 9, 2008 at 6:56 PM, Stanislav Malyshev <[EMAIL PROTECTED]> wrote: > > > > > I'm running some more tests and evaluation on windows and got stuck in > > > the build session. Which ICU version do you use? Or do y

[PHP-DEV] Re: destroy the current object (PDO)

2008-04-10 Thread Johannes Schlüter
On Wed, 2008-04-09 at 10:14 +0200, Olivier Bonvalet wrote: > public function __construct( $dsn, $user, $password ) > { > try { > parent::__construct( $dsn, $user, $password ); > } catch( PDOException $e ) { > echo 'there is an error... but continue t

Re: [PHP-DEV] [PATCH] Allow mixed $initial in array_reduce

2008-04-10 Thread Marcus Boerger
Hello Christian, looks good to me. Sidenote: If you cvs add the new test and then do cvs di -N, then you get the new files and the stuff you changed in one diff. If you do not have access then a) you need to do the cvs add step manually by editing the CVS/Entries file and putting in a dummy line

Re: [PHP-DEV] intl win32, which ICU version and binaries?

2008-04-10 Thread Pierre Joye
On Wed, Apr 9, 2008 at 6:56 PM, Stanislav Malyshev <[EMAIL PROTECTED]> wrote: > > > I'm running some more tests and evaluation on windows and got stuck in > > the build session. Which ICU version do you use? Or do you use the > > binaries provided by IBM (I tried with vc2k3 without much success)? >