aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristopher James Lahey <clahey@ximian.com>2001-02-15 17:38:04 +0800
committerChris Lahey <clahey@src.gnome.org>2001-02-15 17:38:04 +0800
commit1be84b82e48957805d1278472def482444c48b70 (patch)
treea883257886b4f4331e5940bcbc8e72fc2bf2907f
parent3080e47960f93bfa08bbdac6ed2af50372753d93 (diff)
downloadgsoc2013-evolution-1be84b82e48957805d1278472def482444c48b70.tar
gsoc2013-evolution-1be84b82e48957805d1278472def482444c48b70.tar.gz
gsoc2013-evolution-1be84b82e48957805d1278472def482444c48b70.tar.bz2
gsoc2013-evolution-1be84b82e48957805d1278472def482444c48b70.tar.lz
gsoc2013-evolution-1be84b82e48957805d1278472def482444c48b70.tar.xz
gsoc2013-evolution-1be84b82e48957805d1278472def482444c48b70.tar.zst
gsoc2013-evolution-1be84b82e48957805d1278472def482444c48b70.zip
Check for gal 0.5.99.0.
2001-02-15 Christopher James Lahey <clahey@ximian.com> * configure.in: Check for gal 0.5.99.0. svn path=/trunk/; revision=8241
-rw-r--r--ChangeLog4
-rw-r--r--configure.in6
2 files changed, 7 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 1a0d3b84ef..7c45329e9b 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2001-02-15 Christopher James Lahey <clahey@ximian.com>
+
+ * configure.in: Check for gal 0.5.99.0.
+
2001-02-14 Dan Winship <danw@ximian.com>
* various .cvsignore files: Ignore generated .oaf files
diff --git a/configure.in b/configure.in
index ce60f30a54..dc0874d756 100644
--- a/configure.in
+++ b/configure.in
@@ -333,14 +333,14 @@ fi
dnl ******************************
dnl Gnome App Lib checking
dnl ******************************
-AC_MSG_CHECKING(for Gnome App libraries (GAL) >= 0.5)
+AC_MSG_CHECKING(for Gnome App libraries (GAL) >= 0.5.99.0)
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 50000; then
+ if test "$vers" -ge 59900; then
AC_MSG_RESULT(found)
else
- AC_MSG_ERROR(You need at least GNOME Application libs 0.5 for this version of Evolution)
+ AC_MSG_ERROR(You need at least GNOME Application libs 0.5.99.0 for this version of Evolution)
fi
else
AC_MSG_ERROR(Did not find GnomeAppLib (GAL) installed)