From ecfb79bd7180da4a053338532fe633d7d70d6ead Mon Sep 17 00:00:00 2001 From: =?utf8?q?=C3=9Cst=C3=BCn=20Ergeno=C4=9Flu?= Date: Sat, 17 Mar 2012 19:09:39 +0200 Subject: [PATCH] configure: Add option to disable building documentation. MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Üstün Ergenoğlu --- configure.ac | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index f5bf788..094da67 100644 --- a/configure.ac +++ b/configure.ac @@ -33,6 +33,12 @@ AC_ARG_ENABLE([scanner], [], [enable_scanner=yes]) +AC_ARG_ENABLE([documentation], + [AC_HELP_STRING([--disable-documentation], + [Disable building the documentation])], + [], + [enable_documentation=yes]) + AM_CONDITIONAL(ENABLE_SCANNER, test "x$enable_scanner" = xyes) EXPAT_LIB="" @@ -51,7 +57,9 @@ fi AC_PATH_PROG(XSLTPROC, xsltproc) AM_CONDITIONAL([HAVE_XSLTPROC], [test "x$XSLTPROC" != "x"]) -AC_PATH_PROG(PUBLICAN, publican) +if test "x$enable_documentation" = "xyes"; then + AC_PATH_PROG(PUBLICAN, publican) +fi AM_CONDITIONAL([HAVE_PUBLICAN], [test "x$PUBLICAN" != "x"]) AC_CONFIG_FILES([Makefile -- 2.7.4