aboutsummaryrefslogtreecommitdiffstats
path: root/configure.in
diff options
context:
space:
mode:
authorChristopher James Lahey <clahey@helixcode.com>2000-11-14 03:33:47 +0800
committerChris Lahey <clahey@src.gnome.org>2000-11-14 03:33:47 +0800
commita53ac3867bb028e0b318aa9fcfda00657b1cfd7d (patch)
treea6bb7c2a29106043d687cbe0cecd17ff5bbb3123 /configure.in
parentf300ac0095fc9830abe1133ca8e3c6a8f1433723 (diff)
downloadgsoc2013-evolution-a53ac3867bb028e0b318aa9fcfda00657b1cfd7d.tar
gsoc2013-evolution-a53ac3867bb028e0b318aa9fcfda00657b1cfd7d.tar.gz
gsoc2013-evolution-a53ac3867bb028e0b318aa9fcfda00657b1cfd7d.tar.bz2
gsoc2013-evolution-a53ac3867bb028e0b318aa9fcfda00657b1cfd7d.tar.lz
gsoc2013-evolution-a53ac3867bb028e0b318aa9fcfda00657b1cfd7d.tar.xz
gsoc2013-evolution-a53ac3867bb028e0b318aa9fcfda00657b1cfd7d.tar.zst
gsoc2013-evolution-a53ac3867bb028e0b318aa9fcfda00657b1cfd7d.zip
Update the gal reqiurement version.
2000-11-13 Christopher James Lahey <clahey@helixcode.com> * configure.in: Update the gal reqiurement version. From mail/ChangeLog: 2000-11-13 Christopher James Lahey <clahey@helixcode.com> * message-list.c: Removed some e_table_model calls and replaced them with e_tree_model calls. svn path=/trunk/; revision=6564
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in6
1 files changed, 3 insertions, 3 deletions
diff --git a/configure.in b/configure.in
index b47aa3b1c8..02cc5ac205 100644
--- a/configure.in
+++ b/configure.in
@@ -286,14 +286,14 @@ fi
dnl ******************************
dnl Gnome App Lib checking
dnl ******************************
-AC_MSG_CHECKING(for Gnome App libraries (GAL) >= 0.2.99.1)
+AC_MSG_CHECKING(for Gnome App libraries (GAL) >= 0.2.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 29901; then
+ if test "$vers" -ge 29902; then
AC_MSG_RESULT(found)
else
- AC_MSG_ERROR(You need at least GNOME Application libs 0.2.99.1 for this version of Evolution)
+ AC_MSG_ERROR(You need at least GNOME Application libs 0.2.99.2 for this version of Evolution)
fi
else
AC_MSG_ERROR(Did not find GnomeAppLib (GAL) installed)