Re: [PHP-DEV] Snaps drivers show wrong build date

2007-09-06 Thread Pierre
On 9/7/07, Raghubansh <[EMAIL PROTECTED]> wrote: > Hi all, > > I have downloaded php5 and php6 drivers for windows a while ago. Drivers are > named correctly ( with current date ) but when executed "php -v" found that > build dates indicates 1st Sep 2007. > > Driver file name : php5.2-win32-2007090

Re: [PHP-DEV] Snaps drivers show wrong build date

2007-09-06 Thread Alexey Zakhlestin
20070901 is exactly Sep 1 2007 isn't it? On 9/7/07, Raghubansh <[EMAIL PROTECTED]> wrote: > Hi all, > > I have downloaded php5 and php6 drivers for windows a while ago. Drivers are > named correctly ( with current date ) but when executed "php -v" found that > build dates indicates 1st Sep 2007. >

[PHP-DEV] Snaps drivers show wrong build date

2007-09-06 Thread Raghubansh
Hi all, I have downloaded php5 and php6 drivers for windows a while ago. Drivers are named correctly ( with current date ) but when executed "php -v" found that build dates indicates 1st Sep 2007. Driver file name : php5.2-win32-200709011630.zip C:\workdir>php -v PHP 5.2.5-dev (cli) (built: Sep

Re: [PHP-DEV] Patch for macros for tracking refcount and is_ref

2007-09-06 Thread David Wang
On 9/7/07, Andi Gutmans <[EMAIL PROTECTED]> wrote: > The only thing which I'd like to change is to make sure the __gc naming > is in an #if ZEND_GC for now otherwise we'll be breaking lots of third > party libraries and PECL extensions. Here's an updated version: http://zoo.cs.yale.edu/~yw226/macr

RE: [PHP-DEV] Patch for macros for tracking refcount and is_ref

2007-09-06 Thread Andi Gutmans
Hi David, In general the patch is fine. The only thing which I'd like to change is to make sure the __gc naming is in an #if ZEND_GC for now otherwise we'll be breaking lots of third party libraries and PECL extensions. Andi > -Original Message- > From: David Wang [mailto:[EMAIL PROTECTE

[PHP-DEV] CVS Account Request: nicholsr

2007-09-06 Thread Robert Nicholson
Contributing phpt testcases. I am working with Zoe Slattery and Raghu Kumar. I have quite a lot of testcases to contribute so sending them in through the QA mailing list is going to generate work for others. -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http:/

Re: [PHP-DEV] PHP bugs in Turkish locale

2007-09-06 Thread Jani Taskinen
I added a note about this. I'm not going to commit the patch, that's for someone else to decide.. --Jani On Thu, 2007-09-06 at 13:39 +0300, Tomas Kuliavas wrote: > I can't add comments on that bug report. > > http://www.topolis.lt/php/#35050 > > Here comes the patch. Only strcasecmp results are

Re: [PHP-DEV] PHP bugs in Turkish locale

2007-09-06 Thread Tomas Kuliavas
I can't add comments on that bug report. http://www.topolis.lt/php/#35050 Here comes the patch. Only strcasecmp results are affected. I suspect that PHP scripts and interpreter itself use same strcasecmp function. > You are free to send a patch.. :) > > If you have objections, please add comment

Re: [PHP-DEV] proof of concept or undocumented?

2007-09-06 Thread Hartmut Holzgraefe
BuildSmart wrote: my current test was to change it to use mysql_config to retrieve the library details which seemed to work. Does that work all the way back to MySQL 3.23.x? It is important that ext/mysql stays compatible with 3.23 and 4.0 as these client library versions are not supported by e

[PHP-DEV] Win32 Build not updated on http://snaps.php.net.

2007-09-06 Thread Richard Quadling
Hi. No Win32 snapshot built since Sep 01, 2007 16:30 UTC. Any reason? Regards, Richard Quadling. -- - Richard Quadling Zend Certified Engineer : http://zend.com/zce.php?c=ZEND002498&r=213474731 "Standing on the shoulders of some very clever giants!" -- PHP Internals - PHP Runtime Develo

Re: [PHP-DEV] proof of concept or undocumented?

2007-09-06 Thread BuildSmart
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Sep 6, 2007, at 04:24:32, Hartmut Holzgraefe wrote: BuildSmart wrote: The only differences I could find was that openssl was enabled in the working builds but not enabled in the failing build. [...] I went a step further and manually added t

Re: [PHP-DEV] proof of concept or undocumented?

2007-09-06 Thread Hartmut Holzgraefe
BuildSmart wrote: The only differences I could find was that openssl was enabled in the working builds but not enabled in the failing build. [...] I went a step further and manually added the ssl libraries (-lssl -lcrypto) to the Makefile (both as bundled and shared) and all worked well. T

Re: [PHP-DEV] proof of concept or undocumented?

2007-09-06 Thread Hartmut Holzgraefe
Rasmus Lerdorf wrote: It is documented at php.net/mysql in the section on connection constants: MYSQL_CLIENT_SSL Use SSL encryption. This flag is only available with version 4.x of the MySQL client library or newer. Version 3.23.x is bundled both with PHP 4 and Windows binaries of PHP 5. Hart

Re: [PHP-DEV] proof of concept or undocumented?

2007-09-06 Thread Hartmut Holzgraefe
BuildSmart wrote: I see that the mysqli extension is essentially a wrapper and it obtains the required libraries from the mysql_config script so if mysql is built with ssl support the mysqli module will include this library and theoretically should work with ssl connections. My question thoug