summaryrefslogtreecommitdiff
path: root/packages/strace/4.5.18/160-fix-check-for-linux-netlink.patch
diff options
context:
space:
mode:
authorAlexey Neyman <stilor@att.net>2017-08-19 19:43:51 (GMT)
committerGitHub <noreply@github.com>2017-08-19 19:43:51 (GMT)
commit434c205e89f9d4e06d0210ae8504fb6a88a11d00 (patch)
tree5c381b037991f0ef5a46bf539e83122894c84887 /packages/strace/4.5.18/160-fix-check-for-linux-netlink.patch
parent73e8b0b228e29f6cac1b186cbcb7e3d1a47711ac (diff)
parentd26dc5d5f5509232e7bd162baa70697c86307079 (diff)
Merge pull request #803 from stilor/upgrades
Various package upgrades
Diffstat (limited to 'packages/strace/4.5.18/160-fix-check-for-linux-netlink.patch')
-rw-r--r--packages/strace/4.5.18/160-fix-check-for-linux-netlink.patch19
1 files changed, 0 insertions, 19 deletions
diff --git a/packages/strace/4.5.18/160-fix-check-for-linux-netlink.patch b/packages/strace/4.5.18/160-fix-check-for-linux-netlink.patch
deleted file mode 100644
index e12b4e4..0000000
--- a/packages/strace/4.5.18/160-fix-check-for-linux-netlink.patch
+++ /dev/null
@@ -1,19 +0,0 @@
-Dmitry V. Levin [Tue, 3 Nov 2009 16:49:49 +0000]
-
-Fix check for linux/netlink.h on Linux 2.6.32-rc5+
-
-* configure.ac (AC_CHECK_HEADERS): In check for linux/netlink.h, include
- sys/socket.h instead of linux/socket.h beforehand.
-
-diff --git a/configure.ac b/configure.ac
---- a/configure.ac
-+++ b/configure.ac
-@@ -197,7 +197,7 @@ AC_CHECK_HEADERS([ \
- ], [], [])
- AC_CHECK_HEADERS([linux/icmp.h linux/in6.h linux/netlink.h linux/if_packet.h],
- [], [], [#include <stddef.h>
--#include <linux/socket.h>])
-+#include <sys/socket.h>])
- AC_CHECK_HEADERS([asm/sigcontext.h], [], [], [#include <signal.h>])
- AC_CHECK_TYPES([struct sigcontext_struct],,, [#include <signal.h>])
- AC_CHECK_HEADERS([netinet/tcp.h netinet/udp.h],,, [#include <netinet/in.h>])