Displaying 1 result from an estimated 1 matches for "ac_cv_func_init_snmp".
2011 Jan 28
2
SNMP And SuSE
...rly installed, the compile fails and configure
assumes that the library isn't present. Incidentally, the installed
library does include the "init_snmp" entry point.
The configure code in question reads like this:
ac_fn_c_check_func "$LINENO" "init_snmp" "ac_cv_func_init_snmp"
if test "x$ac_cv_func_init_snmp" = x""yes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_INIT_SNMP 1
_ACEOF
I was able to bypass the problem by changing it to this:
if test "x$ac_cv_func_init_snmp" != x""yes; then :...