mirror of
https://git.freebsd.org/ports.git
synced 2025-07-16 16:59:17 -04:00
- Fix build on 4.11 by sem@ (files/patch-lib-buffer.c files/patch-ospfd-ospfd.h -------------------------------- Some known problems outstanding: - bgpd: prefix counts can get a bit screwy after clears/resets this is mostly cosmetic *unless* you use max-prefix counts. - bgpd: There is a memory leak if 'set community' is used in route-maps. This is present in 0.98 too. See bugzilla #89. - ospfd: 'default-originate always' loses the 'always' qualifier. Some regressions fixed in 0.99.3: - bgpd: workqueues were too conservative and could backlog under load (e.g. continual session up then reset), eventually leading to OOM. - ospfd: crash on startup (and only startup) if redistribute was enabled fixed. - bgpd: SEGV in bgp_aspath.c fixed. - bgpd: memory leak in bgp_aspath.c fixed - ospfd: oversize LSA support was not functional, fixed. - ospfd: leak of connected struct fixed - ospfd: NSM problems fixed, see bug #234 - vtysh: integrated config file reading should work again. - zserv: flags above 32bits should make it across to daemons now (affecting Solaris and IFF_NOXMIT and IFF_VIRTUAL) - ripd: MD5 auth verification fixed. The full changelog is available at: http://www.quagga.net/download/quagga-0.99.3.changelog.txt PR: ports/92524 Submitted by: Boris Kovalenko <boris@tagnet.ru> (maintainer)
29 lines
941 B
Text
29 lines
941 B
Text
--- configure.orig Fri Jan 20 07:24:48 2006
|
|
+++ configure Mon Jan 30 09:36:38 2006
|
|
@@ -15056,7 +15056,7 @@
|
|
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
|
|
+ for ac_snmp in /usr/include/net-snmp/library/asn1.h /usr/include/ucd-snmp/asn1.h /usr/local/include/net-snmp/library/asn1.h /usr/local/include/ucd-snmp/asn1.h /dev/null
|
|
do
|
|
test -f "${ac_snmp}" && break
|
|
done
|
|
@@ -15111,7 +15111,7 @@
|
|
|
|
|
|
cat >>confdefs.h <<\_ACEOF
|
|
-#define HAVE_NET_SNMP
|
|
+#define HAVE_NETSNMP
|
|
_ACEOF
|
|
|
|
|
|
@@ -15119,7 +15119,7 @@
|
|
#define UCD_COMPATIBLE
|
|
_ACEOF
|
|
|
|
- SNMP_INCLUDES="${SNMP_INCLUDES} -I/usr/local/include/net-snmp"
|
|
+ SNMP_INCLUDES="${SNMP_INCLUDES} -I/usr/local/include/net-snmp -I/usr/local/include/net-snmp/library"
|
|
LIBS="${LIBS} -L/usr/local/lib -lnetsnmp"
|
|
;;
|
|
esac
|