[PHP-DEV] php 4.2.1 and apache 2.0.39 compile error

2002-07-17 Thread electroteque
hi guys i am getting this error when compiling php -g -O2 -pthread -DZTS -prefer-pic -c php_functions.c php_functions.c:93:27: missing binary operator before '!' make[3]: *** [php_functions.lo] Error 1 make[3]: Leaving directory `/usr/local/etc/php-4.2.1/sapi/apache2filter' make[2]: *** [all-rec

Re: [PHP-DEV] PHP 4.2.1 build problems on Solaris (plus fix)

2002-05-17 Thread Edin Kadribasic
rante" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]> Sent: Friday, May 17, 2002 10:42 AM Subject: [PHP-DEV] PHP 4.2.1 build problems on Solaris (plus fix) Hi, I got into trouble building PHP 4.2.1 with the option '--with-openssl=[myopenssldir]'

[PHP-DEV] PHP 4.2.1 build problems on Solaris (plus fix)

2002-05-17 Thread Joerg Prante
Hi, I got into trouble building PHP 4.2.1 with the option '--with-openssl=[myopenssldir]' on Solaris 2.8. The 'configure' script failed with checking for OpenSSL version... configure failed: openssl > 0.9.5 is required even if a correct version of openssl 0.9.6c exists. This is a bug because

[PHP-DEV] PHP 4.2.1 release announcement

2002-05-14 Thread Derick Rethans
Hello, PHP 4.2.1 is released today, it's a bug fix release which addresses some serious bugs (and a lot of other little bugs) in 4.2.0. The full release announcement follows below: This bug fix release solves a few bugs found in PHP 4.2.0. PHP 4.2.1 includes the following fixes:

Re: [PHP-DEV] PHP 4.2.1

2002-05-07 Thread Stig S. Bakken
On Mon, 2002-05-06 at 17:59, Christian Stocker wrote: > On Mon, 6 May 2002, brad lafountain wrote: > > > > Man... When is the next planned release? > > don't know. ask stig .) No date yet. The current "major changes" list for 4.3 is: 1. New build system (Sascha) 2. PHP Streams (Wez) 3. Comm

[PHP-DEV] PHP 4.2.1 RC2

2002-05-06 Thread derick
Hello, I just rolled a tarball for the second release candidate for 4.2.1. Please test building this, an especially the following things: The DOM XML extension Sessions The socket extension touch() (under windows, especially of the time is correct now) The COM extension You can submit your tes

Re: [PHP-DEV] PHP 4.2.1

2002-05-06 Thread Christian Stocker
> > ranting is really not necessary here :) domxml was for a long time just a > > hack and didn't follow much of the standard, therefore there is still a > > lot of not-standard stuff in there and this stuff will (hopefully) not > > removed for BC's sake... > > I honistly wasn't ranting. That wa

Re: [PHP-DEV] PHP 4.2.1

2002-05-06 Thread brad lafountain
--- Christian Stocker <[EMAIL PROTECTED]> wrote: > On Mon, 6 May 2002, brad lafountain wrote: > > > > > --- Christian Stocker <[EMAIL PROTECTED]> wrote: > > > On Mon, 6 May 2002, brad lafountain wrote: > > > > > > > Hello, > > > > > > > > I have a patch for DomXML that does 2 things. It allows

Re: [PHP-DEV] PHP 4.2.1

2002-05-06 Thread Christian Stocker
On Mon, 6 May 2002, brad lafountain wrote: > > --- Christian Stocker <[EMAIL PROTECTED]> wrote: > > On Mon, 6 May 2002, brad lafountain wrote: > > > > > Hello, > > > > > > I have a patch for DomXML that does 2 things. It allows you to use new and > > > constructors to create dom elements. > > >

Re: [PHP-DEV] PHP 4.2.1

2002-05-06 Thread brad lafountain
--- Lukas Schroeder <[EMAIL PROTECTED]> wrote: > On Mon, May 06, 2002 at 03:54:34PM +0200, Christian Stocker wrote: > > > $doc = new DomDocument("some.file", true); > > > $ele = new DocElement("name"); > > > $doc->append_child($ele); > > > > as i said before, this is not according to the DOM-Sta

Re: [PHP-DEV] PHP 4.2.1

2002-05-06 Thread brad lafountain
--- Christian Stocker <[EMAIL PROTECTED]> wrote: > On Mon, 6 May 2002, brad lafountain wrote: > > > Hello, > > > > I have a patch for DomXML that does 2 things. It allows you to use new and > > constructors to create dom elements. > > > > Ex. > > > > $doc = new DomDocument("some.file", true);

Re: [PHP-DEV] PHP 4.2.1

2002-05-06 Thread Lukas Schroeder
On Mon, May 06, 2002 at 03:54:34PM +0200, Christian Stocker wrote: > > $doc = new DomDocument("some.file", true); > > $ele = new DocElement("name"); > > $doc->append_child($ele); > > as i said before, this is not according to the DOM-Standard, so i would > rather prefer not to include this kind o

Re: [PHP-DEV] PHP 4.2.1

2002-05-06 Thread Christian Stocker
On Mon, 6 May 2002, brad lafountain wrote: > Hello, > > I have a patch for DomXML that does 2 things. It allows you to use new and > constructors to create dom elements. > > Ex. > > $doc = new DomDocument("some.file", true); > $ele = new DocElement("name"); > $doc->append_child($ele); as i sai

Re: [PHP-DEV] PHP 4.2.1

2002-05-06 Thread derick
On Mon, 6 May 2002, brad lafountain wrote: > Hello, > > I have a patch for DomXML that does 2 things. It allows you to use new and > constructors to create dom elements. > > Ex. > > $doc = new DomDocument("some.file", true); > $ele = new DocElement("name"); > $doc->append_child($ele); > >

Re: [PHP-DEV] PHP 4.2.1

2002-05-06 Thread brad lafountain
Hello, I have a patch for DomXML that does 2 things. It allows you to use new and constructors to create dom elements. Ex. $doc = new DomDocument("some.file", true); $ele = new DocElement("name"); $doc->append_child($ele); insetead of $doc = xmldoc("some.file", true); $ele = $doc->create_

[PHP-DEV] PHP 4.2.1

2002-05-05 Thread Derick Rethans
Hello, At the end of last week, DomXML was merged to the branch and there was no single test response for RC1. So I want to postpone 4.2.1 till next monday, and release another RC today (with the new DomXML api). Derick -