sterling Mon Jun 30 01:01:18 2003 EDT
Modified files:
/php-src/ext/xsl config.m4
Log:
fix by Elfyn, use = not ==
Index: php-src/ext/xsl/config.m4
diff -u php-src/ext/xsl/config.m4:1.4 php-src/ext/xsl/config.m4:1.5
--- php-src/ext/xsl/config.m4:1.4 Thu Jun 26 14:51:52 2003
+++ php-src/ext/xsl/config.m4 Mon Jun 30 01:01:18 2003
@@ -1,5 +1,5 @@
dnl
-dnl $Id: config.m4,v 1.4 2003/06/26 18:51:52 helly Exp $
+dnl $Id: config.m4,v 1.5 2003/06/30 05:01:18 sterling Exp $
dnl
AC_DEFUN(PHP_XSL_CHECK_VERSION,[
@@ -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 CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php