diff options
author | Christopher James Lahey <clahey@ximian.com> | 2001-03-01 16:45:59 +0800 |
---|---|---|
committer | Chris Lahey <clahey@src.gnome.org> | 2001-03-01 16:45:59 +0800 |
commit | 9697170096ee30126bae1304eedab63c77103705 (patch) | |
tree | 855e02e5b5605b4b2ac92ae6c8ced3d845aa3b66 | |
parent | 92d19d2d4f989a021a6587755689b7439c7fb064 (diff) | |
download | gsoc2013-evolution-9697170096ee30126bae1304eedab63c77103705.tar gsoc2013-evolution-9697170096ee30126bae1304eedab63c77103705.tar.gz gsoc2013-evolution-9697170096ee30126bae1304eedab63c77103705.tar.bz2 gsoc2013-evolution-9697170096ee30126bae1304eedab63c77103705.tar.lz gsoc2013-evolution-9697170096ee30126bae1304eedab63c77103705.tar.xz gsoc2013-evolution-9697170096ee30126bae1304eedab63c77103705.tar.zst gsoc2013-evolution-9697170096ee30126bae1304eedab63c77103705.zip |
Check for gal 0.5.99.2.
2001-03-01 Christopher James Lahey <clahey@ximian.com>
* configure.in: Check for gal 0.5.99.2.
svn path=/trunk/; revision=8445
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | configure.in | 6 |
2 files changed, 7 insertions, 3 deletions
@@ -1,3 +1,7 @@ +2001-03-01 Christopher James Lahey <clahey@ximian.com> + + * configure.in: Check for gal 0.5.99.2. + 2001-02-19 Christopher James Lahey <clahey@ximian.com> * configure.in: Check for gal 0.5.99.1. diff --git a/configure.in b/configure.in index 1b6fa157e6..8e5b90933e 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.99.1) +AC_MSG_CHECKING(for Gnome App libraries (GAL) >= 0.5.99.2) 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 59901; then + if test "$vers" -ge 59902; then AC_MSG_RESULT(found) else - AC_MSG_ERROR(You need at least GNOME Application libs 0.5.99.1 for this version of Evolution) + AC_MSG_ERROR(You need at least GNOME Application libs 0.5.99.2 for this version of Evolution) fi else AC_MSG_ERROR(Did not find GnomeAppLib (GAL) installed) |