diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | configure.in | 4 |
2 files changed, 7 insertions, 2 deletions
@@ -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 |