In configure please change SNMP_LDFLAGS="" to
SNMP_LDFLAGS="-lcrypto".
Your routine filters all libs that net-snmp-config -libs returns, it accepts only -L Parameters (
).
Maybe the better fix would be to add
Without this patch it will not compile with snmp support.
SNMP_LDFLAGS="-lcrypto".
Your routine filters all libs that net-snmp-config -libs returns, it accepts only -L Parameters (
Code:
case $i in -L*) ...
Maybe the better fix would be to add
Code:
case $i in -l*) ...
Comment