diff options
author | Gustavo Zacarias <gustavo@zacarias.com.ar> | 2016-08-23 10:19:09 -0300 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2016-08-23 17:55:52 +0200 |
commit | 7b5fc8ab0f689caadb86b4260c0ace29a9b947b7 (patch) | |
tree | 6a86021b87f8d64c8e4d2826eb9a7969be4559ff /package/conntrack-tools/0001-src-fix-build-with-musl-libc.patch | |
parent | 03c3fcd5bcf9c1361888119f866eac4b55575b48 (diff) | |
download | buildroot-7b5fc8ab0f689caadb86b4260c0ace29a9b947b7.tar.gz buildroot-7b5fc8ab0f689caadb86b4260c0ace29a9b947b7.zip |
conntrack-tools: bump to version 1.4.4
Drop usptream patch.
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/conntrack-tools/0001-src-fix-build-with-musl-libc.patch')
-rw-r--r-- | package/conntrack-tools/0001-src-fix-build-with-musl-libc.patch | 37 |
1 files changed, 0 insertions, 37 deletions
diff --git a/package/conntrack-tools/0001-src-fix-build-with-musl-libc.patch b/package/conntrack-tools/0001-src-fix-build-with-musl-libc.patch deleted file mode 100644 index 5881f98721..0000000000 --- a/package/conntrack-tools/0001-src-fix-build-with-musl-libc.patch +++ /dev/null @@ -1,37 +0,0 @@ -From d7b20d9bbed23a7a7e40af2f5e78f37ff67e8d93 Mon Sep 17 00:00:00 2001 -From: Rodrigo Rebello <rprebello@gmail.com> -Date: Mon, 23 Nov 2015 02:12:48 -0200 -Subject: [PATCH] src: fix build with musl libc - -The GNU version of 'struct tcphdr' is not exposed by musl libc headers -unless _GNU_SOURCE is defined. Without this definition, the build fails -with: - - rpc.c: In function 'rpc_helper_cb': - rpc.c:351:15: error: 'struct tcphdr' has no member named 'doff' - offset += th->doff * 4; - ^ - -Upstream status: sent -http://patchwork.ozlabs.org/patch/547376/ - -Signed-off-by: Rodrigo Rebello <rprebello@gmail.com> ---- - src/helpers/rpc.c | 1 + - 1 file changed, 1 insertion(+) - -diff --git a/src/helpers/rpc.c b/src/helpers/rpc.c -index 82493c2..3a7b337 100644 ---- a/src/helpers/rpc.c -+++ b/src/helpers/rpc.c -@@ -28,6 +28,7 @@ - - #include <rpc/rpc_msg.h> - #include <rpc/pmap_prot.h> -+#define _GNU_SOURCE - #include <netinet/tcp.h> - #include <netinet/udp.h> - --- -2.1.4 - |