diff options
author | Joey Smith <joey@php.net> | 2000-06-06 05:13:07 +0000 |
---|---|---|
committer | Joey Smith <joey@php.net> | 2000-06-06 05:13:07 +0000 |
commit | edfd7f9a8041f05e4cb4e9ca870087057dfc63d8 (patch) | |
tree | 026e03224a21e64b1333b2107a4056004bb36e47 | |
parent | 458352954dec4fd5d75f55f31be2646626d4df6b (diff) | |
download | php-git-edfd7f9a8041f05e4cb4e9ca870087057dfc63d8.tar.gz |
Get the version #'s right...
-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 051bbd0155..b886317f14 100644 --- a/ext/domxml/config.m4 +++ b/ext/domxml/config.m4 @@ -2,7 +2,7 @@ dnl $Id$ AC_MSG_CHECKING(whether to include DOM support) AC_ARG_WITH(dom, -[ --with-dom[=DIR] Include DOM support (requires libxml >= 1.0). +[ --with-dom[=DIR] Include DOM support (requires libxml >= 2.0). DIR is the libxml install directory, defaults to /usr.], [ @@ -15,7 +15,7 @@ AC_ARG_WITH(dom, old_LIBS=$LIBS LIBS="$LIBS -lz" AC_CHECK_LIB(xml, xmlNewDoc, [AC_DEFINE(HAVE_DOMXML,1,[ ])], - [AC_MSG_ERROR(DOM module requires libxml >= 1.0)]) + [AC_MSG_ERROR(DOM module requires libxml >= 2.0)]) LIBS=$old_LIBS AC_ADD_LIBRARY(z) AC_ADD_LIBRARY(xml) @@ -33,7 +33,7 @@ AC_ARG_WITH(dom, old_withval=$withval AC_MSG_CHECKING([for zlib (needed by DOM support)]) AC_ARG_WITH(zlib-dir, - [ --with-zlib-dir[=DIR] zlib dir for pdflib 2.0 or include zlib support],[ + [ --with-zlib-dir[=DIR] zlib dir for pdflib 3.0 or include zlib support],[ AC_MSG_RESULT( ) if test -z $withval; then withval="/usr/local" @@ -47,12 +47,12 @@ AC_ARG_WITH(dom, ]) withval=$old_withval else - echo "checking for libz needed by pdflib 2.0... already zlib support" + echo "checking for libz needed by pdflib 3.0... already zlib support" LIBS="$LIBS -L$withval/lib -lz" fi AC_CHECK_LIB(xml, xmlNewDoc, [AC_DEFINE(HAVE_DOMXML,1,[ ])], - [AC_MSG_ERROR(DOM module requires libxml >= 1.0.)]) + [AC_MSG_ERROR(DOM module requires libxml >= 2.0.)]) LIBS=$old_LIBS AC_ADD_LIBRARY_WITH_PATH(xml, $withval/lib) AC_ADD_INCLUDE($DOMXML_INCLUDE) |