diff options
author | JP Rosevear <jpr@helixcode.com> | 2001-01-05 05:56:16 +0800 |
---|---|---|
committer | JP Rosevear <jpr@src.gnome.org> | 2001-01-05 05:56:16 +0800 |
commit | 5ff5cd81532edda57a0793273fee0cdadef07dd9 (patch) | |
tree | cbf4db4f680092b57f36b89d166e200c20d02580 /configure.in | |
parent | 2bd88e7f2587809a6079a8cfd92876be50a46ee6 (diff) | |
download | gsoc2013-evolution-5ff5cd81532edda57a0793273fee0cdadef07dd9.tar gsoc2013-evolution-5ff5cd81532edda57a0793273fee0cdadef07dd9.tar.gz gsoc2013-evolution-5ff5cd81532edda57a0793273fee0cdadef07dd9.tar.bz2 gsoc2013-evolution-5ff5cd81532edda57a0793273fee0cdadef07dd9.tar.lz gsoc2013-evolution-5ff5cd81532edda57a0793273fee0cdadef07dd9.tar.xz gsoc2013-evolution-5ff5cd81532edda57a0793273fee0cdadef07dd9.tar.zst gsoc2013-evolution-5ff5cd81532edda57a0793273fee0cdadef07dd9.zip |
Remove non-existent file
2001-01-04 JP Rosevear <jpr@helixcode.com>
* POTFILES.in: Remove non-existent file
2001-01-04 JP Rosevear <jpr@helixcode.com>
* conduit/Makefile.am: Fix hard coded library names that were
accidentally committed (i'm looking at you miggie)
* contact-editor/e-contact-editor.c (categories_clicked): Reflect
renaming.
* contact-editor/e-contact-editor-categories.[hc]: These are
living in gal now
svn path=/trunk/; revision=7261
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/configure.in b/configure.in index 9646053bb8..2bd02edbfd 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) +AC_MSG_CHECKING(for Gnome App libraries (GAL) >= 0.4.99.2) 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 40000; then + if test "$vers" -ge 49902; then AC_MSG_RESULT(found) else - AC_MSG_ERROR(You need at least GNOME Application libs 0.4 for this version of Evolution) + AC_MSG_ERROR(You need at least GNOME Application libs 0.4.99.2 for this version of Evolution) fi else AC_MSG_ERROR(Did not find GnomeAppLib (GAL) installed) |