diff options
author | Owen Taylor <otaylor@redhat.com> | 2000-07-06 21:09:25 +0000 |
---|---|---|
committer | Owen Taylor <otaylor@src.gnome.org> | 2000-07-06 21:09:25 +0000 |
commit | 359307231a97ebb8b6acb76ff2b3ccc791c0d8ad (patch) | |
tree | 1a51de36de2efcef7ed4f1bd0b205a9e2a84fd50 /configure.in | |
parent | d375c92f6c8ff56757f742ef2d5930f7fc8d1508 (diff) | |
download | gdk-pixbuf-359307231a97ebb8b6acb76ff2b3ccc791c0d8ad.tar.gz |
Add check for db2html
Thu Jul 6 16:12:14 2000 Owen Taylor <otaylor@redhat.com>
* configure.in: Add check for db2html
Thu Jul 6 14:53:05 2000 Owen Taylor <otaylor@redhat.com>
* gtk/gtktypeutils.c (gtk_type_init): Add a temporary
hack to set glib_debug_objects based on gtk_debug_flags.
Thu Jul 6 14:12:13 2000 Owen Taylor <otaylor@redhat.com>
* INSTALL.in: Update the Prerequisites section.
* Makefile.am demos/Makefile.am docs/Makefile.am
docs/tutorial/Makefile.am gdk/x11/Makefile.am
gdk/linux-fb/Makefile.am: Dist fixes
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/configure.in b/configure.in index 2d60e79be..fa7eeca45 100644 --- a/configure.in +++ b/configure.in @@ -860,13 +860,16 @@ AM_CONDITIONAL(USE_MMX, test x$use_mmx_asm = xyes) ################################################## -# Checks for gtk-doc +# Checks for gtk-doc and docbook-tools ################################################## AC_CHECK_PROG(GTKDOC, gtkdoc-mkdb, true, false) AM_CONDITIONAL(HAVE_GTK_DOC, $GTKDOC) AC_SUBST(HAVE_GTK_DOC) +AC_CHECK_PROG(DB2HTML, db2html, true, false) +AM_CONDITIONAL(HAVE_DOCBOOK, $DB2HTML) + dnl Let people disable the gtk-doc stuff. AC_ARG_ENABLE(gtk-doc, [ --enable-gtk-doc Use gtk-doc to build documentation [default=auto]], enable_gtk_doc="$enableval", enable_gtk_doc=auto) |