From: Sterling Hughes Date: Mon, 30 Jun 2003 05:01:18 +0000 (+0000) Subject: fix by Elfyn, use = not == X-Git-Tag: BEFORE_ARG_INFO~541 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=0422e0d475e07d390cfbdd4d9c2413f2f57f90f8;p=php fix by Elfyn, use = not == --- diff --git a/ext/xsl/config.m4 b/ext/xsl/config.m4 index d8db8bb963..11917ab9ad 100644 --- a/ext/xsl/config.m4 +++ b/ext/xsl/config.m4 @@ -23,7 +23,7 @@ PHP_ARG_WITH(xsl, for XSL support, [ --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