aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog4
-rw-r--r--configure.in4
2 files changed, 6 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 9740e5b93a..43d2ca4748 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2000-10-05 Michael Meeks <michael@helixcode.com>
+
+ * configure.in: Bump Bonobo requirement to >= 0.20
+
2000-10-05 Iain Holmes <iain@helixcode.com>
* executive-summary/*: Added the executive summary stuff.
diff --git a/configure.in b/configure.in
index 5466bf2216..bf2afc2b1b 100644
--- a/configure.in
+++ b/configure.in
@@ -210,11 +210,11 @@ AC_SUBST(GNOME_PRINT_CFLAGS)
dnl ******************************
dnl Check for Bonobo
dnl ******************************
-AC_MSG_CHECKING(for Bonobo >= 0.19)
+AC_MSG_CHECKING(for Bonobo >= 0.20)
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 19; then
+ if test "$vers" -ge 20; then
bonobo_ok=true
else
bonobo_ok=false