helly           Thu Jun 26 14:51:53 2003 EDT

  Modified files:              
    /php-src/ext/xsl    config.m4 
  Log:
  ext/xsl requires ext/dom
  
Index: php-src/ext/xsl/config.m4
diff -u php-src/ext/xsl/config.m4:1.3 php-src/ext/xsl/config.m4:1.4
--- php-src/ext/xsl/config.m4:1.3       Wed Jun 11 15:27:01 2003
+++ php-src/ext/xsl/config.m4   Thu Jun 26 14:51:52 2003
@@ -1,5 +1,5 @@
 dnl
-dnl $Id: config.m4,v 1.3 2003/06/11 19:27:01 rrichards Exp $
+dnl $Id: config.m4,v 1.4 2003/06/26 18:51:52 helly Exp $
 dnl
 
 AC_DEFUN(PHP_XSL_CHECK_VERSION,[
@@ -22,6 +22,10 @@
 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
+    AC_MSG_ERROR([XSL extension requires DOM extension, add --with-dom.])
+fi
 
 if test "$PHP_XSL" != "no"; then
 



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to