diff options
author | Jeffrey Stedfast <fejj@helixcode.com> | 2000-07-11 07:48:22 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2000-07-11 07:48:22 +0800 |
commit | 7cc2f0833baa0e3b9bb96871594f2a489c8a4711 (patch) | |
tree | 14545f6a19b2fd69b0bf8c28a93980ae8c378fce | |
parent | a5edbcbd019ed7e976c1044091ea35300678901c (diff) | |
download | gsoc2013-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
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | configure.in | 8 |
2 files changed, 9 insertions, 4 deletions
@@ -1,3 +1,8 @@ +2000-07-10 Jeffrey Stedfast <fejj@helixcode.com> + + * configure.in: Updated to check for required GtkHTML and + gnome-print + 2000-07-10 Ettore Perazzoli <ettore@helixcode.com> * configure.in: Remove the conduits stuff for now. They depend on 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`" |