diff options
author | Ettore Perazzoli <ettore@src.gnome.org> | 2000-07-11 09:28:04 +0800 |
---|---|---|
committer | Ettore Perazzoli <ettore@src.gnome.org> | 2000-07-11 09:28:04 +0800 |
commit | 28bc90560bb11f4d520ed24a2d281f1c02858024 (patch) | |
tree | 3376f1034cf98b2476f52108c8deff44c9ef9de8 | |
parent | 6af79c887dfef59e66945f58c4d2adbaf86f3ec2 (diff) | |
download | gsoc2013-evolution-28bc90560bb11f4d520ed24a2d281f1c02858024.tar.gz gsoc2013-evolution-28bc90560bb11f4d520ed24a2d281f1c02858024.tar.zst gsoc2013-evolution-28bc90560bb11f4d520ed24a2d281f1c02858024.zip |
Fix the GtkHTML check which was wrong.
svn path=/trunk/; revision=4084
-rw-r--r-- | ChangeLog | 2 | ||||
-rw-r--r-- | configure.in | 2 |
2 files changed, 3 insertions, 1 deletions
@@ -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 |