[PHP-DEV] Building PHP. Clean builds. Noisy redefines.

2008-04-22 Thread Richard Quadling
Hi. Probably much to all your annoyance, I've finally managed to compile PHP on windows and I have a few questions.I'm very much just learning. I notice that there are a LOT of warnings when I'm compiling. The huge majority are benign. But, is there a reason to not fix the issue and make the

[PHP-DEV] Unresolved external symbol : xmlXPathCompiledEvalToBoolean

2008-04-22 Thread Richard Quadling
Hi. Am I getting this fatal link error on Windows when building PHP due to an old version of xml in zip.zip? My configure.js is cscript /nologo configure.js --with-php-build=..\php_build --with-extra-includes=..\php_build\include --with-extra-libs=..\php_build\lib --disable-ipv6 --enable-cli

[PHP-DEV] Re: Building PHP. Clean builds. Noisy redefines.

2008-04-22 Thread Elizabeth M Smith
Richard Quadling wrote: Hi. Probably much to all your annoyance, I've finally managed to compile PHP on windows and I have a few questions.I'm very much just learning. I notice that there are a LOT of warnings when I'm compiling. The huge majority are benign. But, is there a reason

Re: [PHP-DEV] Unresolved external symbol : xmlXPathCompiledEvalToBoolean

2008-04-22 Thread Rob Richards
The zip file hasn't been updated yet. Get the libs from here: http://ctindustries.net/libxml/ Rob Richard Quadling wrote: Hi. Am I getting this fatal link error on Windows when building PHP due to an old version of xml in zip.zip? My configure.js is cscript /nologo configure.js

[PHP-DEV] Re: Unresolved external symbol : xmlXPathCompiledEvalToBoolean

2008-04-22 Thread Elizabeth M Smith
Richard Quadling wrote: Hi. Am I getting this fatal link error on Windows when building PHP due to an old version of xml in zip.zip? My configure.js is cscript /nologo configure.js --with-php-build=..\php_build --with-extra-includes=..\php_build\include

Re: [PHP-DEV] Re: Building PHP. Clean builds. Noisy redefines.

2008-04-22 Thread Hannes Magnusson
On Tue, Apr 22, 2008 at 1:53 PM, Elizabeth M Smith [EMAIL PROTECTED] wrote: Hmmm - I don't get the first set of long to short warnings - what compiler/sdk are you using? Second set of (highly annoying) warnings is due to a file in TSRM - in readdir.h - and I'd love to have fixed but there

Re: [PHP-DEV] Building PHP. Clean builds. Noisy redefines.

2008-04-22 Thread Antony Dovgal
On 22.04.2008 15:01, Richard Quadling wrote: Another warning is that some of the constants are redefined to a different value from the ones that are part of the compiler. The /TRSM/readdir.h, _WIN32_WINNT is redefined from 0x0600 in C:\Program Files\Microsoft

Re: [PHP-DEV] Building PHP. Clean builds. Noisy redefines.

2008-04-22 Thread Richard Quadling
On 22/04/2008, Antony Dovgal [EMAIL PROTECTED] wrote: On 22.04.2008 15:01, Richard Quadling wrote: Another warning is that some of the constants are redefined to a different value from the ones that are part of the compiler. The /TRSM/readdir.h, _WIN32_WINNT is redefined from 0x0600 in

Re: [PHP-DEV] Building PHP. Clean builds. Noisy redefines.

2008-04-22 Thread Scott MacVicar
Richard Quadling wrote: On 22/04/2008, Antony Dovgal [EMAIL PROTECTED] wrote: On 22.04.2008 15:01, Richard Quadling wrote: Another warning is that some of the constants are redefined to a different value from the ones that are part of the compiler. The /TRSM/readdir.h, _WIN32_WINNT is

Re: [PHP-DEV] Building PHP. Clean builds. Noisy redefines.

2008-04-22 Thread Antony Dovgal
On 22.04.2008 16:23, Richard Quadling wrote: Yes on the patch. There are a few more like this. It is just a cosmetic issue. Scott was faster than me and committed slightly different patch =) -- Wbr, Antony Dovgal -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe,

Re: [PHP-DEV] Re: Building PHP. Clean builds. Noisy redefines.

