diff options
-rw-r--r-- | ChangeLog | 8 | ||||
-rw-r--r-- | configure.in | 6 |
2 files changed, 9 insertions, 5 deletions
@@ -1,3 +1,7 @@ +2001-01-12 Christopher James Lahey <clahey@helixcode.com> + + * configure.in: Make evolution depend on the new version of gal. + 2001-01-12 Dan Winship <danw@ximian.com> * MAINTAINERS, AUTHORS, README: Ximianize. Also update the README @@ -28,8 +32,8 @@ 2001-01-03 Christopher James Lahey <clahey@helixcode.com> - * configure.in (EVOLUTION_DIR): Removed - camel/providers/mbox/Makefile and camel/providers/mh/Makefile. + * configure.in: Removed camel/providers/mbox/Makefile and + camel/providers/mh/Makefile. 2001-01-01 Michael Meeks <michael@helixcode.com> 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) |