diff options
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | NEWS | 6 | ||||
-rw-r--r-- | configure.in | 6 |
3 files changed, 13 insertions, 5 deletions
@@ -1,5 +1,11 @@ 2000-12-14 Christopher James Lahey <clahey@helixcode.com> + * NEWS (Addressbook): Added a bit of addressbook NEWS. + + * configure.in: Updated the gal check to require gal 0.4. + +2000-12-14 Christopher James Lahey <clahey@helixcode.com> + * art/mail-new.xpm, art/mail-read.xpm, art/mail-replied.xpm: Moved these images each up one pixel. @@ -191,9 +191,11 @@ Calendar: Addressbook: - Addressbook conduit now working, experimentally, except for - extended character support (ie accented chars) (JP) + extended character support (ie accented chars.) (JP) - - Extended wombat functionality with getChanges call (JP) + - Extended wombat functionality with getChanges call. (JP) + + - Full name and address dialogs in contact editor fixed. (Chris) Executive Summary: (iain) diff --git a/configure.in b/configure.in index df6793e657..74efbf168c 100644 --- a/configure.in +++ b/configure.in @@ -313,14 +313,14 @@ fi dnl ****************************** dnl Gnome App Lib checking dnl ****************************** -AC_MSG_CHECKING(for Gnome App libraries (GAL) >= 0.3) +AC_MSG_CHECKING(for Gnome App libraries (GAL) >= 0.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 30000; then + if test "$vers" -ge 40000; then AC_MSG_RESULT(found) else - AC_MSG_ERROR(You need at least GNOME Application libs 0.3 for this version of Evolution) + AC_MSG_ERROR(You need at least GNOME Application libs 0.4 for this version of Evolution) fi else AC_MSG_ERROR(Did not find GnomeAppLib (GAL) installed) |