Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:3493 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 7771 invoked from network); 19 Jul 2003 16:23:24 -0000 Received: from unknown (HELO rfhs0023.fh-regensburg.de) (194.95.104.23) by pb1.pair.com with SMTP; 19 Jul 2003 16:23:24 -0000 Received: (qmail 15727 invoked from network); 19 Jul 2003 16:23:21 -0000 X-Scanned-By: AMaViS-ng Received: from rfhs8012.fh-regensburg.de (daemon@194.95.108.29) by 0 with SMTP; 19 Jul 2003 16:23:19 -0000 Received: (from feyrer@localhost) by rfhs8012.fh-regensburg.de (8.12.9/8.11.6) id h6JGNJfU001274; Sat, 19 Jul 2003 18:23:19 +0200 (MEST) Date: Sat, 19 Jul 2003 18:23:19 +0200 (MEST) X-X-Sender: feyrer@rfhs8012.fh-regensburg.de To: internals@lists.php.net Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Subject: [PATCH] php-5.0.0b1 configure fails on Solaris (resend) From: hubert.feyrer@informatik.fh-regensburg.de (Hubert Feyrer) (resent to proper list) > On Solaris 8, configure throws up: > > ... > checking for XSL support... yes > ./configure: test: unknown operator == > > The patch below fixes this. Please fix in future revisions. > > > - Hubert > > > --- ext/xsl/config.m4.orig Sat Jul 19 04:02:09 2003 > +++ ext/xsl/config.m4 Sat Jul 19 04:02:18 2003 > @@ -23,7 +23,7 @@ > [ --with-xsl[=DIR] Include new XSL support (requires > libxslt >= > 1.0.18). > DIR is the libxslt install directory.]) > > -if test "$PHP_XSL" != "no" -a "$PHP_DOM" == "no"; then > +if test "$PHP_XSL" != "no" -a "$PHP_DOM" = "no"; then > AC_MSG_ERROR([XSL extension requires DOM extension, add --with-dom.]) fi >