diff options
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | configure.in | 4 |
2 files changed, 6 insertions, 2 deletions
@@ -1,3 +1,7 @@ +2000-11-02 Michael Meeks <michael@helixcode.com> + + * configure.in: Require Bonobo-0.27+ + 2000-11-01 Gediminas Paulauskas <menesis@delfi.lt> * addressbook/ename/.cvsignore, addressbook/gui/minicard/.cvsignore, diff --git a/configure.in b/configure.in index 84af56b222..c8356355e0 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.20) +AC_MSG_CHECKING(for Bonobo >= 0.27) 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 20; then + if test "$vers" -ge 27; then bonobo_ok=true else bonobo_ok=false |