summaryrefslogtreecommitdiffstats
path: root/meta-networking/recipes-filter
diff options
context:
space:
mode:
authorKhem Raj <raj.khem@gmail.com>2017-03-30 13:29:01 -0700
committerJoe MacDonald <joe_macdonald@mentor.com>2017-04-25 15:55:36 -0400
commit1412617849e28d18ac3aaa7a8d714428095955e5 (patch)
tree989fd0f546574c1d2b0567591d2034d542ebed5d /meta-networking/recipes-filter
parent3692f1e2020661bc5cf45b73aa5ae99038484951 (diff)
downloadmeta-openembedded-1412617849e28d18ac3aaa7a8d714428095955e5.tar.gz
libnetfilter-queue: Update to git for SRC_URI
brings in the fixes to build on musl Add a typo fix patch Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Joe MacDonald <joe_macdonald@mentor.com>
Diffstat (limited to 'meta-networking/recipes-filter')
-rw-r--r--meta-networking/recipes-filter/libnetfilter/files/0001-Correct-typo-in-the-location-of-internal.h-in-includ.patch26
-rw-r--r--meta-networking/recipes-filter/libnetfilter/libnetfilter-queue_1.0.2.bb11
2 files changed, 33 insertions, 4 deletions
diff --git a/meta-networking/recipes-filter/libnetfilter/files/0001-Correct-typo-in-the-location-of-internal.h-in-includ.patch b/meta-networking/recipes-filter/libnetfilter/files/0001-Correct-typo-in-the-location-of-internal.h-in-includ.patch
new file mode 100644
index 000000000..76d2d5d28
--- /dev/null
+++ b/meta-networking/recipes-filter/libnetfilter/files/0001-Correct-typo-in-the-location-of-internal.h-in-includ.patch
@@ -0,0 +1,26 @@
1From 32af64e1811c74292891dc4dc8455736f7d33ccf Mon Sep 17 00:00:00 2001
2From: Khem Raj <raj.khem@gmail.com>
3Date: Thu, 30 Mar 2017 13:26:56 -0700
4Subject: [PATCH] Correct typo in the location of internal.h in #include
5
6Signed-off-by: Khem Raj <raj.khem@gmail.com>
7---
8 src/libnetfilter_queue.c | 2 +-
9 1 file changed, 1 insertion(+), 1 deletion(-)
10
11diff --git a/src/libnetfilter_queue.c b/src/libnetfilter_queue.c
12index 211a8ba..065d618 100644
13--- a/src/libnetfilter_queue.c
14+++ b/src/libnetfilter_queue.c
15@@ -32,7 +32,7 @@
16
17 #include <libnfnetlink/libnfnetlink.h>
18 #include <libnetfilter_queue/libnetfilter_queue.h>
19-#include "src/internal.h"
20+#include "internal.h"
21
22 /**
23 * \mainpage
24--
252.12.1
26
diff --git a/meta-networking/recipes-filter/libnetfilter/libnetfilter-queue_1.0.2.bb b/meta-networking/recipes-filter/libnetfilter/libnetfilter-queue_1.0.2.bb
index ddf2aa5c4..0ca074ca3 100644
--- a/meta-networking/recipes-filter/libnetfilter/libnetfilter-queue_1.0.2.bb
+++ b/meta-networking/recipes-filter/libnetfilter/libnetfilter-queue_1.0.2.bb
@@ -6,10 +6,13 @@ LICENSE = "GPLv2+"
6LIC_FILES_CHKSUM = "file://COPYING;md5=8ca43cbc842c2336e835926c2166c28b" 6LIC_FILES_CHKSUM = "file://COPYING;md5=8ca43cbc842c2336e835926c2166c28b"
7DEPENDS = "libnfnetlink libmnl" 7DEPENDS = "libnfnetlink libmnl"
8 8
9SRC_URI = "http://www.netfilter.org/projects/libnetfilter_queue/files/libnetfilter_queue-${PV}.tar.bz2;name=tar" 9PV .= "+git${SRCREV}"
10SRC_URI[tar.md5sum] = "df09befac35cb215865b39a36c96a3fa" 10SRCREV = "981025e103d887fb6a9c9bb49c74ec323108d098"
11SRC_URI[tar.sha256sum] = "838490eb5dbe358f9669823704982f5313a8d397111562373200203f93ac1a32"
12 11
13S = "${WORKDIR}/libnetfilter_queue-${PV}" 12SRC_URI = "git://git.netfilter.org/libnetfilter_queue \
13 file://0001-Correct-typo-in-the-location-of-internal.h-in-includ.patch \
14 "
15
16S = "${WORKDIR}/git"
14 17
15inherit autotools pkgconfig 18inherit autotools pkgconfig