Update libxml version to 2.2.3

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@7696 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Adam Fedor 2000-10-02 15:37:37 +00:00
parent e996304e03
commit 881619857e
3 changed files with 10 additions and 6 deletions

View file

@ -1,3 +1,7 @@
2000-10-02 Adam Fedor <fedor@gnu.org>
* configure.in: Update required libxml version to 2.2.3
2000-09-30 Mirko Viviani <mirko.viviani@rccr.cremona.it>
* Source/NSDistantObject.m ([GSDistantObjectPlaceHolder

6
configure vendored
View file

@ -4378,7 +4378,7 @@ else
#line 4379 "configure"
#include "confdefs.h"
#include "libxml/xmlversion.h"
#if LIBXML_VERSION < 20000
#if LIBXML_VERSION < 20203
#error
#endif
EOF
@ -4397,8 +4397,8 @@ else
fi
rm -f conftest*
if test $libxml2plus = 0; then
echo "libxml version older than 2.0.0"
echo "configure: warning: libxml version older than 2.0.0" 1>&2
echo "libxml version older than 2.2.3"
echo "configure: warning: libxml version older than 2.2.3" 1>&2
HAVE_LIBXML=0
else
HAVE_LIBXML=1

View file

@ -789,12 +789,12 @@ if test $ac_cv_header_libxml_xmlversion_h = no; then
HAVE_LIBXML=0
else
AC_TRY_CPP([#include "libxml/xmlversion.h"
#if LIBXML_VERSION < 20000
#if LIBXML_VERSION < 20203
#error
#endif], libxml2plus=1, libxml2plus=0)
if test $libxml2plus = 0; then
echo "libxml version older than 2.0.0"
AC_MSG_WARN(libxml version older than 2.0.0)
echo "libxml version older than 2.2.3"
AC_MSG_WARN(libxml version older than 2.2.3)
HAVE_LIBXML=0
else
HAVE_LIBXML=1