There's a small typo in ext/xsl/config.m4 . T'is small, but I though I'd submit a patch. :)
2003-06-30 Elfyn McBratney <[EMAIL PROTECTED]> * ext/xsl/config.m4: Fix 'test' conditional. Index: config.m4 =================================================================== RCS file: /repository/php-src/ext/xsl/config.m4,v retrieving revision 1.4 diff -u -u -p -r1.4 config.m4 --- config.m4 26 Jun 2003 18:51:52 -0000 1.4 +++ config.m4 30 Jun 2003 04:22:17 -0000 @@ -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 Elfyn --
Index: config.m4 =================================================================== RCS file: /repository/php-src/ext/xsl/config.m4,v retrieving revision 1.4 diff -u -u -p -r1.4 config.m4 --- config.m4 26 Jun 2003 18:51:52 -0000 1.4 +++ config.m4 30 Jun 2003 04:25:29 -0000 @@ -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
-- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php