diff options
author | Christopher James Lahey <clahey@ximian.com> | 2001-01-16 10:16:13 +0800 |
---|---|---|
committer | Chris Lahey <clahey@src.gnome.org> | 2001-01-16 10:16:13 +0800 |
commit | e202430d41d6b793e94d7ac0d252de826e80991b (patch) | |
tree | 183ef86f17182dea035c2f2c6d65952a5c12923a | |
parent | fa62a2652854d3b0d80d6f28fac1df490a391a83 (diff) | |
download | gsoc2013-evolution-e202430d41d6b793e94d7ac0d252de826e80991b.tar gsoc2013-evolution-e202430d41d6b793e94d7ac0d252de826e80991b.tar.gz gsoc2013-evolution-e202430d41d6b793e94d7ac0d252de826e80991b.tar.bz2 gsoc2013-evolution-e202430d41d6b793e94d7ac0d252de826e80991b.tar.lz gsoc2013-evolution-e202430d41d6b793e94d7ac0d252de826e80991b.tar.xz gsoc2013-evolution-e202430d41d6b793e94d7ac0d252de826e80991b.tar.zst gsoc2013-evolution-e202430d41d6b793e94d7ac0d252de826e80991b.zip |
Changed the required version of gal.
2001-01-15 Christopher James Lahey <clahey@ximian.com>
* configure.in: Changed the required version of gal.
svn path=/trunk/; revision=7525
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | configure.in | 6 |
2 files changed, 7 insertions, 3 deletions
@@ -1,3 +1,7 @@ +2001-01-15 Christopher James Lahey <clahey@ximian.com> + + * configure.in: Changed the required version of gal. + 2001-01-15 Tuomas Kuosmanen <tigert@ximian.com> * art/16_copy_message.xpm, art/16_move_message.xpm: icons for the diff --git a/configure.in b/configure.in index 8e53457b38..4e849f4833 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.3) +AC_MSG_CHECKING(for Gnome App libraries (GAL) >= 0.4.99.4) 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 49903; then + if test "$vers" -ge 49904; then AC_MSG_RESULT(found) else - AC_MSG_ERROR(You need at least GNOME Application libs 0.4.99.3 for this version of Evolution) + AC_MSG_ERROR(You need at least GNOME Application libs 0.4.99.4 for this version of Evolution) fi else AC_MSG_ERROR(Did not find GnomeAppLib (GAL) installed) |