diff options
author | Owen Taylor <otaylor@redhat.com> | 2002-03-07 19:45:48 +0000 |
---|---|---|
committer | Owen Taylor <otaylor@src.gnome.org> | 2002-03-07 19:45:48 +0000 |
commit | 15496b5b6bb48c123ff8ae849abca6e7032a2f10 (patch) | |
tree | 13ff2519775a5e596927711b5e12aa6de3e0e290 /configure.in | |
parent | 3accc97b3fef45c4c678340f863833d65970e644 (diff) | |
download | pango-15496b5b6bb48c123ff8ae849abca6e7032a2f10.tar.gz |
As we do in other modules, default to --disable-gtk-doc, and run the check
Thu Mar 7 14:42:50 2002 Owen Taylor <otaylor@redhat.com>
* configure.in: As we do in other modules, default to
--disable-gtk-doc, and run the check we used to do
for the default when the --enable-gtk-doc is specified.
(Alain Rouge)
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.in b/configure.in index 27e1caad..caea1aa6 100644 --- a/configure.in +++ b/configure.in @@ -516,9 +516,9 @@ 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=no]], enable_gtk_doc="$enableval", enable_gtk_doc=auto) +AC_ARG_ENABLE(gtk-doc, [ --enable-gtk-doc use gtk-doc to build documentation [default=no]], enable_gtk_doc="$enableval", enable_gtk_doc=no) -if test x$enable_gtk_doc = xauto ; then +if test x$enable_gtk_doc = xyes ; then if test x$GTKDOC = xtrue ; then enable_gtk_doc=yes else |