aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEttore Perazzoli <ettore@src.gnome.org>2000-07-11 09:28:04 +0800
committerEttore Perazzoli <ettore@src.gnome.org>2000-07-11 09:28:04 +0800
commit28bc90560bb11f4d520ed24a2d281f1c02858024 (patch)
tree3376f1034cf98b2476f52108c8deff44c9ef9de8
parent6af79c887dfef59e66945f58c4d2adbaf86f3ec2 (diff)
downloadgsoc2013-evolution-28bc90560bb11f4d520ed24a2d281f1c02858024.tar
gsoc2013-evolution-28bc90560bb11f4d520ed24a2d281f1c02858024.tar.gz
gsoc2013-evolution-28bc90560bb11f4d520ed24a2d281f1c02858024.tar.bz2
gsoc2013-evolution-28bc90560bb11f4d520ed24a2d281f1c02858024.tar.lz
gsoc2013-evolution-28bc90560bb11f4d520ed24a2d281f1c02858024.tar.xz
gsoc2013-evolution-28bc90560bb11f4d520ed24a2d281f1c02858024.tar.zst
gsoc2013-evolution-28bc90560bb11f4d520ed24a2d281f1c02858024.zip
Fix the GtkHTML check which was wrong.
svn path=/trunk/; revision=4084
-rw-r--r--ChangeLog2
-rw-r--r--configure.in2
2 files changed, 3 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index bcabf6f5c4..6b93e43135 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -2,6 +2,8 @@
* Version 0.2.
+ * configure.in: Reverse the GtkHTML check.
+
2000-07-10 Jeffrey Stedfast <fejj@helixcode.com>
* configure.in: Updated to check for required GtkHTML and
diff --git a/configure.in b/configure.in
index eb41db6b5b..4e90fec199 100644
--- a/configure.in
+++ b/configure.in
@@ -326,7 +326,7 @@ if gnome-config --libs gtkhtml > /dev/null 2>&1; then
vers=`gnome-config --modversion gtkhtml`
case $vers
in
- gtkhtml-0.5) gtkhtml_ok=false ;;
+ gtkhtml-0.[01234]) gtkhtml_ok=false ;;
*) gtkhtml_ok=true ;;
esac
else