1
yum install libevent-dev

Now I have installed libevent,but its manuals are not installed:

[root@xx test]# man event_base_loop
Cannot open the message catalog "man" for locale "zh_CN.UTF-8"
(NLSPATH="<none>")

No manual entry for event_base_loop

How to make yum also install manuals?

yum
  • 539
  • 5
  • 9
  • 16

2 Answers2

1

For some reason libevent-devel has the function-level man pages under its private documentation directory instead of the public man directory. Log a bug.

Ignacio Vazquez-Abrams
  • 45,019
  • 5
  • 78
  • 84
0

It probably is installed--libevent just doesn't install separate documentation for each individual function. To see the documentation for libevent, use:

man 3 event
Andrew M.
  • 10,982
  • 2
  • 34
  • 29