diff options
author | Michael Meeks <michael@helixcode.com> | 2000-10-05 15:15:13 +0800 |
---|---|---|
committer | Michael Meeks <mmeeks@src.gnome.org> | 2000-10-05 15:15:13 +0800 |
commit | 08169776b3b002398ac099627c9458753f21a6ca (patch) | |
tree | 01d82da2c5d7462f21f5ce88de6e1b8265016b1e | |
parent | d5a93f01c1a20edf80be106993f64fc0385a7a59 (diff) | |
download | gsoc2013-evolution-08169776b3b002398ac099627c9458753f21a6ca.tar gsoc2013-evolution-08169776b3b002398ac099627c9458753f21a6ca.tar.gz gsoc2013-evolution-08169776b3b002398ac099627c9458753f21a6ca.tar.bz2 gsoc2013-evolution-08169776b3b002398ac099627c9458753f21a6ca.tar.lz gsoc2013-evolution-08169776b3b002398ac099627c9458753f21a6ca.tar.xz gsoc2013-evolution-08169776b3b002398ac099627c9458753f21a6ca.tar.zst gsoc2013-evolution-08169776b3b002398ac099627c9458753f21a6ca.zip |
Bump Bonobo requirement to >= 0.20
2000-10-05 Michael Meeks <michael@helixcode.com>
* configure.in: Bump Bonobo requirement to >= 0.20
svn path=/trunk/; revision=5743
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | configure.in | 4 |
2 files changed, 6 insertions, 2 deletions
@@ -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 |