0

I have net-snmp 5.5 installed. But the application I'm trying to install depend on net-snmp-agent-libs. I can find it anywhere. The application instruction says if I compile net-snmp from source I shouldn't have a dependency problem.

I tried to compile net-snmp from source but it didn't solve this problem.

Where can I find net-snmp-agent-libs rpm that is of the same version as my net-snmp (5.5)?

Allen Zhang
  • 101
  • 2

1 Answers1

0

Problem solved.
In case someone wants to know: There is a bug in the spec file I was using.
As MichaelHampton pointed out in the comments, net-snmp-agent-libs is a fedora package. There is no such rpm in centos repository.

The bug in the spec file is this :

%if 0%{?centos}
Requires:      net-snmp-agent-libs
%else
Requires:      net-snmp-libs

where centos should be fedora .

Allen Zhang
  • 101
  • 2