]> granicus.if.org Git - libevent/commit
Generate only real man pages with doxygen (MAN_LINKS=NO)
authorAzat Khuzhin <azat@libevent.org>
Wed, 16 Sep 2020 05:10:11 +0000 (08:10 +0300)
committerAzat Khuzhin <azat@libevent.org>
Wed, 16 Sep 2020 05:27:10 +0000 (08:27 +0300)
commit9b270c5e02e47d372ad53e773f98668890b33e9f
treeab5e01fb26f769b0874d58a441c768ae04ab2e5f
parent31a5cfd3b1cd0ca3f7a2871ecd21a8a5b8f7677c
Generate only real man pages with doxygen (MAN_LINKS=NO)

WIth MAN_LINKS=YES doxygen will generate ton's of man pages for each
field, function and so on, but it will not contain anything useful
except for link to another man page (header).

So to avoid man pages clashing, disable MAN_LINKS, and this will
generate man pages only for explicitly documented parts.

But even after this we have pretty non-unique man pages names:

    $ find install/ -name '*.3'
    install/share/man/man3/util.h.3
    ...

Looks like we should add prefix for each of them...
But let's see if there will be a problem.

Fixes: #1097
Doxyfile