aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristopher James Lahey <clahey@helixcode.com>2001-01-13 06:49:45 +0800
committerChris Lahey <clahey@src.gnome.org>2001-01-13 06:49:45 +0800
commita6dd190c216806d4c0520d7a8e6a8d26d056154e (patch)
treefb57d4a5e859b2d83155eb0efa35f02b286deb54
parente04883fa81bcb7efffe02627c5f32b5c36e74f6d (diff)
downloadgsoc2013-evolution-a6dd190c216806d4c0520d7a8e6a8d26d056154e.tar
gsoc2013-evolution-a6dd190c216806d4c0520d7a8e6a8d26d056154e.tar.gz
gsoc2013-evolution-a6dd190c216806d4c0520d7a8e6a8d26d056154e.tar.bz2
gsoc2013-evolution-a6dd190c216806d4c0520d7a8e6a8d26d056154e.tar.lz
gsoc2013-evolution-a6dd190c216806d4c0520d7a8e6a8d26d056154e.tar.xz
gsoc2013-evolution-a6dd190c216806d4c0520d7a8e6a8d26d056154e.tar.zst
gsoc2013-evolution-a6dd190c216806d4c0520d7a8e6a8d26d056154e.zip
Make evolution depend on the new version of gal.
2001-01-12 Christopher James Lahey <clahey@helixcode.com> * configure.in: Make evolution depend on the new version of gal. svn path=/trunk/; revision=7467
-rw-r--r--ChangeLog8
-rw-r--r--configure.in6
2 files changed, 9 insertions, 5 deletions
diff --git a/ChangeLog b/ChangeLog
index 5436ae8f7d..066f360df9 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2001-01-12 Christopher James Lahey <clahey@helixcode.com>
+
+ * configure.in: Make evolution depend on the new version of gal.
+
2001-01-12 Dan Winship <danw@ximian.com>
* MAINTAINERS, AUTHORS, README: Ximianize. Also update the README
@@ -28,8 +32,8 @@
2001-01-03 Christopher James Lahey <clahey@helixcode.com>
- * configure.in (EVOLUTION_DIR): Removed
- camel/providers/mbox/Makefile and camel/providers/mh/Makefile.
+ * configure.in: Removed camel/providers/mbox/Makefile and
+ camel/providers/mh/Makefile.
2001-01-01 Michael Meeks <michael@helixcode.com>
diff --git a/configure.in b/configure.in
index d8dde4946a..cd09f1692d 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.2)
+AC_MSG_CHECKING(for Gnome App libraries (GAL) >= 0.4.99.3)
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 49902; then
+ if test "$vers" -ge 49903; then
AC_MSG_RESULT(found)
else
- AC_MSG_ERROR(You need at least GNOME Application libs 0.4.99.2 for this version of Evolution)
+ AC_MSG_ERROR(You need at least GNOME Application libs 0.4.99.3 for this version of Evolution)
fi
else
AC_MSG_ERROR(Did not find GnomeAppLib (GAL) installed)