RE: [PHP-DEV] php_module_startup: more than one additional_module impossible?

2004-09-12 Thread saguyer
> -Original Message- > From: Norbert Wagner [mailto:[EMAIL PROTECTED] > > Perhaps the sequence in php_module_startup() is essential here, I don't > know... You must have ZTS defined, yes? I've had the same problem. It has something to do with the zend_post_startup() call in php_module_

Re: [PHP-DEV] php_module_startup: more than one additional_module impossible?

2004-09-12 Thread Norbert Wagner
Hi, thank's for your answer! Wez Furlong wrote: You might be right about that. The current prototype does allow this though: zend_module_entry modules[2] = { { ... first module ... }, { ... second module ... } }; php_module_startup(&sapimodule, modules, sizeof(modules)/sizeof(modules[0])); That won

Re: [PHP-DEV] Re: [PATCH] zend_operators DVAL_TO_LVAL fix

2004-09-12 Thread Joe Orton
On Sat, Sep 11, 2004 at 03:22:27PM +0200, Ard Biesheuvel wrote: > Joe Orton wrote: > >GCC on IA64 does wierd things with this macro, though I think there's a > >GCC bug involved there too. This fixes the macro to have well-defined > >behaviour for all values of 'd', and avoids triggering the GCC b

Re: [PHP-DEV] unserialize() and pear

2004-09-12 Thread Nuno Lopes
Yes, its fixed. Thanks Marcus! Nuno - Original Message - Hello Nuno, that should be fixed now. If not report the problem please again here. best regards marcus Saturday, September 11, 2004, 6:17:16 PM, you wrote: Nuno Lopes wrote: Hello Marcus, PHP prints an error for every file in /usr/l

Re: [PHP-DEV] unserialize() and pear

2004-09-12 Thread Marcus Boerger
Hello Nuno, that should be fixed now. If not report the problem please again here. best regards marcus Saturday, September 11, 2004, 6:17:16 PM, you wrote: >> Nuno Lopes wrote: >>> Hello Marcus, >>> >>> PHP prints an error for every file in /usr/local/lib/php/.registry >>> One of those files:

Re: [PHP-DEV] __set __get __call in internal class

2004-09-12 Thread Marcus Boerger
Hello Frédéric, Saturday, September 11, 2004, 9:26:45 PM, you wrote: > hello Marcus, > ... i saw a piece of code in soap.c that extension is not the best place to look at, for it's nature it needs to do very strange things > another way, it's to add a function in zend_exception.c that return 0/

Re: [PHP-DEV] Re: cvs: php-src /ext/standard array.c ZendEngine2 zend_operators.c zend_operators.h

2004-09-12 Thread Nuno Lopes
Derick Rethans wrote: derick Sat Sep 11 10:22:36 2004 EDT Modified files: /ZendEngine2 zend_operators.c zend_operators.h /php-src/ext/standard array.c Log: - MFB: Added the sorting flag SORT_LOCALE_STRING to the sort() functions which makes them sort based on the current locale. T