aboutsummaryrefslogtreecommitdiffstats
path: root/configure.in
diff options
context:
space:
mode:
authorChristopher James Lahey <clahey@helixcode.com>2000-12-15 04:42:49 +0800
committerChris Lahey <clahey@src.gnome.org>2000-12-15 04:42:49 +0800
commit8c843d79878f4e5c912680d9c15f5cd46356f169 (patch)
tree248f91022c727fa945285be2a921dd99aab2969e /configure.in
parent579a645c95eb46808c623a2f044d222890f0c2e9 (diff)
downloadgsoc2013-evolution-8c843d79878f4e5c912680d9c15f5cd46356f169.tar
gsoc2013-evolution-8c843d79878f4e5c912680d9c15f5cd46356f169.tar.gz
gsoc2013-evolution-8c843d79878f4e5c912680d9c15f5cd46356f169.tar.bz2
gsoc2013-evolution-8c843d79878f4e5c912680d9c15f5cd46356f169.tar.lz
gsoc2013-evolution-8c843d79878f4e5c912680d9c15f5cd46356f169.tar.xz
gsoc2013-evolution-8c843d79878f4e5c912680d9c15f5cd46356f169.tar.zst
gsoc2013-evolution-8c843d79878f4e5c912680d9c15f5cd46356f169.zip
Added a bit of addressbook NEWS.
2000-12-14 Christopher James Lahey <clahey@helixcode.com> * NEWS (Addressbook): Added a bit of addressbook NEWS. * configure.in: Updated the gal check to require gal 0.4. svn path=/trunk/; revision=7030
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 df6793e657..74efbf168c 100644
--- a/configure.in
+++ b/configure.in
@@ -313,14 +313,14 @@ fi
dnl ******************************
dnl Gnome App Lib checking
dnl ******************************
-AC_MSG_CHECKING(for Gnome App libraries (GAL) >= 0.3)
+AC_MSG_CHECKING(for Gnome App libraries (GAL) >= 0.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 30000; then
+ if test "$vers" -ge 40000; then
AC_MSG_RESULT(found)
else
- AC_MSG_ERROR(You need at least GNOME Application libs 0.3 for this version of Evolution)
+ AC_MSG_ERROR(You need at least GNOME Application libs 0.4 for this version of Evolution)
fi
else
AC_MSG_ERROR(Did not find GnomeAppLib (GAL) installed)