aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDan Winship <danw@src.gnome.org>2000-05-11 01:38:53 +0800
committerDan Winship <danw@src.gnome.org>2000-05-11 01:38:53 +0800
commitde2b4b9c3724f0bbb48b2b3b9dae366281603873 (patch)
treea41dd10ccdf126b59664a997ca421c416eb9b032
parent635c43d1c915b27762d0f57e97f946579e6d986d (diff)
downloadgsoc2013-evolution-de2b4b9c3724f0bbb48b2b3b9dae366281603873.tar
gsoc2013-evolution-de2b4b9c3724f0bbb48b2b3b9dae366281603873.tar.gz
gsoc2013-evolution-de2b4b9c3724f0bbb48b2b3b9dae366281603873.tar.bz2
gsoc2013-evolution-de2b4b9c3724f0bbb48b2b3b9dae366281603873.tar.lz
gsoc2013-evolution-de2b4b9c3724f0bbb48b2b3b9dae366281603873.tar.xz
gsoc2013-evolution-de2b4b9c3724f0bbb48b2b3b9dae366281603873.tar.zst
gsoc2013-evolution-de2b4b9c3724f0bbb48b2b3b9dae366281603873.zip
Update versions needed for gnome-print, bonobo, and gtkhtml.
* configure.in: Update versions needed for gnome-print, bonobo, and gtkhtml. svn path=/trunk/; revision=2971
-rw-r--r--ChangeLog5
-rw-r--r--configure.in26
2 files changed, 20 insertions, 11 deletions
diff --git a/ChangeLog b/ChangeLog
index 5621377ff0..5ae8fb6e12 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2000-05-10 Dan Winship <danw@helixcode.com>
+
+ * configure.in: Update versions needed for gnome-print, bonobo,
+ and gtkhtml.
+
2000-05-10 Christopher James Lahey <clahey@helixcode.com>
* HACKING: We need a HACKING file.
diff --git a/configure.in b/configure.in
index 450db33aed..d4e0924681 100644
--- a/configure.in
+++ b/configure.in
@@ -167,14 +167,14 @@ fi
dnl **************************************************
dnl * Print check
dnl **************************************************
-AC_MSG_CHECKING(for GnomePrint libraries >= 0.10)
+AC_MSG_CHECKING(for GnomePrint libraries >= 0.13)
if gnome-config --libs print > /dev/null 2>&1; then
vers=`gnome-config --modversion print | sed -e "s/gnome-print-//" | \
awk 'BEGIN { FS = "."; } { print $1 * 1000 + $2;}'`
- if test "$vers" -ge 10; then
+ if test "$vers" -ge 13; then
AC_MSG_RESULT(found)
else
- AC_MSG_ERROR(You need at least GNOME print 0.10 for this version of Gnumeric)
+ AC_MSG_ERROR(You need at least GNOME print 0.13)
fi
else
AC_MSG_ERROR(Did not find GnomePrint installed)
@@ -194,13 +194,12 @@ dnl AC_SUBST(GNOMEGNORBA_LIBS)
dnl ******************************
dnl Check for Bonobo
dnl ******************************
-AC_MSG_CHECKING(for Bonobo > 0.5)
+AC_MSG_CHECKING(for Bonobo >= 0.10)
if gnome-config --libs bonobo > /dev/null 2>&1; then
vers=`gnome-config --modversion bonobo`
- echo $vers
case $vers
in
- bonobo-0.[[012345]]) bonobo_ok=false ;;
+ bonobo-0.?) bonobo_ok=false ;;
*) bonobo_ok=true ;;
esac
else
@@ -208,9 +207,9 @@ else
fi
if $bonobo_ok; then
- AC_MSG_RESULT(found)
+ AC_MSG_RESULT($vers found)
else
- AC_MSG_ERROR(Bonobo 0.5 is required to compile Evolution)
+ AC_MSG_ERROR(Bonobo 0.10 is required to compile Evolution)
fi
@@ -278,15 +277,20 @@ dnl ******************************
AC_MSG_CHECKING(for GtkHTML)
if gnome-config --libs gtkhtml > /dev/null 2>&1; then
- gtkhtml_ok=true
+ vers=`gnome-config --modversion gtkhtml`
+ case $vers
+ in
+ gtkhtml-0.1) gtkhtml_ok=false ;;
+ *) gtkhtml_ok=true ;;
+ esac
else
gtkhtml_ok=false
fi
if $gtkhtml_ok; then
- AC_MSG_RESULT(found)
+ AC_MSG_RESULT($vers found)
else
- AC_MSG_ERROR(GtkHTML is required to compile Evolution)
+ AC_MSG_ERROR(GtkHTML 0.2 or later is required to compile Evolution)
fi
GTKHTML_CFLAGS="`gnome-config --cflags gtkhtml`"