Re: [PHP-DEV] Welcome GSoC students!

2008-04-28 Thread Alejandro Leiva
Hi, I'm working with the project Replace auto* with CMake, I'm very proud to have a chance to collaborate in the future build system (I expect that ;)) We created a channel #php.cmake at EFNet for this task and a wiki page at http://wiki.php.net/internals/cmake Thanks

Re: [PHP-DEV] Failed Win32 builds log file.

2008-04-28 Thread Matt Wilmas
Hi Richard, all, Yeah, was thinking the same thing about the logs. :-) Don't know if you tried to compile yourself, but the failure is from Derick's date additions Friday (http://news.php.net/php.cvs/49738): php_date.obj : error LNK2019: unresolved external symbol _timelib_diff referenced in

[PHP-DEV] Is there a difference in (n)make between windows and unix.

2008-04-28 Thread Richard Quadling
Hi. I'm new to compiling PHP on windows, so this may be a real newbie question. My expectation of make-like tools is that they describe the how to create targets from sources (in a nutshell). So, just for example, TSRM/readdir.h. I would expect that if I altered this file and then ran my make

[PHP-DEV] PHP 6 Bug Summary Report

2008-04-28 Thread internals
PHP 6 Bug Database summary - http://bugs.php.net Num Status Summary (56 total including feature requests) ===[*General Issues]== 26771 Suspended register_tick_funtions crash under threaded webservers

Re: [PHP-DEV] Is there a difference in (n)make between windows and unix.

2008-04-28 Thread Steph Fox
Hi Richard, What is happening is that the makefile has no knowledge of this header file, so it can't be used to make anything. Is this expected behaviour? Please don't focus on just TSRM/readdir.h as this was one file I picked at random (as I had edited it recently). Yes that's expected

Re: [PHP-DEV] Failed Win32 builds log file.

2008-04-28 Thread Derick Rethans
On Mon, 28 Apr 2008, Matt Wilmas wrote: Yeah, was thinking the same thing about the logs. :-) Don't know if you tried to compile yourself, but the failure is from Derick's date additions Friday (http://news.php.net/php.cvs/49738): I guess the config.w32 files need to be updated for this -

Re: [PHP-DEV] Failed Win32 builds log file.

2008-04-28 Thread Matt Wilmas
Hi Derick, - Original Message - From: Derick Rethans Sent: Monday, April 28, 2008 On Mon, 28 Apr 2008, Matt Wilmas wrote: Yeah, was thinking the same thing about the logs. :-) Don't know if you tried to compile yourself, but the failure is from Derick's date additions Friday

[PHP-DEV] passing Cookies and other environment stuff to PHP SAPI Embed

2008-04-28 Thread Alexander Heinlein
Hi I'm trying to write the php processing part of a small httpd. I want to use the SAPI Embed for interpreting php scripts. But I can't find a way to specify the content of variables like $_COOKIE, $_REQUEST, $_SERVER etc. Is there any function to initalize the SAPI header with all this stuff?

RE: [PHP-DEV] passing Cookies and other environment stuff to PHP SAPI Embed

2008-04-28 Thread Uwe Schindler
If you want to start PHP scripts in an own http server, the best way would be to create a SAPI for it. SAPIs only have to implement callbacks for the PHP engine to write stuff to the output stream, read input stream in POST requests and populate variables and output headers. The embed SAPI is a

[PHP-DEV] CVS Account Request: clarkeycat

2008-04-28 Thread Alex Clarke
Have mailed 'Wez' Furlong regarding contribution of a PHP 5.2 compatible pdo_firebird 0.3 driver and bugfixes for the 0.3 version as appearing in php 5.3 dev builds. Also submitted fix details and a requested code verification of his 0.3 mods/fixes to lars.westermann at zend. Am a highly

Re: [PHP-DEV] Is there a difference in (n)make between windows and unix.

2008-04-28 Thread Wietse Venema
Richard Quadling: Hi. I'm new to compiling PHP on windows, so this may be a real newbie question. My expectation of make-like tools is that they describe the how to create targets from sources (in a nutshell). So, just for example, TSRM/readdir.h. I would expect that if I altered this

Re: [PHP-DEV] Is there a difference in (n)make between windows and unix.

2008-04-28 Thread Stanislav Malyshev
Hi! Should editing ANY source level file (.h, .c type files) result in a make? Theoretically, it should. But it's as good as makefile dependencies, of course. I'm not sure PHP configure script generates dependencies for all files... -- Stanislav Malyshev, Zend Software Architect [EMAIL

[PHP-DEV] Class Properties in Interfaces?

2008-04-28 Thread Jeremy Privett
Hey list, I was curious what everyone thought of implementing the ability to specify class members in interfaces. I've run into a couple of circumstances where I would like to specify public member names inside of an interface to ensure that these members are accessed in a standard way and