summaryrefslogtreecommitdiff
path: root/net-mgmt/net-snmp53
diff options
context:
space:
mode:
authorJun Kuriyama <kuriyama@FreeBSD.org>2009-02-12 11:18:47 +0000
committerJun Kuriyama <kuriyama@FreeBSD.org>2009-02-12 11:18:47 +0000
commit9b1d30d6862847a72e8d1e021973e2a0aa0203b6 (patch)
tree2c7b57b5e3a5f5706e964ae1cc97625cc4528660 /net-mgmt/net-snmp53
parent- Fix install and plist (diff)
Unbreak by merging RTL_LLINFO workaround from net-snmp.
Notes
Notes: svn path=/head/; revision=228105
Diffstat (limited to 'net-mgmt/net-snmp53')
-rw-r--r--net-mgmt/net-snmp53/files/patch-at.c14
1 files changed, 14 insertions, 0 deletions
diff --git a/net-mgmt/net-snmp53/files/patch-at.c b/net-mgmt/net-snmp53/files/patch-at.c
new file mode 100644
index 000000000000..12070f96cc23
--- /dev/null
+++ b/net-mgmt/net-snmp53/files/patch-at.c
@@ -0,0 +1,14 @@
+--- agent/mibgroup/mibII/at.c.orig 2008-12-25 10:40:04.000000000 +0900
++++ agent/mibgroup/mibII/at.c 2008-12-25 10:40:59.000000000 +0900
+@@ -686,7 +686,11 @@
+ mib[2] = 0;
+ mib[3] = AF_INET;
+ mib[4] = NET_RT_FLAGS;
++#if defined(RTF_LLINFO)
+ mib[5] = RTF_LLINFO;
++#else
++ mib[5] = 0;
++#endif
+
+ if (at)
+ free(at);