diff options
author | Michael Meeks <mmeeks@src.gnome.org> | 2000-05-04 00:28:21 +0800 |
---|---|---|
committer | Michael Meeks <mmeeks@src.gnome.org> | 2000-05-04 00:28:21 +0800 |
commit | 099218084620a5087792750b1369433cc69836c0 (patch) | |
tree | b8e90928d2187421fb9a5fc192985a5db6a11b24 | |
parent | 40856ae03686075bfa7e407ac4a4cc36940078d9 (diff) | |
download | gsoc2013-evolution-099218084620a5087792750b1369433cc69836c0.tar gsoc2013-evolution-099218084620a5087792750b1369433cc69836c0.tar.gz gsoc2013-evolution-099218084620a5087792750b1369433cc69836c0.tar.bz2 gsoc2013-evolution-099218084620a5087792750b1369433cc69836c0.tar.lz gsoc2013-evolution-099218084620a5087792750b1369433cc69836c0.tar.xz gsoc2013-evolution-099218084620a5087792750b1369433cc69836c0.tar.zst gsoc2013-evolution-099218084620a5087792750b1369433cc69836c0.zip |
fix configure for old libxmls.
svn path=/trunk/; revision=2778
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | configure.in | 2 |
2 files changed, 5 insertions, 1 deletions
@@ -1,3 +1,7 @@ +2000-05-03 Michael Meeks <michael@helixcode.com> + + * configure.in (xmlversion): Fix to remove older 'libxml' prefix. + 2000-05-02 Ettore Perazzoli <ettore@helixcode.com> * configure.in: Do not output `doc/Makefile' because there is diff --git a/configure.in b/configure.in index 02f54ece34..06f73f48ed 100644 --- a/configure.in +++ b/configure.in @@ -307,7 +307,7 @@ dnl ****** dnl XML dnl ****** GNOME_XML_CHECK -xmlversion=`xml-config --version` +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;}'` |