From 9697170096ee30126bae1304eedab63c77103705 Mon Sep 17 00:00:00 2001 From: Christopher James Lahey Date: Thu, 1 Mar 2001 08:45:59 +0000 Subject: Check for gal 0.5.99.2. 2001-03-01 Christopher James Lahey * configure.in: Check for gal 0.5.99.2. svn path=/trunk/; revision=8445 --- ChangeLog | 4 ++++ configure.in | 6 +++--- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index 960d3ec1dd..a018d37303 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2001-03-01 Christopher James Lahey + + * configure.in: Check for gal 0.5.99.2. + 2001-02-19 Christopher James Lahey * configure.in: Check for gal 0.5.99.1. diff --git a/configure.in b/configure.in index 1b6fa157e6..8e5b90933e 100644 --- a/configure.in +++ b/configure.in @@ -333,14 +333,14 @@ fi dnl ****************************** dnl Gnome App Lib checking dnl ****************************** -AC_MSG_CHECKING(for Gnome App libraries (GAL) >= 0.5.99.1) +AC_MSG_CHECKING(for Gnome App libraries (GAL) >= 0.5.99.2) if gnome-config --libs gal > /dev/null 2>&1; then vers=`gnome-config --modversion gal | sed -e "s/gal-//" -e 's/cvs$//' -e 's/pre$//' | \ awk 'BEGIN { FS = "."; } { print $1 * 1000000 + $2 * 10000 + $3 * 100 + $4;}'` - if test "$vers" -ge 59901; then + if test "$vers" -ge 59902; then AC_MSG_RESULT(found) else - AC_MSG_ERROR(You need at least GNOME Application libs 0.5.99.1 for this version of Evolution) + AC_MSG_ERROR(You need at least GNOME Application libs 0.5.99.2 for this version of Evolution) fi else AC_MSG_ERROR(Did not find GnomeAppLib (GAL) installed) -- cgit