> Well, the headers are there, but I keep getting: > > checking whether to use UCD SNMP/NET-SNMP library if available... yes > checking for ucd-snmp/snmp.h... (cached) no > configure: error: Header file ucd-snmp/snmp.h not found. > > for all of the following: > > ./configure --with-ucdsnmp > ./configure --with-ucdsnmp=/usr/local/include/ucd-snmp > ./configure --with-ucdsnmp=/usr/local/include > ( next is after running 'ln -s /usr/local/include/ucd-snmp > /usr/include/ucd-snmp' ) > ./configure --with-ucdsnmp=/usr/include/ucd-snmp
Try the following: CPPFLAGS="-DUCD_OMPATIBLE" ./configure --with-ucdsnmp It worked for me. The comaptible net-snmp-headers contain an #ifdef clause that leads to an error message if UCD_COMPATIBLE is undefined. Peter.
