Description: Fix pdflatex invocation
In /usr/share/texlive/texmf-dist/web2c/texmf.cnf, openout_any is set to p
(paranoid), so that LaTeX does not allow to write out of the current
directory and its sub-directories.
.
Override that in the pdflatex invocation to avoid error:
Not writing to ../html/examples/group/latex//group__group2.aux
Forwarded: https://github.com/doxygen/doxygen/issues/8226
Author: Paolo Greppi <paolo.greppi@libpf.com>
Description: Avoid use of compass
Compass is obsoleted by Sass and its reimplementation in C, sassc.
.
This patch avoids use of sass mixins border-radius and box-shadow
shipped in libraries part of Compass, and adapts build rules to use
sassc instead of Compass and YUI Compressor.
.
Sass mixins border-radius and box-shadow added vendored selectors now
obsolete: Would help only browsers released in 2011 or earlier, used by
0.02% of public web browsing today according to <https://caniuse.com/>.
.
If the reference Ruby implementation of Sass is preferred over sassc,
simply replace "sassc" with "scss" in the Makefile rule.
Author: Jonas Smedegaard <dr@jones.dk>