Need libxml 2.2.3 or later

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/tools/make/trunk@7649 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Richard Frith-MacDonald 2000-09-29 10:41:48 +00:00
parent 41e6117f01
commit 2d1529dc52
3 changed files with 369 additions and 298 deletions

View file

@ -1,3 +1,7 @@
2000-09-29 Richard Frith-Macdonald <rfm@gnu.org>
* configure.in: Check for libxml 2.2.3 or later
Tue Sep 26 10:21:51 2000 Nicola Pero <nicola@brainstorm.co.uk>
* application.make: Use opentool when running plmerge.

655
configure vendored

File diff suppressed because it is too large Load diff

View file

@ -476,16 +476,16 @@ echo "Checking for libxml"
AC_CHECK_HEADERS(libxml/xmlversion.h)
if test $ac_cv_header_libxml_xmlversion_h = no; then
echo "Could not find libxml headers"
echo "Check to make sure you have libxml version 2 or later installed"
echo "Check to make sure you have libxml version 2.2.3 or later installed"
AC_MSG_WARN(Could not find libxml headers)
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)
else
AC_CHECK_LIB(xml, xmlNewDoc, xml_ok=yes, xml_ok=no)
if test "$xml_ok" = yes; then