[PHP-DEV] compile php extension on visual c++ 2005

2012-12-12 Thread Amir
Hi Im compiling my c++ php extension on php 5.3 and visual c++ 2008 everything is ok and work fine, but I have to (and I force) to using php 5.2.9 and compile it via vc++ 2005. I got this error during compile: *zend\zend_config.w32.h(38) : fatal error C1083: Cannot open include file:

Re: [PHP-DEV] compile php extension on visual c++ 2005

2012-12-12 Thread Pierre Joye
hi, On Wed, Dec 12, 2012 at 12:18 PM, Amir ad...@ecdcconference.org wrote: Im compiling my c++ php extension on php 5.3 and visual c++ 2008 everything is ok and work fine, but I have to (and I force) to using php 5.2.9 and compile it via vc++ 2005. I got this error during compile:

[PHP-DEV] Re: [PHP-CVS] com php-src: Really fix test pdo_mysql_class_constants.phpt: ext/pdo_mysql/tests/pdo_mysql_class_constants.phpt

2012-12-12 Thread Remi Collet
Working on fixing pdo_mysql_class_constants.phpt, I notice a strange behavior, which breaks MySQLPDOTest::getClientVersion() *** With libmysqlclient var_dump(mysqli_get_client_info()); = string(6) 5.5.28 var_dump(mysqli_get_client_version()); = int(50528)

[PHP-DEV] php 5.3.14 nts source code for windows

2012-12-12 Thread Amir
Hi I searched in php.net and did not find any link that contain php none thread safe source code for windows. I have a php source that encoded with Zend Guard 5.5 and have to decode with Zend Guard Loader. note: Zend Guard Loader is NTS and didn't read TS code.

Re: [PHP-DEV] php 5.3.14 nts source code for windows

2012-12-12 Thread Anatoliy Belsky
Hi, the source is always the same, get it under http://windows.php.net/downloads/releases/ . To compile NTS use --disable-zts configure option. Regards Anatoliy On Wed, 2012-12-12 at 19:59 +0330, Amir wrote: Hi I searched in php.net and did not find any link that contain php none thread

Re: [PHP-DEV] php 5.3.14 nts source code for windows

2012-12-12 Thread Ángel González
On 12/12/12 17:29, Amir wrote: Hi I searched in php.net and did not find any link that contain php none thread safe source code for windows. I have a php source that encoded with Zend Guard 5.5 and have to decode with Zend Guard Loader. note: Zend Guard Loader is NTS and didn't read TS code.

Re: [PHP-DEV] php 5.3.14 nts source code for windows

2012-12-12 Thread Amir
Hi I just want php NTS source code not compiled version, to compile my own extension that used in Zend Guard Loader. On Wed, Dec 12, 2012 at 8:33 PM, Ángel González keis...@gmail.com wrote: On 12/12/12 17:29, Amir wrote: Hi I searched in php.net and did not find any link that contain php

Re: [PHP-DEV] php 5.3.14 nts source code for windows

2012-12-12 Thread Amir
Thanks Anatoliy, but I don;t want to compile PHP source, I just want to compile my own extension on windows via NTS PHP source code. On Wed, Dec 12, 2012 at 8:10 PM, Anatoliy Belsky a...@php.net wrote: Hi, the source is always the same, get it under

Re: [PHP-DEV] php 5.3.14 nts source code for windows

2012-12-12 Thread Kris Craig
On Wed, Dec 12, 2012 at 1:27 PM, Amir ad...@ecdcconference.org wrote: Thanks Anatoliy, but I don;t want to compile PHP source, I just want to compile my own extension on windows via NTS PHP source code. On Wed, Dec 12, 2012 at 8:10 PM, Anatoliy Belsky a...@php.net wrote: Hi, the

Re: [PHP-DEV] php 5.3.14 nts source code for windows

2012-12-12 Thread Derick Rethans
On Thu, 13 Dec 2012, Amir wrote: Thanks Anatoliy, but I don;t want to compile PHP source, I just want to compile my own extension on windows via NTS PHP source code. You can't do that, you need to compile PHP as well to get such an environment where you can compile extensions. cheers, Derick

Re: [PHP-DEV] php 5.3.14 nts source code for windows

2012-12-12 Thread Pierre Joye
hi, On Wed, Dec 12, 2012 at 11:43 PM, Derick Rethans der...@php.net wrote: On Thu, 13 Dec 2012, Amir wrote: Thanks Anatoliy, but I don;t want to compile PHP source, I just want to compile my own extension on windows via NTS PHP source code. You can't do that, you need to compile PHP as well