mirror of
https://github.com/FRRouting/frr.git
synced 2025-04-30 21:47:15 +02:00
[build system] cleanup --enable-snmp by removing ucd-snmp cruft
2006-01-31 Paul Jakma <paul.jakma@sun.com> * configure.ac: Cleanup the hideous {net,ucd}-snmp section by removing ucd-snmp. Hence fixing detection where net-snmp is installed in /usr/local (Boris Kovalenko reported the problem).
This commit is contained in:
parent
7a38333957
commit
b1fc9acbbe
|
@ -1,3 +1,10 @@
|
|||
2006-01-31 Paul Jakma <paul.jakma@sun.com>
|
||||
|
||||
* configure.ac: Cleanup the hideous {net,ucd}-snmp section
|
||||
by removing ucd-snmp. Hence fixing detection where
|
||||
net-snmp is installed in /usr/local (Boris Kovalenko reported
|
||||
the problem).
|
||||
|
||||
2006-01-19 Paul Jakma <paul.jakma@sun.com>
|
||||
|
||||
* configure.ac: Bump to 0.99.3
|
||||
|
|
101
configure.ac
101
configure.ac
|
@ -5,7 +5,7 @@
|
|||
## Copyright (c) 1996, 97, 98, 99, 2000 Kunihiro Ishiguro <kunihiro@zebra.org>
|
||||
## Portions Copyright (c) 2003 Paul Jakma <paul@dishone.st>
|
||||
##
|
||||
## $Id: configure.ac,v 1.117 2006/01/19 20:26:17 paul Exp $
|
||||
## $Id: configure.ac,v 1.118 2006/01/31 10:09:27 paul Exp $
|
||||
AC_PREREQ(2.53)
|
||||
|
||||
AC_INIT(Quagga, 0.99.3, [http://bugzilla.quagga.net])
|
||||
|
@ -992,99 +992,34 @@ AC_CHECK_LIB(c, regexec,
|
|||
AC_SUBST(LIB_REGEX)
|
||||
|
||||
dnl ------------------
|
||||
dnl check SNMP library
|
||||
dnl check Net-SNMP library
|
||||
dnl ------------------
|
||||
if test "${enable_snmp}" = "yes"; then
|
||||
dnl AC_CHECK_LIB(snmp, asn_parse_int, HAVE_SNMP=yes)
|
||||
if test "${HAVE_SNMP}" = ""; then
|
||||
old_libs="${LIBS}"
|
||||
LIBS="-L/usr/lib"
|
||||
unset ac_cv_lib_snmp_asn_parse_int
|
||||
AC_CHECK_LIB(crypto, main, NEED_CRYPTO=yes, )
|
||||
if test "${NEED_CRYPTO}" = ""; then
|
||||
AC_CHECK_LIB(netsnmp, asn_parse_int, [HAVE_NETSNMP=yes; HAVE_SNMP=yes ])
|
||||
else
|
||||
AC_CHECK_LIB(netsnmp, asn_parse_int, [HAVE_NETSNMP=yes; HAVE_SNMP=yes; NEED_CRYPTO=yes;LIBS="$LIBS -lcrypto" ],,"-lcrypto")
|
||||
fi
|
||||
LIBS="${old_libs}"
|
||||
fi
|
||||
if test "${HAVE_SNMP}" = ""; then
|
||||
old_libs="${LIBS}"
|
||||
LIBS="-L/usr/lib"
|
||||
unset ac_cv_lib_snmp_asn_parse_int
|
||||
AC_CHECK_LIB(snmp, asn_parse_int, HAVE_SNMP=yes, )
|
||||
if test "${HAVE_SNMP}" = ""; then
|
||||
unset ac_cv_lib_snmp_asn_parse_int
|
||||
AC_CHECK_LIB(crypto, main, NEED_CRYPTO=yes, )
|
||||
if test "${NEED_CRYPTO}" = "yes"; then
|
||||
AC_CHECK_LIB(snmp, asn_parse_int, [HAVE_SNMP=yes; NEED_CRYPTO=yes; LIBS="$LIBS -lcrypto" ],,"-lcrypto")
|
||||
fi
|
||||
fi
|
||||
LIBS="${old_libs}"
|
||||
fi
|
||||
LIBS="${LIBS} -lcrypto"
|
||||
AC_CHECK_LIB(netsnmp, asn_parse_int,
|
||||
[AC_DEFINE(HAVE_NETSNMP,,Net SNMP)
|
||||
AC_DEFINE(HAVE_SNMP,,SNMP)
|
||||
LIBS="${LIBS} -lnetsnmp"],
|
||||
[AC_MSG_ERROR([--enable-snmp given, but cannot find support for SNMP])])
|
||||
|
||||
if test "${HAVE_SNMP}" = ""; then
|
||||
old_libs="${LIBS}"
|
||||
LIBS="-L/usr/local/lib"
|
||||
unset ac_cv_lib_snmp_asn_parse_int
|
||||
AC_CHECK_LIB(snmp, asn_parse_int, HAVE_SNMP=yes)
|
||||
if test "${HAVE_SNMP}" = ""; then
|
||||
unset ac_cv_lib_snmp_asn_parse_int
|
||||
AC_CHECK_LIB(crypto, main, NEED_CRYPTO=yes, )
|
||||
if test "${NEED_CRYPTO}" = "yes"; then
|
||||
AC_CHECK_LIB(snmp, asn_parse_int, [HAVE_SNMP=yes; NEED_CRYPTO=yes; LIBS="$LIBS -lcrypto" ],,"-lcrypto")
|
||||
fi
|
||||
fi
|
||||
LIBS="${old_libs}"
|
||||
fi
|
||||
|
||||
if test "${HAVE_SNMP}" = "yes"; then
|
||||
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
|
||||
for ac_snmp in /usr/include \
|
||||
/usr/local/include \
|
||||
/dev/null; do
|
||||
test -f "${ac_snmp}/net-snmp/library/asn1.h" && break
|
||||
done
|
||||
|
||||
case ${ac_snmp} in
|
||||
/usr/include/net-snmp/*)
|
||||
AC_DEFINE(HAVE_SNMP,,SNMP)
|
||||
AC_DEFINE(HAVE_NETSNMP,,SNMP)
|
||||
AC_DEFINE(UCD_COMPATIBLE,,SNMP)
|
||||
SNMP_INCLUDES="${SNMP_INCLUDES} -I/usr/include/net-snmp -I/usr/include/net-snmp/library"
|
||||
if test "${HAVE_NETSNMP}" = "yes"; then
|
||||
LIBS="${LIBS} -lnetsnmp"
|
||||
else
|
||||
LIBS="${LIBS} -lsnmp"
|
||||
fi
|
||||
/dev/null)
|
||||
AC_MSG_ERROR([--enable-snmp given, but can not find header])
|
||||
;;
|
||||
/usr/include/ucd-snmp/*)
|
||||
AC_DEFINE(HAVE_SNMP,,SNMP)
|
||||
SNMP_INCLUDES="${SNMP_INCLUDES} -I/usr/include/ucd-snmp"
|
||||
LIBS="${LIBS} -lsnmp"
|
||||
;;
|
||||
/usr/local/include/ucd-snmp/*)
|
||||
AC_DEFINE(HAVE_SNMP,,SNMP)
|
||||
SNMP_INCLUDES="${SNMP_INCLUDES} -I/usr/local/include/ucd-snmp"
|
||||
LIBS="${LIBS} -L/usr/local/lib -lsnmp"
|
||||
;;
|
||||
/usr/local/include/net-snmp/*)
|
||||
AC_DEFINE(HAVE_SNMP,,SNMP)
|
||||
AC_DEFINE(HAVE_NET_SNMP,,SNMP)
|
||||
AC_DEFINE(UCD_COMPATIBLE,,SNMP)
|
||||
SNMP_INCLUDES="${SNMP_INCLUDES} -I/usr/local/include/net-snmp"
|
||||
LIBS="${LIBS} -L/usr/local/lib -lnetsnmp"
|
||||
*)
|
||||
SNMP_INCLUDES="-I${ac_snmp}/net-snmp"
|
||||
SNMP_INCLUDES="${SNMP_INCLUDES} -I${ac_snmp}/net-snmp/library"
|
||||
;;
|
||||
esac
|
||||
if test "${NEED_CRYPTO}" = "yes"; then
|
||||
LIBS="${LIBS} -lcrypto"
|
||||
fi
|
||||
fi
|
||||
fi
|
||||
|
||||
if test "${enable_snmp}" = "yes" -a "${HAVE_SNMP}" != "yes"; then
|
||||
AC_MSG_ERROR([--enable-snmp given, but cannot find support for SNMP])
|
||||
fi
|
||||
|
||||
AC_SUBST(SNMP_INCLUDES)
|
||||
fi
|
||||
|
||||
dnl ----------------------------
|
||||
dnl check sa_len of sockaddr
|
||||
|
|
Loading…
Reference in a new issue