]> granicus.if.org Git - php/commitdiff
fix by Elfyn, use = not ==
authorSterling Hughes <sterling@php.net>
Mon, 30 Jun 2003 05:01:18 +0000 (05:01 +0000)
committerSterling Hughes <sterling@php.net>
Mon, 30 Jun 2003 05:01:18 +0000 (05:01 +0000)
ext/xsl/config.m4

index d8db8bb96392e67b5bf88b8981c70d73a2b2e72f..11917ab9ad9ecc33f6172f7701eba61b86b58ccd 100644 (file)
@@ -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