search for: has_prebuilt_doxygen

Displaying 3 results from an estimated 3 matches for "has_prebuilt_doxygen".

2025 Feb 14
2
1.5.0: API documentation is not installed
...utotools, the API documentation that is included in the release tarball is not installed. This is due to this check in configure.ac: if test ! -n "$DOXYGEN" && test -f "$srcdir/doc/FLAC.tag" && test -f "$srcdir/doc/api/modules.html" ; then HAS_PREBUILT_DOXYGEN=yes fi AM_CONDITIONAL(FLaC__HAS_PREBUILT_DOXYGEN, test "x$HAS_PREBUILT_DOXYGEN" = xyes) There is no file doc/api/modules.html. Has something changed with doxygen? -- Christian "naddy" Weisgerber naddy at mips.inka.de
2025 Mar 16
1
[RFC][PATCH] API documentation: replace modules.html by topics.html
...! -n "$DOXYGEN" && test -f "$srcdir/doc/FLAC.tag" && test -f "$srcdir/doc/api/modules.html" ; then +if test ! -n "$DOXYGEN" && test -f "$srcdir/doc/FLAC.tag" && test -f "$srcdir/doc/api/index.html" ; then HAS_PREBUILT_DOXYGEN=yes fi AM_CONDITIONAL(FLaC__HAS_PREBUILT_DOXYGEN, test "x$HAS_PREBUILT_DOXYGEN" = xyes) diff --git a/include/FLAC/all.h b/include/FLAC/all.h index f29aa010..0be26fd7 100644 --- a/include/FLAC/all.h +++ b/include/FLAC/all.h @@ -102,7 +102,7 @@ * \section getting_started Getting Started...
2025 Mar 16
1
[RFC][PATCH] API documentation: replace modules.html by topics.html
...YGEN" && test -f "$srcdir/doc/FLAC.tag" && test -f "$srcdir/doc/api/modules.html" ; then > +if test ! -n "$DOXYGEN" && test -f "$srcdir/doc/FLAC.tag" && test -f "$srcdir/doc/api/index.html" ; then > HAS_PREBUILT_DOXYGEN=yes > fi > AM_CONDITIONAL(FLaC__HAS_PREBUILT_DOXYGEN, test "x$HAS_PREBUILT_DOXYGEN" = xyes) > diff --git a/include/FLAC/all.h b/include/FLAC/all.h > index f29aa010..0be26fd7 100644 > --- a/include/FLAC/all.h > +++ b/include/FLAC/all.h > @@ -102,7 +102,7 @@ > *...