diff options
author | Rob Richards <rrichards@php.net> | 2005-03-10 22:35:18 +0000 |
---|---|---|
committer | Rob Richards <rrichards@php.net> | 2005-03-10 22:35:18 +0000 |
commit | e6034763ca9ab559e269a421a664ecac7ae4a769 (patch) | |
tree | c822a1fad73bee766457a8a136c9ef19b08d603f /acinclude.m4 | |
parent | 8462621bd7fe17bc9c54610ea9a4572e15428662 (diff) | |
download | php-git-e6034763ca9ab559e269a421a664ecac7ae4a769.tar.gz |
require libxml 2.6.0 or higher
Diffstat (limited to 'acinclude.m4')
-rw-r--r-- | acinclude.m4 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/acinclude.m4 b/acinclude.m4 index 3772a40656..ca695821b5 100644 --- a/acinclude.m4 +++ b/acinclude.m4 @@ -2304,7 +2304,7 @@ AC_DEFUN([PHP_SETUP_LIBXML], [ set $libxml_full_version IFS=$ac_IFS LIBXML_VERSION=`expr [$]1 \* 1000000 + [$]2 \* 1000 + [$]3` - if test "$LIBXML_VERSION" -ge "2005010"; then + if test "$LIBXML_VERSION" -ge "2006000"; then LIBXML_LIBS=`$XML2_CONFIG --libs` LIBXML_INCS=`$XML2_CONFIG --cflags` PHP_EVAL_LIBLINE($LIBXML_LIBS, $1) @@ -2327,7 +2327,7 @@ AC_DEFUN([PHP_SETUP_LIBXML], [ fi $2 else - AC_MSG_ERROR([libxml2 version 2.5.10 or greater required.]) + AC_MSG_ERROR([libxml2 version 2.6.0 or greater required.]) fi ifelse([$3],[],,[else $3]) fi |