Re: [PHP-DEV] Core Dudes: Critical #20274 needs your input

2003-03-26 Thread Larry Rosenman
--On Wednesday, March 26, 2003 09:33:35 +0100 Uwe Schindler <[EMAIL PROTECTED]> wrote: The problem is: sfio seems not to be compatible with Solaris 9. The error comes from: # include in floatingpoint.h. Can you report your findings to AT&T? They do take bug reports. -- Larry Rosenman

Re: [PHP-DEV] Core Dudes: Critical #20274 needs your input

2003-03-26 Thread Uwe Schindler
The problem is: sfio seems not to be compatible with Solaris 9. The error comes from: #include in floatingpoint.h. This contains only the definition of FILE*... But stdio-tag.tag is not included into the sfio package, so both definitions are different and the compiler do not like it. I fixed th

Re: [PHP-DEV] Core Dudes: Critical #20274 needs your input

2003-03-26 Thread Uwe Schindler
Was a error in -I directive. But now the following error diplays: bash-2.05$ CC=cc CFLAGS="-I/pangaea/install/sfio/include" ./configure --prefix=/pangaea/PHP4 --with-nsapi=/pangaea/webserver --with-sybase-ct=$SYBASE --without-mysql ... bash-2.05$ make /bin/sh /pangaea/install/php4-STABLE-200303

Re: [PHP-DEV] Core Dudes: Critical #20274 needs your input

2003-03-25 Thread Uwe Schindler
I tried to compile PHP with sfio but I failed because under solaris: * linking together with compatiblity libstdio-mt.a (-lstdio-mt) does not work because this works not for .so files. The linking to libc is not overwritten. If you compile a whole program with it, it works (the init code of lib

Re: [PHP-DEV] Core Dudes: Critical #20274 needs your input

2003-03-25 Thread James Devenish
In message <[EMAIL PROTECTED]> on Tue, Mar 25, 2003 at 11:37:54AM +, Wez Furlong wrote: > Opinions please; we need to have an official resolution before 4.3.2 is > released. ("Solaris sucks, use > instead") Opinions? Okay: "PHP is a pain to compile and use reliably, arrive at realisation tha

Re: [PHP-DEV] Core Dudes: Critical #20274 needs your input

2003-03-25 Thread Larry Rosenman
--On Tuesday, March 25, 2003 11:57:04 + Wez Furlong <[EMAIL PROTECTED]> wrote: http://www.research.att.com/sw/tools/sfio/ ? yep. This sounds like a reasonable fix; we would need to add a configure check for this. (Although CFLAGS=-I/path/to/sfio/includes ./configure should also work). Uwe,

Re: [PHP-DEV] Core Dudes: Critical #20274 needs your input

2003-03-25 Thread Wez Furlong
http://www.research.att.com/sw/tools/sfio/ ? This sounds like a reasonable fix; we would need to add a configure check for this. (Although CFLAGS=-I/path/to/sfio/includes ./configure should also work). Uwe, could you try this out? Thanks for the suggestion Larry :) --Wez. On Tue, 25 Mar 2003,

Re: [PHP-DEV] Core Dudes: Critical #20274 needs your input

2003-03-25 Thread Larry Rosenman
--On Tuesday, March 25, 2003 11:37:54 + Wez Furlong <[EMAIL PROTECTED]> wrote: Problem: Solaris libc cannot fopen()/fdopen() more than 255 files. Additionally, it cannot handle file descriptors larger than 255. Although streams now avoids FILE* as much as possible, ZE1 requires FILE* in i

[PHP-DEV] Core Dudes: Critical #20274 needs your input

2003-03-25 Thread Wez Furlong
Problem: Solaris libc cannot fopen()/fdopen() more than 255 files. Additionally, it cannot handle file descriptors larger than 255. Although streams now avoids FILE* as much as possible, ZE1 requires FILE* in its flex scanners. Symptom: PHP SAPI implementations based on threads or that recycle