summaryrefslogtreecommitdiff
path: root/doc
AgeCommit message (Collapse)AuthorFilesLines
2019-05-06meson: Remove unnecessary 'install' parameter from configure_file()Aaron Plattner1-2/+1
The 'install' parameter to the configure_file() function explicitly controls whether the file is installed, but omitting it just infers whether to install the file based on the presence or absence of the 'install_dir' parameter. This parameter requires Meson 0.50 or newer: WARNING: Project specifies a minimum meson_version '>=0.41' but uses features which were added in newer versions: * 0.50.0: {'install arg in configure_file'} We don't need to specify 'install' for this particular file because 'install_dir' is not set, so just remove it to drop the Meson requirement back down to 0.41. Signed-off-by: Aaron Plattner <aplattner@nvidia.com>
2019-03-24Disable HTML timestampsLuca Boccassi1-0/+4
Build-time timestamps in the Doxygen docs make the build unreproducible. Signed-off-by: Luca Boccassi <bluca@debian.org>
2019-02-28Switch the build system to MesonAaron Plattner3-33/+27
Modify the dlclose test to pick up libvdpau.so from the right place Rename doc/Doxyfile to doc/Doxyfile.in and use Meson's configuration file support to generate the Doxyfile. Signed-off-by: Aaron Plattner <aplattner@nvidia.com>
2009-10-23Fix distcheck.Aaron Plattner1-2/+8
* Uninstall the docs if they were installed. * Remember to distribute Doxyfile and vdpau_data_flow.png in the tarball. Signed-off-by: Aaron Plattner <aplattner@nvidia.com> Reviewed-by: Stephen Warren <swarren@nvidia.com>
2009-10-03Build documentation.Aaron Plattner3-0/+1317
Detect when doxygen, dot, and pdflatex are installed. When they are, enable documentation. Add --enable-documentation and --disable-documentation to override the autodetection. Install the docs to the configured docdir (usually $prefix/share/doc/libvdpau).