aboutsummaryrefslogtreecommitdiff
path: root/meson.build
diff options
context:
space:
mode:
authorYaakov Selkowitz <yselkowi@redhat.com>2024-11-04 22:55:18 -0500
committerYaakov Selkowitz <yselkowi@redhat.com>2024-11-05 08:54:03 -0500
commit37b416c152ed833dcc55c84068c77eb713748d24 (patch)
tree63ffff83ccdc19be0bf2b44e2149070324be6f95 /meson.build
parentdf46458bee93c56c5d14f9550fbc0d37e1c2d601 (diff)
downloadpam-37b416c152ed833dcc55c84068c77eb713748d24.tar.gz
pam-37b416c152ed833dcc55c84068c77eb713748d24.tar.bz2
pam-37b416c152ed833dcc55c84068c77eb713748d24.zip
doc: make PDF documentation optional
While building any documentation requires xsltproc, only the PDF documentation requires fop, which is dependency-heavy, and not always available (e.g. it is not included in RHEL). This allows the HTML documentation to be built while skipping the PDFs.
Diffstat (limited to 'meson.build')
-rw-r--r--meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/meson.build b/meson.build
index e3d8cc2a..664bd126 100644
--- a/meson.build
+++ b/meson.build
@@ -502,7 +502,7 @@ if enable_docs
endif
prog_fop = find_program(
'fop',
- required: feature_docs,
+ required: false,
disabler: true,
)