Re: [PHP-DEV] building HEAD on windows

2006-04-19 Thread Frank M. Kromann
Hi Nuno, I'm working on a fix (actually I have been for a while but my time has been limited) and I just commited the fix to ext/unicode/config.w32. I'll continue working on the other fix tomorrow, unless someone get's there first. - Frank > Hi, > > I'm having some troubles building latest HEA

[PHP-DEV] building HEAD on windows

2006-04-19 Thread Nuno Lopes
Hi, I'm having some troubles building latest HEAD on windows. One of the problems is fixed with the patch attatched. The other is more problematic. I think Visual Studio is having some problems with macro expansions. Checkout the errors: ext\standard\file.c(1052) : error C2172: '_to_zstr' : a

Re: [PHP-DEV] building HEAD on windows

2005-09-07 Thread William A. Rowe, Jr.
Rob Richards wrote: Attached is a patch to allow PHP 6 to build on windows (ext/string/string.c). MS compiler doesnt allow arithmetic operations on void *. FYI arithmetic ops should never behave on (void *) since the sizeof(*(void*)) is, by definition, undefined. -- PHP Internals - PHP Runtim

[PHP-DEV] building HEAD on windows

2005-09-05 Thread Rob Richards
Attached is a patch to allow PHP 6 to build on windows (ext/string/string.c). MS compiler doesnt allow arithmetic operations on void *. This hopefully will work everywhere as I noticed some of these were changed before to support GCC 4. Rob Index: string.c =