mirror of
https://github.com/gnustep/tools-make.git
synced 2025-06-02 10:11:37 +00:00
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:
parent
41e6117f01
commit
2d1529dc52
3 changed files with 369 additions and 298 deletions
|
@ -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>
|
Tue Sep 26 10:21:51 2000 Nicola Pero <nicola@brainstorm.co.uk>
|
||||||
|
|
||||||
* application.make: Use opentool when running plmerge.
|
* application.make: Use opentool when running plmerge.
|
||||||
|
|
|
@ -476,16 +476,16 @@ echo "Checking for libxml"
|
||||||
AC_CHECK_HEADERS(libxml/xmlversion.h)
|
AC_CHECK_HEADERS(libxml/xmlversion.h)
|
||||||
if test $ac_cv_header_libxml_xmlversion_h = no; then
|
if test $ac_cv_header_libxml_xmlversion_h = no; then
|
||||||
echo "Could not find libxml headers"
|
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)
|
AC_MSG_WARN(Could not find libxml headers)
|
||||||
else
|
else
|
||||||
AC_TRY_CPP([#include "libxml/xmlversion.h"
|
AC_TRY_CPP([#include "libxml/xmlversion.h"
|
||||||
#if LIBXML_VERSION < 20000
|
#if LIBXML_VERSION < 20203
|
||||||
#error
|
#error
|
||||||
#endif], libxml2plus=1, libxml2plus=0)
|
#endif], libxml2plus=1, libxml2plus=0)
|
||||||
if test $libxml2plus = 0; then
|
if test $libxml2plus = 0; then
|
||||||
echo "libxml version older than 2.0.0"
|
echo "libxml version older than 2.2.3"
|
||||||
AC_MSG_WARN(libxml version older than 2.0.0)
|
AC_MSG_WARN(libxml version older than 2.2.3)
|
||||||
else
|
else
|
||||||
AC_CHECK_LIB(xml, xmlNewDoc, xml_ok=yes, xml_ok=no)
|
AC_CHECK_LIB(xml, xmlNewDoc, xml_ok=yes, xml_ok=no)
|
||||||
if test "$xml_ok" = yes; then
|
if test "$xml_ok" = yes; then
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue