diff options
author | Ettore Perazzoli <ettore@src.gnome.org> | 2000-03-02 08:09:45 +0800 |
---|---|---|
committer | Ettore Perazzoli <ettore@src.gnome.org> | 2000-03-02 08:09:45 +0800 |
commit | 799d7f54fdd6bcbf6b73d95070e17b7455c94830 (patch) | |
tree | 280f5659313d908d2f1a5f9b93a0d0fa635008fd /configure.in | |
parent | dff7aec3c3302c2191100ce22a8cf28959808c28 (diff) | |
download | gsoc2013-evolution-799d7f54fdd6bcbf6b73d95070e17b7455c94830.tar gsoc2013-evolution-799d7f54fdd6bcbf6b73d95070e17b7455c94830.tar.gz gsoc2013-evolution-799d7f54fdd6bcbf6b73d95070e17b7455c94830.tar.bz2 gsoc2013-evolution-799d7f54fdd6bcbf6b73d95070e17b7455c94830.tar.lz gsoc2013-evolution-799d7f54fdd6bcbf6b73d95070e17b7455c94830.tar.xz gsoc2013-evolution-799d7f54fdd6bcbf6b73d95070e17b7455c94830.tar.zst gsoc2013-evolution-799d7f54fdd6bcbf6b73d95070e17b7455c94830.zip |
Various building fixes. At least, now it builds for me.
svn path=/trunk/; revision=2007
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/configure.in b/configure.in index 77d10672eb..9fa9ab94ab 100644 --- a/configure.in +++ b/configure.in @@ -179,6 +179,28 @@ BONOBO_HTML_GNOME_CFLAGS="`gnome-config --cflags bonobo libglade gdk_pixbuf gtkh AC_SUBST(BONOBO_HTML_GNOME_LIBS) AC_SUBST(BONOBO_HTML_GNOME_CFLAGS) +dnl ****************************** +dnl GtkHTML checking +dnl ****************************** + +AC_MSG_CHECKING(for GtkHTML) +if gnome-config --libs gtkhtml > /dev/null 2>&1; then + gtkhtml_ok=true +else + gtkhtml_ok=false +fi + +if $gtkhtml_ok; then + AC_MSG_RESULT(found) +else + AC_MSG_ERROR(GtkHTML is required to compile Evolution) +fi + +GTKHTML_CFLAGS="`gnome-config --cflags gtkhtml`" +GTKHTML_LIBS="`gnome-config --libs gtkhtml`" + +AC_SUBST(GTKHTML_CFLAGS) +AC_SUBST(GTKHTML_LIBS) dnl ****************************** dnl Gnome-VFS checking @@ -258,4 +280,5 @@ calendar/doc/C/Makefile calendar/idl/Makefile calendar/cal-client/Makefile calendar/pcs/Makefile +filter/Makefile ]) |