From: Fabrice Fontaine Date: Tue, 6 Aug 2019 07:36:13 +0000 (+0200) Subject: configure.ac: fix activation of snmp_agent X-Git-Url: https://git.octo.it/?p=collectd.git;a=commitdiff_plain;h=bfb85f1840f3672518979dd4b52f012fc08b4f88 configure.ac: fix activation of snmp_agent If netsnmp library has been built without mib loading support (through --disable-mib-loading), build of snmp_agent fails on: src/snmp_agent.c: In function 'snmp_agent_get_asn_type': src/snmp_agent.c:160:47: error: dereferencing pointer to incomplete type 'struct tree' return (node != NULL) ? mib_to_asn_type(node->type) : 0; struct tree is defined in net-snmp/libray/parse.h which is included by net-snmp/mib_api.h only if NETSNMP_DISABLE_MIB_LOADING is not set. To fix this error, check for get_tree function in netsnmp library in addition to init_agent in netsnmpagent library Fixes: - http://autobuild.buildroot.org/results/6d7ac28f154f83208f949c62d28411855f1817f8 Signed-off-by: Fabrice Fontaine --- diff --git a/configure.ac b/configure.ac index add1556b..5ac33dc7 100644 --- a/configure.ac +++ b/configure.ac @@ -3950,7 +3950,13 @@ if test "x$with_libnetsnmpagent" = "xyes"; then ) AC_CHECK_LIB([netsnmpagent], [init_agent], - [with_libnetsnmpagent="yes"], + [ + # libnetsnmp can be built without without mib loading support + AC_CHECK_LIB([netsnmp], [get_tree], + [with_libnetsnmpagent="yes"], + [with_libnetsnmpagent="no (libnetsnmp doesn't support mib loading)"] + ) + ], [with_libnetsnmpagent="no (libnetsnmpagent not found)"], [$libnetsnmphelpers] )