Use more recent libxml

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@14265 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Richard Frith-Macdonald 2002-08-11 08:55:08 +00:00
parent 035082da71
commit 8c096e950f
3 changed files with 7 additions and 2 deletions

View file

@ -1,3 +1,8 @@
2002-08-11 Richard Frith-Macdonald <rfm@gnu.org>
* configure.ac: Check for libxml version 2.3.0 or greater to ensure
we have xpath support.
2002-08-09 Richard Frith-Macdonald <rfm@gnu.org>
* Source/NSNotificationCenter.m: ([-postNotification:]) Correct to

2
configure vendored
View file

@ -11394,7 +11394,7 @@ fi
else
XML_CONFIG=$XML2_CONFIG
fi
min_xml_version=2.2.3
min_xml_version=2.3.0
echo "$as_me:$LINENO: checking for libxml - version >= $min_xml_version" >&5
echo $ECHO_N "checking for libxml - version >= $min_xml_version... $ECHO_C" >&6
no_xml=""

View file

@ -886,7 +886,7 @@ AC_SUBST(WITH_FFI)
saved_LIBS="$LIBS"
saved_CFLAGS="$CFLAGS"
AM_PATH_XML(2.2.3, enable_libxml=yes, enable_libxml=no)
AM_PATH_XML(2.3.0, enable_libxml=yes, enable_libxml=no)
if test $enable_libxml = yes; then
CPPFLAGS="$CPPFLAGS $XML_CFLAGS"
LIBS="$LIBS $XML_LIBS"