diff options
author | paul <paul> | 2003-03-02 22:19:26 +0100 |
---|---|---|
committer | paul <paul> | 2003-03-02 22:19:26 +0100 |
commit | 569c0f0188168b79044cc8fcba4639585a3be661 (patch) | |
tree | 873bf6be6ca17ba3327ab76cf3cb4739792228b4 /configure.ac | |
parent | Add the interface node 'description' command. (diff) | |
download | frr-569c0f0188168b79044cc8fcba4639585a3be661.tar.xz frr-569c0f0188168b79044cc8fcba4639585a3be661.zip |
Updated vtysh_cmd's. Previously, this was only updated in rpm builds.
Diffstat (limited to 'configure.ac')
-rwxr-xr-x | configure.ac | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 2e6055e28..3eab57282 100755 --- a/configure.ac +++ b/configure.ac @@ -609,11 +609,17 @@ dnl AC_CHECK_LIB(snmp, asn_parse_int, HAVE_SNMP=yes) LIBS="${old_libs}" fi if test "${HAVE_SNMP}" = "yes"; then - for ac_snmp in /usr/include/ucd-snmp/asn1.h /usr/local/include/ucd-snmp/asn1.h /dev/null + for ac_snmp in /usr/include/net-snmp/library/asn1.h /usr/include/ucd-snmp/asn1.h /usr/local/include/ucd-snmp/asn1.h /dev/null do test -f "${ac_snmp}" && break done case ${ac_snmp} in + /usr/include/net-snmp/*) + AC_DEFINE(HAVE_SNMP,,SNMP) + AC_DEFINE(UCD_COMPATIBLE,,SNMP) + CFLAGS="${CFLAGS} -I/usr/include/ucd-snmp" + LIBS="${LIBS} -lsnmp" + ;; /usr/include/ucd-snmp/*) AC_DEFINE(HAVE_SNMP,,SNMP) CFLAGS="${CFLAGS} -I/usr/include/ucd-snmp" |