diff options
author | Christopher James Lahey <clahey@helixcode.com> | 2000-12-15 04:42:49 +0800 |
---|---|---|
committer | Chris Lahey <clahey@src.gnome.org> | 2000-12-15 04:42:49 +0800 |
commit | 8c843d79878f4e5c912680d9c15f5cd46356f169 (patch) | |
tree | 248f91022c727fa945285be2a921dd99aab2969e | |
parent | 579a645c95eb46808c623a2f044d222890f0c2e9 (diff) | |
download | gsoc2013-evolution-8c843d79878f4e5c912680d9c15f5cd46356f169.tar gsoc2013-evolution-8c843d79878f4e5c912680d9c15f5cd46356f169.tar.gz gsoc2013-evolution-8c843d79878f4e5c912680d9c15f5cd46356f169.tar.bz2 gsoc2013-evolution-8c843d79878f4e5c912680d9c15f5cd46356f169.tar.lz gsoc2013-evolution-8c843d79878f4e5c912680d9c15f5cd46356f169.tar.xz gsoc2013-evolution-8c843d79878f4e5c912680d9c15f5cd46356f169.tar.zst gsoc2013-evolution-8c843d79878f4e5c912680d9c15f5cd46356f169.zip |
Added a bit of addressbook NEWS.
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.
svn path=/trunk/; revision=7030
-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) |