From: Alexei V. <al...@go...> - 2002-02-22 19:46:17
|
Andreas, It seems that snmp depends on library crypto. That is why AC_CHECK_LIB(snmp, main, "-lcrypto") does not work, but AC_CHECK_LIB(snmp, main, LIBS="-lsnmp $LIBS") works perfectly. Thanks for suggestion ! I'll make changes in configure.in. Good luck ! Alexei On Fri, Feb 22, 2002 at 05:27:04PM +0100, Andreas Woelling wrote: > I had a small problem with the compilation of beta 2 (linux 2.4 with > net-snmp): the -lsnmp in the Makefile (for zabbix-agentd) was missing. > > This is caused by the configure script, which seems to be broken. I think, > the line > AC_CHECK_LIB(snmp, main, "-lcrypto") > in configure.in shold rather look like > AC_CHECK_LIB(snmp, main, LIBS="-lsnmp $LIBS") > but unfortunately I don't know autoconf that well (at least it works;-). > > Andreas > > -- > Andreas Woelling > System Administration > Biomax Informatics > > _______________________________________________ > Zabbix-users mailing list > Zab...@li... > https://lists.sourceforge.net/lists/listinfo/zabbix-users |