diff options
author | Thomas White <taw@bitwiz.org.uk> | 2011-03-27 11:06:10 +0200 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2012-02-22 15:27:22 +0100 |
commit | 21877e3993ba5b42bfc648145e94789a74f26c6f (patch) | |
tree | 61cb9af3a4d3f595507008fc6c737ae863cc2453 | |
parent | d123fe36b591a85e9e491316e5d4df74e2014c92 (diff) |
Don't build docs by default
-rwxr-xr-x | configure | 4 | ||||
-rw-r--r-- | m4/gtk-doc.m4 | 4 |
2 files changed, 4 insertions, 4 deletions
@@ -1489,7 +1489,7 @@ Optional Features: --disable-tiff Disable the use of libTIFF --disable-cairo Disable the use of Cairo --disable-gdk-pixbuf Disable the use of gtk-pixbuf - --enable-gtk-doc use gtk-doc to build documentation [[default=yes]] + --enable-gtk-doc use gtk-doc to build documentation [[default=no]] --enable-gtk-doc-html build documentation in html format [[default=yes]] --enable-gtk-doc-pdf build documentation in pdf format [[default=no]] @@ -7723,7 +7723,7 @@ fi if test "${enable_gtk_doc+set}" = set; then : enableval=$enable_gtk_doc; else - enable_gtk_doc=yes + enable_gtk_doc=no fi diff --git a/m4/gtk-doc.m4 b/m4/gtk-doc.m4 index 9033c7d2..8b55c2c0 100644 --- a/m4/gtk-doc.m4 +++ b/m4/gtk-doc.m4 @@ -25,8 +25,8 @@ AC_DEFUN([GTK_DOC_CHECK], dnl enable/disable documentation building AC_ARG_ENABLE([gtk-doc], AS_HELP_STRING([--enable-gtk-doc], - [use gtk-doc to build documentation [[default=yes]]]),, - [enable_gtk_doc=yes]) + [use gtk-doc to build documentation [[default=no]]]),, + [enable_gtk_doc=no]) if test x$enable_gtk_doc = xyes; then ifelse([$1],[], |