(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
>

-- 
PHP Internals - PHP Runtime Development Mailing List
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to