diff options
author | Christopher James Lahey <clahey@helixcode.com> | 2001-01-13 06:49:45 +0800 |
---|---|---|
committer | Chris Lahey <clahey@src.gnome.org> | 2001-01-13 06:49:45 +0800 |
commit | a6dd190c216806d4c0520d7a8e6a8d26d056154e (patch) | |
tree | fb57d4a5e859b2d83155eb0efa35f02b286deb54 /configure.in | |
parent | e04883fa81bcb7efffe02627c5f32b5c36e74f6d (diff) | |
download | gsoc2013-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
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 6 |
1 files changed, 3 insertions, 3 deletions
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) |