aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog4
-rw-r--r--configure.in6
2 files changed, 7 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 9e527fc621..0e6bd51638 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2001-01-01 Michael Meeks <michael@helixcode.com>
+
+ * configure.in: Require bonobo 0.31
+
2000-12-24 Not Zed <NotZed@HelixCode.com>
* configure.in: If we find threads ok, then always turn on
diff --git a/configure.in b/configure.in
index eb84acba0a..29f312a9a6 100644
--- a/configure.in
+++ b/configure.in
@@ -242,11 +242,11 @@ AC_SUBST(GNOME_PRINT_CFLAGS)
dnl ******************************
dnl Check for Bonobo
dnl ******************************
-AC_MSG_CHECKING(for Bonobo >= 0.29)
+AC_MSG_CHECKING(for Bonobo >= 0.31)
if gnome-config --libs bonobox > /dev/null 2>&1; then
vers=`gnome-config --modversion bonobo | sed -e "s/bonobo-//" | \
awk 'BEGIN { FS = "."; } { printf "%d", $1 * 1000 + $2;}'`
- if test "$vers" -ge 29; then
+ if test "$vers" -ge 31; then
bonobo_ok=true
else
bonobo_ok=false
@@ -258,7 +258,7 @@ fi
if $bonobo_ok; then
AC_MSG_RESULT($vers found)
else
- AC_MSG_ERROR(Bonobo 0.29 or newer is required to compile Evolution)
+ AC_MSG_ERROR(Bonobo 0.31 or newer is required to compile Evolution)
fi
dnl ******************************