summaryrefslogtreecommitdiff
blob: 6a6c01e26f6466aadde3e3c0686f0fc327a977c5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
--- configure.in.old	2006-03-31 18:31:26.000000000 +0200
+++ configure.in	2006-03-31 18:44:47.000000000 +0200
@@ -407,7 +407,11 @@
 # Let people not build/install docs if they don't have docbook
 #
 
-AC_CHECK_PROG(HASDOCBOOK, docbook2html, yes, no)
+AC_ARG_ENABLE(docbook,           [  --disable-docbook                Don't build documentation],,)
+
+if test x$enable_docbook != xno; then
+	AC_CHECK_PROG(HASDOCBOOK, docbook2html, yes, no)
+fi
 
 AM_CONDITIONAL(USEDOCBOOK, test "x$HASDOCBOOK" = xyes)