2008-04-22 Thread Johannes Schlüter
On Tue, 2008-04-22 at 13:57 +0200, Hannes Magnusson wrote: On Tue, Apr 22, 2008 at 1:53 PM, Elizabeth M Smith [EMAIL PROTECTED] wrote: Hmmm - I don't get the first set of long to short warnings - what compiler/sdk are you using? Second set of (highly annoying) warnings is due to a

Re: [PHP-DEV] Re: Building PHP. Clean builds. Noisy redefines.

2008-04-22 Thread Steph Fox
Hi Richard, Hmmm - I don't get the first set of long to short warnings - what compiler/sdk are you using? Just a quick note to say that I'm not seeing a lot of the warnings you describe, either. In fact the only place I see a _lot_ of compiler warnings is in ext/date. So please add your

Re: [PHP-DEV] Welcome GSoC students!

2008-04-22 Thread Daniel Brown
On Mon, Apr 21, 2008 at 6:53 PM, Johannes Schlüter [EMAIL PROTECTED] wrote: Hi, Google just announced the final assignments for their Summer of Code program for this year. On behalf of the PHP project I'd like to welcome our students and give you some general information about the

Re: [PHP-DEV] Welcome GSoC students!

2008-04-22 Thread Michal Dziemianko
Hello, I am Michal, and I will work on algorithm optimizations. Thanks for choosing me out of all the people who have submitted application for this project. I am looking forward to start:) Cheers, Michal Dziemianko -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe,

[PHP-DEV] Recent readdir.h

2008-04-22 Thread Richard Quadling
Hi. The recent commit to TSRM/readdir.h isn't quite right. The later versions of the MS VC compiler set _WINNT32_WINNT to 0x600. This causes problems later on in fopen_wrappers.c fopen_wrappers.c C:\Program Files\Microsoft SDKs\Windows\v6.1\include\ws2tcpip.h(583) : error C2373: 'inet_pton' :

Re: [PHP-DEV] Re: Building PHP. Clean builds. Noisy redefines.

2008-04-22 Thread Richard Quadling
On 22/04/2008, Steph Fox [EMAIL PROTECTED] wrote: Hi Richard, Hmmm - I don't get the first set of long to short warnings - what compiler/sdk are you using? Just a quick note to say that I'm not seeing a lot of the warnings you describe, either. In fact the only place I see a _lot_ of

Re: [PHP-DEV] Recent readdir.h

2008-04-22 Thread Scott MacVicar
It's working fine here on VC6 and 2005 on XP. afaik the code was only there to deal with older versions of Windows that didn't have _WINNT32_WINNT defined. More investigation is needed to see what exactly is broken. We may just need to rebuild some of the things in zip.zip again. Scott

Re: [PHP-DEV] Recent readdir.h

2008-04-22 Thread Elizabeth M Smith
Scott MacVicar wrote: It's working fine here on VC6 and 2005 on XP. afaik the code was only there to deal with older versions of Windows that didn't have _WINNT32_WINNT defined. More investigation is needed to see what exactly is broken. We may just need to rebuild some of the things in

Re: [PHP-DEV] Recent readdir.h

2008-04-22 Thread Richard Quadling
On 22/04/2008, Scott MacVicar [EMAIL PROTECTED] wrote: It's working fine here on VC6 and 2005 on XP. afaik the code was only there to deal with older versions of Windows that didn't have _WINNT32_WINNT defined. More investigation is needed to see what exactly is broken. We may just need

Re: [PHP-DEV] spl documentation

2008-04-22 Thread Marcus Boerger
Hello Philip, Friday, April 11, 2008, 7:29:48 PM, you wrote: On 11/04/2008, Alexey Zakhlestin [EMAIL PROTECTED] wrote: I noticed, that http://www.php.net/~helly/php/ext/spl/http://www.php.net/%7Ehelly/php/ext/spl/ was updated almost a year ago. Is the newer version available

Re: [PHP-DEV] spl documentation

2008-04-22 Thread Stanislav Malyshev
Hi! Personally I tried for year to get some feedback on getting documentation to support classes. And we still do not have any acceptable support. So I My impression is PhD now supports classes quite well. There are even skeletons as I understand :) I wonder how hard would it be to write a

Re: [PHP-DEV] Win32 mail() issue and potential fix - needs better brains than me to verify solution.

