Re: [PHP-DEV] [PATCH] Delegate type hint/checks to alternative locations (Re: [PHP-DEV] back to 5.4 alpha)

2010-10-19 Thread Derick Rethans
Hi! On Sun, 5 Sep 2010, Derick Rethans wrote: I've spend some more time on this, and have attached a new patch that: - Removes the strict type verification, changing it back into typehints only. - Keeps the current syntax so that typehints create structures in the function entries.

[PHP-DEV] Continuing the build process after a failed build of an extension.

2010-10-19 Thread Richard Quadling
Hi. Is there a way to continue the build process (on Windows) if a shared extension fails to build. Currently, if an extension fails, then it halts the entire build. Which is probably fine in production, but for my own builds, I'd like it to just ignore the failed extension. I know I can

Re: [PHP-DEV] Continuing the build process after a failed build of an extension.

2010-10-19 Thread Derick Rethans
On Tue, 19 Oct 2010, Richard Quadling wrote: Is there a way to continue the build process (on Windows) if a shared extension fails to build. Currently, if an extension fails, then it halts the entire build. Which is probably fine in production, but for my own builds, I'd like it to just

[PHP-DEV] ext/pcre/pcrelib/config.h:#define HAVE_STDINT_H 1 - bug in PHP or ext(ernal) package that needs to be contacted?

2010-10-19 Thread Michael Felt
Maybe a bug? with ext/* I wonder if it is internal, or something borrowed. The hardpart is to get a compiler old enough to not have stdint.h I suppose, but when that is the case the build fails and/or configure misses it. from /data/prj/php-5.2.14 # grep -n HAVE_STDINT_H */*/*/*.h

[PHP-DEV] Re: ext/pcre/pcrelib/config.h:#define HAVE_STDINT_H 1 - bug in PHP or ext(ernal) package that needs to be contacted?

2010-10-19 Thread Michael Felt
p.s. my fix is: /* Define to 1 if you have the stdint.h header file. * / #ifndef HAVE_STDINT_H #define HAVE_STDINT_H 1 #endif */ (added space to break end-of comment, and added end of comment below block) On Tue, Oct 19, 2010 at 3:32 PM, Michael Felt mamf...@gmail.com wrote: Maybe a bug? with

Re: [PHP-DEV] Continuing the build process after a failed build of an extension.

2010-10-19 Thread Richard Quadling
On 19 October 2010 14:11, Derick Rethans der...@php.net wrote: --enable-snapshot-build Close. Will adapt. I don't want everything on, just the ignore build failures part. Thank you. -- Richard Quadling Twitter : EE : Zend @RQuadling : e-e.com/M_248814.html : bit.ly/9O8vFY -- PHP Internals -

[PHP-DEV] FYI: minor include issue with older systems - strcasecmp not always in string.h

2010-10-19 Thread Michael Felt
While performing a build on AIX433 I get the following error. /data/prj/php-5.2.14/ext/zip/lib/zip_name_locate.c: In function `_zip_name_locate': /data/prj/php-5.2.14/ext/zip/lib/zip_name_locate.c:67: error: `strcasecmp' undeclared (first use in this function)

Re: [PHP-DEV] FYI: minor include issue with older systems - strcasecmp not always in string.h

2010-10-19 Thread Pierre Joye
hi, Can you open a bug report and attach a patch to it pls? Thanks! On Tue, Oct 19, 2010 at 5:21 PM, Michael Felt mamf...@gmail.com wrote: While performing a build on AIX433 I get the following error. /data/prj/php-5.2.14/ext/zip/lib/zip_name_locate.c: In function `_zip_name_locate':

Re: [PHP-DEV] Re: ext/pcre/pcrelib/config.h:#define HAVE_STDINT_H 1 - bug in PHP or ext(ernal) package that needs to be contacted?

2010-10-19 Thread Pierre Joye
hi, We do this in the bundled pcre library. Please check the exact logic there and try to see what is required to make it work on your box + compiler without breaking other platforms. It would rock if you could provide a patch+bug report :) Thanks! On Tue, Oct 19, 2010 at 3:36 PM, Michael Felt

Re: [PHP-DEV] Named parameters

2010-10-19 Thread Stan Vass
This is just not happening people. Please re-read all the past conversations about it. If you come to some sort of epiphany that solves all of the issues brought up in the past, please submit a patch. Otherwise, a never ending thread about this *again* is pointless. Thanks, -- Brian.

Re: [PHP-DEV] Named parameters

2010-10-19 Thread Brian Moon
The absolute minimum is, if you have objections, to be specific, or at least provide concrete links to specific objections, instead of sending people to hunt for the decisions manually. So, anyone that comes on the list and wants to talk about some feature should just do so without looking at

Re: [PHP-DEV] Named parameters

2010-10-19 Thread Pierre Joye
hi Brian, On Tue, Oct 19, 2010 at 6:43 PM, Brian Moon br...@moonspot.net wrote: The absolute minimum is, if you have objections, to be specific, or at least provide concrete links to specific objections, instead of sending people to hunt for the decisions manually. So, anyone that comes on

Re: [PHP-DEV] ext/pcre/pcrelib/config.h:#define HAVE_STDINT_H 1 - bug in PHP or ext(ernal) package that needs to be contacted?

2010-10-19 Thread Rainer Jung
On 19.10.2010 15:32, Michael Felt wrote: Maybe a bug? with ext/* I wonder if it is internal, or something borrowed. The hardpart is to get a compiler old enough to not have stdint.h I suppose, but when that is the case the build fails and/or configure misses it. from /data/prj/php-5.2.14 #