summaryrefslogtreecommitdiff
path: root/ext/domxml
diff options
context:
space:
mode:
authorfoobar <sniper@php.net>2001-08-18 21:08:52 +0000
committerfoobar <sniper@php.net>2001-08-18 21:08:52 +0000
commita000bdd93ef14730b19db9d09d515d612e7ca8fb (patch)
tree90ca1b2086045d22b3b4cf3223ae300b02b66930 /ext/domxml
parentde7d47c3fd458a1b0880f64eb7020cffdc05d1e3 (diff)
downloadphp-git-a000bdd93ef14730b19db9d09d515d612e7ca8fb.tar.gz
libxml 2.4.2 is required now.
Diffstat (limited to 'ext/domxml')
-rw-r--r--ext/domxml/config.m410
1 files changed, 5 insertions, 5 deletions
diff --git a/ext/domxml/config.m4 b/ext/domxml/config.m4
index 55d81b5c61..4a490e77a1 100644
--- a/ext/domxml/config.m4
+++ b/ext/domxml/config.m4
@@ -7,19 +7,19 @@ AC_DEFUN(PHP_DOM_CHECK_VERSION,[
AC_MSG_CHECKING(for libxml version)
AC_EGREP_CPP(yes,[
#include <libxml/xmlversion.h>
- #if LIBXML_VERSION >= 20207
+ #if LIBXML_VERSION >= 20402
yes
#endif
],[
- AC_MSG_RESULT(>= 2.2.7)
+ AC_MSG_RESULT(>= 2.4.2)
],[
- AC_MSG_ERROR(libxml version 2.2.7 or greater required.)
+ AC_MSG_ERROR(libxml version 2.4.2 or greater required.)
])
CPPFLAGS=$old_CPPFLAGS
])
PHP_ARG_WITH(dom, for DOM support,
-[ --with-dom[=DIR] Include DOM support (requires libxml >= 2.2.7).
+[ --with-dom[=DIR] Include DOM support (requires libxml >= 2.4.2).
DIR is the libxml install directory,
defaults to /usr.])
@@ -35,7 +35,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.2.7 distribution)
+ AC_MSG_ERROR(Please reinstall the libxml >= 2.4.2 distribution)
fi
PHP_DOM_CHECK_VERSION