diff options
author | Christian Stocker <chregu@php.net> | 2002-05-15 12:41:55 +0000 |
---|---|---|
committer | Christian Stocker <chregu@php.net> | 2002-05-15 12:41:55 +0000 |
commit | 20226f71fca8d15854e4c90d89547a92b34e829d (patch) | |
tree | a12d97b9815f0ec86c5fd8523fe7c0f1502cdabf | |
parent | 25f6f239a2358ed6a5adbf914f303e10c7535ed1 (diff) | |
download | php-git-20226f71fca8d15854e4c90d89547a92b34e829d.tar.gz |
libxml2 >= 2.4.14 is needed (since quite some time ...)
-rw-r--r-- | ext/domxml/config.m4 | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/ext/domxml/config.m4 b/ext/domxml/config.m4 index 64556002f9..9cc219adb2 100644 --- a/ext/domxml/config.m4 +++ b/ext/domxml/config.m4 @@ -8,19 +8,19 @@ AC_DEFUN(PHP_DOM_CHECK_VERSION,[ AC_MSG_CHECKING(for libxml version) AC_EGREP_CPP(yes,[ #include <libxml/xmlversion.h> - #if LIBXML_VERSION >= 20402 + #if LIBXML_VERSION >= 20414 yes #endif ],[ - AC_MSG_RESULT(>= 2.4.2) + AC_MSG_RESULT(>= 2.4.14) ],[ - AC_MSG_ERROR(libxml version 2.4.2 or greater required.) + AC_MSG_ERROR(libxml version 2.4.14 or greater required.) ]) CPPFLAGS=$old_CPPFLAGS ]) PHP_ARG_WITH(dom, for DOM support, -[ --with-dom[=DIR] Include DOM support (requires libxml >= 2.4.2). +[ --with-dom[=DIR] Include DOM support (requires libxml >= 2.4.14). DIR is the libxml install directory.]) if test "$PHP_DOM" != "no"; then @@ -40,7 +40,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.4.2 distribution) + AC_MSG_ERROR(Please reinstall the libxml >= 2.4.14 distribution) fi PHP_DOM_CHECK_VERSION |