From 799153001fa43ad0991c260c461b7bbc266daee9 Mon Sep 17 00:00:00 2001 From: Dan Winship Date: Tue, 13 Jun 2000 14:31:02 +0000 Subject: put back the libxml check that was erroneously removed in rev 1.94 svn path=/trunk/; revision=3550 --- configure.in | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/configure.in b/configure.in index c9f019aa4c..8b7dee9afb 100644 --- a/configure.in +++ b/configure.in @@ -340,6 +340,13 @@ dnl ****** dnl XML dnl ****** GNOME_XML_CHECK +xmlversion=`xml-config --version | sed 's/^libxml//'` +xmlmajor=`echo $xmlversion | awk -F. '{print $1;}'` +xmlminor=`echo $xmlversion | awk -F. '{print $2;}'` +xmlpatch=`echo $xmlversion | awk -F. '{print $3;}'` +if test "$xmlmajor" -ne 1 -o "$xmlminor" -ne 8 -o "$xmlpatch" -lt 7; then + AC_MSG_ERROR(gnome-xml 1.8.7 (or later, but not 2.0) is required to compile Evolution) +fi AC_SUBST(CAPPLET_LIBS) -- cgit v1.2.3