From 06a5d03ae1abd70fd0f5c6eb37ce26dee1490f7d Mon Sep 17 00:00:00 2001 From: Colin Walters Date: Sun, 15 Jan 2012 16:49:07 -0500 Subject: [PATCH] build: Add --disable-documentation Documentation is the source of many cyclical build loops. Allow operating system builders to manually cut these cycles initially by disabling documentation for a first pass. --- Makefile.am | 4 +++- configure.ac | 4 ++++ 2 files changed, 7 insertions(+), 1 deletions(-) diff --git a/Makefile.am b/Makefile.am index f522f40..2d0443d 100644 --- a/Makefile.am +++ b/Makefile.am @@ -4,12 +4,14 @@ SUBDIRS = \ data \ common \ daemon \ - docs \ gui \ utils \ po \ tests \ $(NULL) +if ENABLE_DOCUMENTATION +SUBDIRS += docs +endif # add these when help gets added back # omf-install diff --git a/configure.ac b/configure.ac index 3c94f94..f3934a5 100644 --- a/configure.ac +++ b/configure.ac @@ -44,6 +44,10 @@ AC_CONFIG_MACRO_DIR([m4]) IT_PROG_INTLTOOL([0.40.0]) GNOME_DOC_INIT +AC_ARG_ENABLE([documentation], + AS_HELP_STRING([--enable-documentation], [enable man pages and HTML documentation]), + [], [enable_documentation=yes]) +AM_CONDITIONAL(ENABLE_DOCUMENTATION, test x$enable_documentation = xyes) GETTEXT_PACKAGE=gdm AC_SUBST(GETTEXT_PACKAGE) -- 1.7.6.5