aboutsummaryrefslogtreecommitdiffstats
path: root/configure.in
diff options
context:
space:
mode:
authorChristopher James Lahey <clahey@ximian.com>2001-01-16 10:16:13 +0800
committerChris Lahey <clahey@src.gnome.org>2001-01-16 10:16:13 +0800
commite202430d41d6b793e94d7ac0d252de826e80991b (patch)
tree183ef86f17182dea035c2f2c6d65952a5c12923a /configure.in
parentfa62a2652854d3b0d80d6f28fac1df490a391a83 (diff)
downloadgsoc2013-evolution-e202430d41d6b793e94d7ac0d252de826e80991b.tar
gsoc2013-evolution-e202430d41d6b793e94d7ac0d252de826e80991b.tar.gz
gsoc2013-evolution-e202430d41d6b793e94d7ac0d252de826e80991b.tar.bz2
gsoc2013-evolution-e202430d41d6b793e94d7ac0d252de826e80991b.tar.lz
gsoc2013-evolution-e202430d41d6b793e94d7ac0d252de826e80991b.tar.xz
gsoc2013-evolution-e202430d41d6b793e94d7ac0d252de826e80991b.tar.zst
gsoc2013-evolution-e202430d41d6b793e94d7ac0d252de826e80991b.zip
Changed the required version of gal.
2001-01-15 Christopher James Lahey <clahey@ximian.com> * configure.in: Changed the required version of gal. svn path=/trunk/; revision=7525
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 8e53457b38..4e849f4833 100644
--- a/configure.in
+++ b/configure.in
@@ -314,14 +314,14 @@ fi
dnl ******************************
dnl Gnome App Lib checking
dnl ******************************
-AC_MSG_CHECKING(for Gnome App libraries (GAL) >= 0.4.99.3)
+AC_MSG_CHECKING(for Gnome App libraries (GAL) >= 0.4.99.4)
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 49903; then
+ if test "$vers" -ge 49904; then
AC_MSG_RESULT(found)
else
- AC_MSG_ERROR(You need at least GNOME Application libs 0.4.99.3 for this version of Evolution)
+ AC_MSG_ERROR(You need at least GNOME Application libs 0.4.99.4 for this version of Evolution)
fi
else
AC_MSG_ERROR(Did not find GnomeAppLib (GAL) installed)