aboutsummaryrefslogtreecommitdiffstats
path: root/configure.in
diff options
context:
space:
mode:
authorChristopher James Lahey <clahey@helixcode.com>2000-11-10 10:54:37 +0800
committerChris Lahey <clahey@src.gnome.org>2000-11-10 10:54:37 +0800
commit2ad0db845a7e2991ca2bf7f1018d2bd78aad1768 (patch)
tree2117e866a9ccbbde31b7ab7e0f66d2fd0a2c60f4 /configure.in
parent3e041d400f772154ec7ff97d0e097a6f7bb4b98e (diff)
downloadgsoc2013-evolution-2ad0db845a7e2991ca2bf7f1018d2bd78aad1768.tar
gsoc2013-evolution-2ad0db845a7e2991ca2bf7f1018d2bd78aad1768.tar.gz
gsoc2013-evolution-2ad0db845a7e2991ca2bf7f1018d2bd78aad1768.tar.bz2
gsoc2013-evolution-2ad0db845a7e2991ca2bf7f1018d2bd78aad1768.tar.lz
gsoc2013-evolution-2ad0db845a7e2991ca2bf7f1018d2bd78aad1768.tar.xz
gsoc2013-evolution-2ad0db845a7e2991ca2bf7f1018d2bd78aad1768.tar.zst
gsoc2013-evolution-2ad0db845a7e2991ca2bf7f1018d2bd78aad1768.zip
Require gal 0.2.99.1.
2000-11-09 Christopher James Lahey <clahey@helixcode.com> * configure.in: Require gal 0.2.99.1. From addressbook/ChangeLog: 2000-11-09 Christopher James Lahey <clahey@helixcode.com> * backend/pas/pas-backend-ldap.c: Fixed a warning. * gui/component/addressbook.c: Put in gal view menus for testing purposes. * printing/e-contact-print-envelope.c: Fixed up envelope printing a bit. Added code for printing return addresses. svn path=/trunk/; revision=6529
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 0c1499b3a3..50db8b0cef 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.1.3)
+AC_MSG_CHECKING(for Gnome App libraries (GAL) >= 0.2.99.1)
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 20103; then
+ if test "$vers" -ge 29901; then
AC_MSG_RESULT(found)
else
- AC_MSG_ERROR(You need at least GNOME Application libs 0.2.1.3 for this version of Evolution)
+ AC_MSG_ERROR(You need at least GNOME Application libs 0.2.99.1 for this version of Evolution)
fi
else
AC_MSG_ERROR(Did not find GnomeAppLib (GAL) installed)