diff options
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | configure.in | 4 |
2 files changed, 6 insertions, 2 deletions
@@ -1,3 +1,7 @@ +2001-02-09 Michael Meeks <michael@ximian.com> + + * configure.in: depend on bonobo >= 0.36 + 2001-02-08 Christopher James Lahey <clahey@ximian.com> * configure.in: Upped the version number of gal required to 0.5. diff --git a/configure.in b/configure.in index d93e1fc68e..9a409c5f38 100644 --- a/configure.in +++ b/configure.in @@ -260,11 +260,11 @@ AC_SUBST(GNOME_PRINT_CFLAGS) dnl ****************************** dnl Check for Bonobo dnl ****************************** -AC_MSG_CHECKING(for Bonobo >= 0.31) +AC_MSG_CHECKING(for Bonobo >= 0.36) 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 31; then + if test "$vers" -ge 36; then bonobo_ok=true else bonobo_ok=false |