diff options
author | Radek Doulik <rodo@helixcode.com> | 2000-11-06 23:27:36 +0800 |
---|---|---|
committer | Radek Doulik <rodo@src.gnome.org> | 2000-11-06 23:27:36 +0800 |
commit | 7bf26ac21b6f29ead92fd5b28b463fe3671a9173 (patch) | |
tree | 8475850d6dd296059624a171c6be3ce5180f6698 /configure.in | |
parent | 8ffa8ea58550511b18c6c8028f71e366c5e59cef (diff) | |
download | gsoc2013-evolution-7bf26ac21b6f29ead92fd5b28b463fe3671a9173.tar gsoc2013-evolution-7bf26ac21b6f29ead92fd5b28b463fe3671a9173.tar.gz gsoc2013-evolution-7bf26ac21b6f29ead92fd5b28b463fe3671a9173.tar.bz2 gsoc2013-evolution-7bf26ac21b6f29ead92fd5b28b463fe3671a9173.tar.lz gsoc2013-evolution-7bf26ac21b6f29ead92fd5b28b463fe3671a9173.tar.xz gsoc2013-evolution-7bf26ac21b6f29ead92fd5b28b463fe3671a9173.tar.zst gsoc2013-evolution-7bf26ac21b6f29ead92fd5b28b463fe3671a9173.zip |
also look for HTMLEditor.idl in ${prefix}/share/gtkhtml
2000-11-06 Radek Doulik <rodo@helixcode.com>
* configure.in (GTKHTML_LIBS): also look for HTMLEditor.idl in
${prefix}/share/gtkhtml
svn path=/trunk/; revision=6414
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/configure.in b/configure.in index a291ce33dd..5ad702ca3b 100644 --- a/configure.in +++ b/configure.in @@ -351,13 +351,18 @@ GTKHTML_LIBS="`gnome-config --libs gtkhtml`" AC_SUBST(GTKHTML_CFLAGS) AC_SUBST(GTKHTML_LIBS) -AC_MSG_CHECKING(for HTMLEditor.idl) +AC_MSG_CHECKING(for HTMLEditor.idl in `gnome-config --datadir`/gtkhtml or ${prefix}/share/gtkhtml) 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 + if test -f ${prefix}/share/gtkhtml/HTMLEditor.idl; then + GTK_HTML_EDITOR_IDL=${prefix}/share/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 fi AC_SUBST(GTK_HTML_EDITOR_IDL) |