2008-04-22 Thread Scott MacVicar
Jani Taskinen wrote: On Thu, 2008-04-17 at 17:59 +0100, Scott MacVicar wrote: Hi Richard, The patch would fix it in this case but there is an underlying change that needs sorted. zend_ini_string()'s behaviour was changed to fix http://bugs.php.net/bug.php?id=42657 so that if the default

Re: [PHP-DEV] Welcome GSoC students!

2008-04-22 Thread Daniel Brown
Of interesting note: the list rejected my earlier (second) reply to your message, Johannes. It claimed the Google BlogSpot URL was a SPAMMY URL. -- /Daniel P. Brown Dedicated Servers - Intel 2.4GHz w/2TB bandwidth/mo. starting at just $59.99/mo. with no contract! Dedicated servers, VPS, and

[PHP-DEV] zval taint bits

2008-04-22 Thread Michael B Allen
Hi, I saw Wietse's taint presentation at nyphp last night and I just wanted to express my support for the feature. It seems to me OR-ing bits together between zval fields is relatively harmless. Clearly it will not catch everything as extensions can introduce clean zvals that are in fact tainted

[PHP-DEV] CVS Account Request: aferreira

2008-04-22 Thread André Ferreira
Documentation translation to Portuguese (phpdoc-pt). Account request suggested by Philip Olson -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] Welcome GSoC students!

2008-04-22 Thread Johannes Schlüter
On Tue, 2008-04-22 at 14:23 -0400, Daniel Brown wrote: Of interesting note: the list rejected my earlier (second) reply to your message, Johannes. It claimed the Google BlogSpot URL was a SPAMMY URL. looks like the same happened to my mail - while I didn't get any response :-) For all:

Re: [PHP-DEV] Inclusion of PHP LiteSpeed SAPI in the standard PHP distribution?

2008-04-22 Thread Johannes Schlüter
Hi George, On Tue, 2008-04-08 at 10:12 -0400, George Wang wrote: Either a symlink or moving the directory physically to where other SAPI code are should work. I can check in the code to a different location if need. Please let me know if anything I can help. :-) Derick just copied it on

[PHP-DEV] CVS Account Request: graham

2008-04-22 Thread Samuel Graham Kelly
Hi, I am working on the optimizer for APC for Google summer of code 2008 with Derick. -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] Building PHP. Clean builds. Noisy redefines.

2008-04-22 Thread Jarismar Chaves da Silva
Greetings, I'm also having some fun with php devel on windows and I just would like to report that along with _WIN32_WINNT there are few others macro redefinitions. Here is the warnings I saw on last compilation... I'm using the MSVC++ Express Edition, .Net 3 on XP Professional.

Re: [PHP-DEV] CVS Account Request: graham

2008-04-22 Thread Derick Rethans
On Tue, 22 Apr 2008, Samuel Graham Kelly wrote: I am working on the optimizer for APC for Google summer of code 2008 with Derick. Yup, please create the account. I'll give karma later. regards, Derick -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit:

Re: [PHP-DEV] Welcome GSoC students!

2008-04-22 Thread Barry Carlyon
Indeed, as part of my project I shall be circulating a survey which I would like the people on this list to respond to Details to follow.. Bazza Daniel Brown wrote: On Mon, Apr 21, 2008 at 6:53 PM, Johannes Schlüter [EMAIL PROTECTED] wrote: Hi, Google just announced the final

Re: [PHP-DEV] CVS Account Request

2008-04-22 Thread Tatsuo Ishii
I posted requested patches about a week ago and so far I have gotten no response. Maybe this means my patches were rejected by some reasons which I don't know? -- Tatsuo Ishii SRA OSS, Inc. Japan From: Tatsuo Ishii [EMAIL PROTECTED] Subject: Re: [PHP-DEV] CVS Account Request Date: Thu, 17 Apr

[PHP-DEV] Unresolved external symbol __mysqlnd_debug

2008-04-22 Thread Edward Z. Yang
I'm getting this fatal error compiling mysqli under Windows: Creating library Release\php_mysqli.lib and object Release\php_mysqli.exp mysqli_api.obj : error LNK2019: unresolved external symbol __mysqlnd_debug referenced in function _zif_mysqli_debug Release\php_mysqli.dll : fatal error LNK1120: