summaryrefslogtreecommitdiff
path: root/java/netty/files/patch-netty_unix_socket.c
diff options
context:
space:
mode:
authorGreg Lewis <glewis@FreeBSD.org>2019-12-19 22:26:24 +0000
committerGreg Lewis <glewis@FreeBSD.org>2019-12-19 22:26:24 +0000
commit64064feef7ab7ee3e5a760021b43237b9f6ea2fb (patch)
treede258a21839cf9c88121d4315525f4f225b777d7 /java/netty/files/patch-netty_unix_socket.c
parentgraphics/vapoursynth-fmtconv: unbreak on non-x86 (diff)
Update to 4.1.44
Notes
Notes: svn path=/head/; revision=520451
Diffstat (limited to 'java/netty/files/patch-netty_unix_socket.c')
-rw-r--r--java/netty/files/patch-netty_unix_socket.c12
1 files changed, 0 insertions, 12 deletions
diff --git a/java/netty/files/patch-netty_unix_socket.c b/java/netty/files/patch-netty_unix_socket.c
deleted file mode 100644
index c66f77191199..000000000000
--- a/java/netty/files/patch-netty_unix_socket.c
+++ /dev/null
@@ -1,12 +0,0 @@
---- netty_unix_socket.c.orig 2019-09-28 17:55:20.362544000 -0700
-+++ netty_unix_socket.c 2019-09-28 17:59:09.282432000 -0700
-@@ -389,6 +389,9 @@
- }
-
- #ifdef IP_RECVORIGDSTADDR
-+#if defined(__FreeBSD__) && !defined(SOL_IP)
-+#define SOL_IP IPPROTO_IP
-+#endif /* __FreeBSD__ && !SOL_IP */
- if (readLocalAddr) {
- for (cmsg = CMSG_FIRSTHDR(&msg); cmsg != NULL; cmsg = CMSG_NXTHDR(&msg, cmsg)) {
- if (cmsg->cmsg_level == SOL_IP && cmsg->cmsg_type == IP_RECVORIGDSTADDR) {