aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog6
-rw-r--r--NEWS6
-rw-r--r--configure.in6
3 files changed, 13 insertions, 5 deletions
diff --git a/ChangeLog b/ChangeLog
index 60e0ea03da..f0b6e45387 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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.
diff --git a/NEWS b/NEWS
index 333b5d8547..904179acb6 100644
--- a/NEWS
+++ b/NEWS
@@ -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)