From 2823dc8b87ea0cc9e865b643fd13d3491550eca7 Mon Sep 17 00:00:00 2001 From: Radek Doulik Date: Sat, 4 Nov 2000 11:34:46 +0000 Subject: raise required version number to 0.8 added check for HTMLEditor.idl file 2000-11-03 Radek Doulik * configure.in (BONOBO_HTML_GNOME_CFLAGS): raise required version number to 0.8 added check for HTMLEditor.idl file svn path=/trunk/; revision=6393 --- ChangeLog | 6 ++++++ configure.in | 15 +++++++++++++-- 2 files changed, 19 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 0b34ed16fd..3abac282b2 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2000-11-03 Radek Doulik + + * configure.in (BONOBO_HTML_GNOME_CFLAGS): raise required version + number to 0.8 + added check for HTMLEditor.idl file + 2000-11-02 Christopher James Lahey * configure.in: Require gal 0.2.1.2. diff --git a/configure.in b/configure.in index de4390a495..a291ce33dd 100644 --- a/configure.in +++ b/configure.in @@ -332,7 +332,7 @@ if gnome-config --libs gtkhtml > /dev/null 2>&1; then vers=`gnome-config --modversion gtkhtml` case $vers in - gtkhtml-0.[01234]) gtkhtml_ok=false ;; + gtkhtml-0.[01234567]) gtkhtml_ok=false ;; *) gtkhtml_ok=true ;; esac else @@ -342,7 +342,7 @@ fi if $gtkhtml_ok; then AC_MSG_RESULT($vers found) else - AC_MSG_ERROR(GtkHTML 0.5 or later is required to compile Evolution) + AC_MSG_ERROR(GtkHTML 0.8 or later is required to compile Evolution) fi GTKHTML_CFLAGS="`gnome-config --cflags gtkhtml`" @@ -351,6 +351,17 @@ GTKHTML_LIBS="`gnome-config --libs gtkhtml`" AC_SUBST(GTKHTML_CFLAGS) AC_SUBST(GTKHTML_LIBS) +AC_MSG_CHECKING(for HTMLEditor.idl) +if test -f `gnome-config --datadir`/gtkhtml/HTMLEditor.idl; then + GTK_HTML_EDITOR_IDL=`gnome-config --datadir`/gtkhtml/HTMLEditor.idl + AC_MSG_RESULT(found) +else + AC_MSG_ERROR(HTMLEditor.idl is required to compile Evolution composer, it's included in GtkHTML +You need GtkHTML build with html-editor-control) +fi + +AC_SUBST(GTK_HTML_EDITOR_IDL) + dnl ****************************** dnl Gnome-VFS checking dnl ****************************** -- cgit