aboutsummaryrefslogtreecommitdiffstats
path: root/configure.in
diff options
context:
space:
mode:
authorJeffrey Stedfast <fejj@helixcode.com>2000-07-11 07:48:22 +0800
committerJeffrey Stedfast <fejj@src.gnome.org>2000-07-11 07:48:22 +0800
commit7cc2f0833baa0e3b9bb96871594f2a489c8a4711 (patch)
tree14545f6a19b2fd69b0bf8c28a93980ae8c378fce /configure.in
parenta5edbcbd019ed7e976c1044091ea35300678901c (diff)
downloadgsoc2013-evolution-7cc2f0833baa0e3b9bb96871594f2a489c8a4711.tar
gsoc2013-evolution-7cc2f0833baa0e3b9bb96871594f2a489c8a4711.tar.gz
gsoc2013-evolution-7cc2f0833baa0e3b9bb96871594f2a489c8a4711.tar.bz2
gsoc2013-evolution-7cc2f0833baa0e3b9bb96871594f2a489c8a4711.tar.lz
gsoc2013-evolution-7cc2f0833baa0e3b9bb96871594f2a489c8a4711.tar.xz
gsoc2013-evolution-7cc2f0833baa0e3b9bb96871594f2a489c8a4711.tar.zst
gsoc2013-evolution-7cc2f0833baa0e3b9bb96871594f2a489c8a4711.zip
Updated to check for required GtkHTML and gnome-print
2000-07-10 Jeffrey Stedfast <fejj@helixcode.com> * configure.in: Updated to check for required GtkHTML and gnome-print svn path=/trunk/; revision=4074
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in8
1 files changed, 4 insertions, 4 deletions
diff --git a/configure.in b/configure.in
index 2e45957c6d..eb41db6b5b 100644
--- a/configure.in
+++ b/configure.in
@@ -6,7 +6,7 @@ cflags_set=${CFLAGS+set}
EVOLUTION_MAJOR_VERSION=0
EVOLUTION_MINOR_VERSION=0
-EVOLUTION_MICRO_VERSION=1
+EVOLUTION_MICRO_VERSION=2
VERSION=$EVOLUTION_MINOR_VERSION.$EVOLUTION_MICRO_VERSION
PACKAGE=evolution
@@ -193,7 +193,7 @@ fi
dnl **************************************************
dnl * Print check
dnl **************************************************
-AC_MSG_CHECKING(for GnomePrint libraries >= 0.13)
+AC_MSG_CHECKING(for GnomePrint libraries >= 0.20)
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;}'`
@@ -326,7 +326,7 @@ if gnome-config --libs gtkhtml > /dev/null 2>&1; then
vers=`gnome-config --modversion gtkhtml`
case $vers
in
- gtkhtml-0.1) gtkhtml_ok=false ;;
+ gtkhtml-0.5) gtkhtml_ok=false ;;
*) gtkhtml_ok=true ;;
esac
else
@@ -336,7 +336,7 @@ fi
if $gtkhtml_ok; then
AC_MSG_RESULT($vers found)
else
- AC_MSG_ERROR(GtkHTML 0.2 or later is required to compile Evolution)
+ AC_MSG_ERROR(GtkHTML 0.5 or later is required to compile Evolution)
fi
GTKHTML_CFLAGS="`gnome-config --cflags gtkhtml`"