aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Meeks <michael@helixcode.com>2000-11-11 05:08:10 +0800
committerMichael Meeks <mmeeks@src.gnome.org>2000-11-11 05:08:10 +0800
commitb110ff5019ad64534f64e66bc541d980fa0274ab (patch)
treed1aaf385065cf0a701287ff88c044dd660aa18fe
parent88bb6dde6dd2346f47bd05a59a2b141cd3b17a6e (diff)
downloadgsoc2013-evolution-b110ff5019ad64534f64e66bc541d980fa0274ab.tar
gsoc2013-evolution-b110ff5019ad64534f64e66bc541d980fa0274ab.tar.gz
gsoc2013-evolution-b110ff5019ad64534f64e66bc541d980fa0274ab.tar.bz2
gsoc2013-evolution-b110ff5019ad64534f64e66bc541d980fa0274ab.tar.lz
gsoc2013-evolution-b110ff5019ad64534f64e66bc541d980fa0274ab.tar.xz
gsoc2013-evolution-b110ff5019ad64534f64e66bc541d980fa0274ab.tar.zst
gsoc2013-evolution-b110ff5019ad64534f64e66bc541d980fa0274ab.zip
Require Bonobo >= 0.29, due to the XSync fix.
2000-11-10 Michael Meeks <michael@helixcode.com> * configure.in: Require Bonobo >= 0.29, due to the XSync fix. 2000-11-06 Michael Meeks <michael@helixcode.com> * e-shell-view.c (unrealize): remove. (e_shell_view_construct): ditto. svn path=/trunk/; revision=6537
-rw-r--r--ChangeLog5
-rw-r--r--configure.in4
2 files changed, 7 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 4cf17727eb..7ee443d1ea 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2000-11-10 Michael Meeks <michael@helixcode.com>
+
+ * configure.in: Require Bonobo >= 0.29, due to the XSync
+ fix.
+
2000-11-09 Christopher James Lahey <clahey@helixcode.com>
* configure.in: Require gal 0.2.99.1.
diff --git a/configure.in b/configure.in
index 50db8b0cef..b47aa3b1c8 100644
--- a/configure.in
+++ b/configure.in
@@ -214,11 +214,11 @@ AC_SUBST(GNOME_PRINT_CFLAGS)
dnl ******************************
dnl Check for Bonobo
dnl ******************************
-AC_MSG_CHECKING(for Bonobo >= 0.27)
+AC_MSG_CHECKING(for Bonobo >= 0.29)
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 27; then
+ if test "$vers" -ge 29; then
bonobo_ok=true
else
bonobo_ok=false