aboutsummaryrefslogtreecommitdiff
path: root/doc/guide-meson.build
Commit message (Collapse)AuthorAgeFilesLines
* doc: make PDF documentation optionalYaakov Selkowitz2024-11-051-28/+30
| | | | | | | 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.
* meson: build Linux-PAM using mesonDmitry V. Levin2024-09-101-0/+90
On my non-representative hardware, the full build using autotools (./autogen.sh && CFLAGS=-O2 ./configure && make -j`nproc` && make -j`nproc` install) takes about 45 seconds. On the same hardware, the full build using meson (meson setup -Doptimization=2 dir && meson compile -C dir && meson install -C dir) takes just about 7.5 seconds.