aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristopher James Lahey <clahey@ximian.com>2001-02-09 06:07:06 +0800
committerChris Lahey <clahey@src.gnome.org>2001-02-09 06:07:06 +0800
commitd85e3c92787852430d68b07da7c0398c906f7856 (patch)
tree63810a999cc9e4d22e093c7ff03409c41464c469
parent88594ac53a888dac465fc5e2ccb0925cc0c0a49a (diff)
downloadgsoc2013-evolution-d85e3c92787852430d68b07da7c0398c906f7856.tar
gsoc2013-evolution-d85e3c92787852430d68b07da7c0398c906f7856.tar.gz
gsoc2013-evolution-d85e3c92787852430d68b07da7c0398c906f7856.tar.bz2
gsoc2013-evolution-d85e3c92787852430d68b07da7c0398c906f7856.tar.lz
gsoc2013-evolution-d85e3c92787852430d68b07da7c0398c906f7856.tar.xz
gsoc2013-evolution-d85e3c92787852430d68b07da7c0398c906f7856.tar.zst
gsoc2013-evolution-d85e3c92787852430d68b07da7c0398c906f7856.zip
Upped the version number of gal required to 0.5.
2001-02-08 Christopher James Lahey <clahey@ximian.com> * configure.in: Upped the version number of gal required to 0.5. svn path=/trunk/; revision=8121
-rw-r--r--ChangeLog4
-rw-r--r--configure.in6
2 files changed, 7 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 125a0a5e32..d847e34566 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2001-02-08 Christopher James Lahey <clahey@ximian.com>
+
+ * configure.in: Upped the version number of gal required to 0.5.
+
2001-02-07 JP Rosevear <jpr@ximian.com>
* README: Update to latest requirements
diff --git a/configure.in b/configure.in
index 7d91368d25..d93e1fc68e 100644
--- a/configure.in
+++ b/configure.in
@@ -332,14 +332,14 @@ fi
dnl ******************************
dnl Gnome App Lib checking
dnl ******************************
-AC_MSG_CHECKING(for Gnome App libraries (GAL) >= 0.4.99.8)
+AC_MSG_CHECKING(for Gnome App libraries (GAL) >= 0.5)
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 49908; then
+ if test "$vers" -ge 50000; then
AC_MSG_RESULT(found)
else
- AC_MSG_ERROR(You need at least GNOME Application libs 0.4.99.8 for this version of Evolution)
+ AC_MSG_ERROR(You need at least GNOME Application libs 0.5 for this version of Evolution)
fi
else
AC_MSG_ERROR(Did not find GnomeAppLib (GAL) installed)