[PHP-DEV] php-src/tests/lang/038.phpt fails on php-5.0.3

2005-01-11 Thread Kamesh Jayachandran
Hi All, php-src/tests/lang/038.phpt(Convert warnings to exceptions) this testcase used to succeed in php-5.0.2 and old but not on php-5.0.3. Seems that exception_object-getTrace() now returns an array of size 3 with first 2 entries corresponding to Error2Exception and last one corresponding to

Re: [PHP-DEV] buildconf stopped working for me

2005-01-11 Thread Sebastian Bergmann
Sebastian Bergmann wrote: buildconf: autoconf version 2.13 (ok) It finds autoconf 2.13 because buildcheck.sh explicitly calls autoconf-2.13 (instead of just autoconf). FATAL ERROR: Autoconf version 2.50 or higher is required And then it uses autoconf 2.59 because it calls autoconf. --

Re: [PHP-DEV] buildconf stopped working for me

2005-01-11 Thread Derick Rethans
On Tue, 11 Jan 2005, Sebastian Bergmann wrote: Sebastian Bergmann wrote: buildconf: autoconf version 2.13 (ok) It finds autoconf 2.13 because buildcheck.sh explicitly calls autoconf-2.13 (instead of just autoconf). FATAL ERROR: Autoconf version 2.50 or higher is required And then it

Re: [PHP-DEV] buildconf stopped working for me

2005-01-11 Thread Sebastian Bergmann
Derick Rethans wrote: Sounds like a problem in your wrapper scripts then... buildcheck.sh calls autoconf-2.13. This does not involve the wrapper script. Later autoconf is called. This one is handled by the wrapper which defaults to autoconf 2.5x. It might be a problem with the wrapper

Re: [PHP-DEV] buildconf stopped working for me

2005-01-11 Thread Sebastian Bergmann
Sebastian Bergmann wrote: Then again, it used to work fine until recently. Reverting build/build2.mk to revision 1.30 seems to fix the issue. The checks introduced in revision 1.31 seem to find both /usr/bin/autoconf (wrapper, defaults to 2.5x) and /usr/bin/autoconf-2.13 (no wrapper) and

RE: [PHP-DEV] [PATCH] --with-ODBCRouter (database networking)

2005-01-11 Thread Michael Sims
Andi Gutmans wrote: At 09:02 AM 1/7/2005 -0800, AugSoft wrote: + This patch enables PHP's ODBC extension on certain non-Windows platforms (Linux, Mac OS X, Just out of curiosity, how does ODBC Router differ from the other ODBC bridge solutions out there? Sorry for the arguably off-topic

Re: [PHP-DEV] buildconf stopped working for me

2005-01-11 Thread Magnus Määttä
Hello Sebastian, On Tuesday 11 January 2005 07.39, Sebastian Bergmann wrote: Haven't built HEAD on Linux for a while but when I tried today buildconf didn't like my autoconf: [EMAIL PROTECTED] php-5.1 % ./buildconf using default Zend directory buildconf: checking installation...

Re: [PHP-DEV] buildconf stopped working for me

2005-01-11 Thread Jani Taskinen
On Tue, 11 Jan 2005, Magnus Määttä wrote: Hello Sebastian, On Tuesday 11 January 2005 07.39, Sebastian Bergmann wrote: Haven't built HEAD on Linux for a while but when I tried today buildconf didn't like my autoconf: [EMAIL PROTECTED] php-5.1 % ./buildconf using default Zend directory

Re: [PHP-DEV] Segmentation fault in html_entity_decode

2005-01-11 Thread Moriyoshi Koizumi
Now fixed in CVS. Thanks for the good report. Moriyoshi On 2005/01/10, at 22:30, Kamesh Jayachandran wrote: Hi All, The following script causes a segmentation fault in NetWare but not on Windows or Linux versions of php-5.0.3 ?php html_entity_decode('ensp;', ENT_QUOTES, 'UTF-8'); ? I can not

Re: [PHP-DEV] [PATCH] --with-ODBCRouter (database networking)

2005-01-11 Thread Dan Kalowsky
I'm not sure I'm sold on this whole concept yet. I don't see how this differs from the use of an ODBC Driver or an ODBC Driver Manager. Admittedly I haven't investigated it very throughly yet, but the Macintosh already has unixODBC and iODBC working with it (your example not mine). Both allow

Re: [PHP-DEV] [PATCH] --with-ODBCRouter (database networking)

2005-01-11 Thread Andi Gutmans
I have no idea about ODBCRouter but for what it's worth unixODBC and iODBC aren't the best and most performant solutions (at least as far as I know). So if this is an equivalent, I see no reason not to support it. Andi At 11:20 AM 1/11/2005 -0800, Dan Kalowsky wrote: I'm not sure I'm sold on

Re: [PHP-DEV] [PATCH] --with-ODBCRouter (database networking)

2005-01-11 Thread Wez Furlong
I think the question is whether we need a patch, or if ODBCRouter is a compatible ODBC driver that can be loaded via unixODBC or iODBC, requiring no patch and possibly taking advantage of optimizations that might be present in those ODBC managers (can't think of any off the top of my head). Of

Re: [PHP-DEV] [PATCH] --with-ODBCRouter (database networking)

2005-01-11 Thread Wez Furlong
I've educated myself by reading the odbcsdk.h file; ODBCRouter doesn't implement ODBC 3.0 APIs, so it can't be used directly for the PDO ODBC extension, but it should be loadable via unixODBC or iODBC. Regardless, this patch looks safe to commit to our CVS for ext/odbc; it's a few lines of