summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUwe Steinmann <steinm@php.net>2000-12-07 10:04:18 +0000
committerUwe Steinmann <steinm@php.net>2000-12-07 10:04:18 +0000
commit5ff861bd4a9c86545c8ac8aca91c01820b680173 (patch)
tree2afcffde6b432d3ed8c97a65ed2c4de6884409ae
parentea251e82e1218425bbbfd9530bad0995bfeae8ec (diff)
downloadphp-git-5ff861bd4a9c86545c8ac8aca91c01820b680173.tar.gz
- set propper min version
-rw-r--r--ext/domxml/config.m46
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/domxml/config.m4 b/ext/domxml/config.m4
index 604f6185b3..e8125d2018 100644
--- a/ext/domxml/config.m4
+++ b/ext/domxml/config.m4
@@ -2,7 +2,7 @@ dnl $Id$
dnl config.m4 for extension domxml
PHP_ARG_WITH(dom, for DOM support,
-[ --with-dom[=DIR] Include DOM support (requires libxml >= 2.0).
+[ --with-dom[=DIR] Include DOM support (requires libxml >= 2.2.7).
DIR is the libxml install directory,
defaults to /usr.])
@@ -22,7 +22,7 @@ if test "$PHP_DOM" != "no"; then
if test -z "$DOMXML_DIR"; then
AC_MSG_RESULT(not found)
- AC_MSG_ERROR(Please reinstall the libxml >= 2.0 distribution)
+ AC_MSG_ERROR(Please reinstall the libxml >= 2.2.7 distribution)
fi
AC_ADD_INCLUDE($DOMXML_DIR/include)
@@ -53,7 +53,7 @@ if test "$PHP_DOM" != "no"; then
fi
AC_CHECK_LIB(xml, xmlFreeURI, [AC_DEFINE(HAVE_DOMXML,1,[ ])],
- [AC_MSG_ERROR(DOM module requires libxml >= 2.0)])
+ [AC_MSG_ERROR(DOM module requires libxml >= 2.2.7)])
AC_ADD_LIBRARY(z)
PHP_EXTENSION(domxml, $ext_shared)