summaryrefslogtreecommitdiff
path: root/media-libs/fontconfig/files/fontconfig-2.10.2-docbook.patch
blob: 94bea6327148e422edf31aa44c8c2822fd66bf49 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
https://bugs.gentoo.org/310157
--- fontconfig-2.10.2-orig/configure.ac
+++ fontconfig-2.10.2/configure.ac
@@ -570,7 +570,11 @@ AC_SUBST(XMLDIR)
 # 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)