summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnthony G. Basile <blueness@gentoo.org>2018-02-21 15:44:28 -0500
committerAnthony G. Basile <blueness@gentoo.org>2018-02-21 15:44:46 -0500
commit95a4d2e630d66a6042b0157b53b9452b3c7b9369 (patch)
treef595d0b11ffb1fbef0442d5f4e02bfb6ed73e2e6 /net-analyzer/net-snmp/files
parentsys-apps/qingy: Disable DirectFB support (#642510), drop .la files, bump eapi. (diff)
downloadgentoo-95a4d2e630d66a6042b0157b53b9452b3c7b9369.tar.gz
gentoo-95a4d2e630d66a6042b0157b53b9452b3c7b9369.tar.bz2
gentoo-95a4d2e630d66a6042b0157b53b9452b3c7b9369.zip
net-analyzer/net-snmp: add missing include <limits.h>
PATH_MAX and NAME_MAX requires <limits.h> according to POSIX. This problem shows up on non-glibc systems. Package-Manager: Portage-2.3.19, Repoman-2.3.6
Diffstat (limited to 'net-analyzer/net-snmp/files')
-rw-r--r--net-analyzer/net-snmp/files/net-snmp-5.7.3-include-limits.patch15
1 files changed, 15 insertions, 0 deletions
diff --git a/net-analyzer/net-snmp/files/net-snmp-5.7.3-include-limits.patch b/net-analyzer/net-snmp/files/net-snmp-5.7.3-include-limits.patch
new file mode 100644
index 000000000000..04eafbbe9c5d
--- /dev/null
+++ b/net-analyzer/net-snmp/files/net-snmp-5.7.3-include-limits.patch
@@ -0,0 +1,15 @@
+POSIX requires <limits.h> for PATH_MAX and NAME_MAX
+
+Author: Anthony G. Basile <blueness@gentoo.org>
+
+diff -Naur net-snmp-5.7.3.orig/agent/mibgroup/util_funcs/get_pid_from_inode.c net-snmp-5.7.3/agent/mibgroup/util_funcs/get_pid_from_inode.c
+--- net-snmp-5.7.3.orig/agent/mibgroup/util_funcs/get_pid_from_inode.c 2014-12-08 15:23:22.000000000 -0500
++++ net-snmp-5.7.3/agent/mibgroup/util_funcs/get_pid_from_inode.c 2018-02-21 15:34:06.237028136 -0500
+@@ -6,6 +6,7 @@
+
+ #include <ctype.h>
+ #include <stdio.h>
++#include <limits.h>
+ #if HAVE_STDLIB_H
+ #include <stdlib.h>
+ #endif