diff options
author | Peter Seiderer <ps.report@gmx.net> | 2018-12-13 23:55:21 +0100 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@bootlin.com> | 2018-12-14 21:53:00 +0100 |
commit | 3211f0fb76cb500f68e3fa3ce009695dfcc2f871 (patch) | |
tree | 7a68d9f150f55ef6a98472a3273df784571973bf /package/iwd/0001-monitor-pcap.c-add-missing-sys-stat.h-include.patch | |
parent | 7ee77e960041dabf49796340773862de6a8f878f (diff) | |
download | buildroot-3211f0fb76cb500f68e3fa3ce009695dfcc2f871.tar.gz buildroot-3211f0fb76cb500f68e3fa3ce009695dfcc2f871.zip |
iwd: bump version to 0.13
- drop 0001-monitor-pcap.c-add-missing-sys-stat.h-include.patch
(upstream applied [1])
- drop 0002-Fix-__iwd_backtrace_init-availability-detection.patch
(upstream applied [2], [3])
[1] https://git.kernel.org/pub/scm/network/wireless/iwd.git/commit/?id=330a930b01abe64262d1c46c2e27b33e9bbe1487
[2] https://git.kernel.org/pub/scm/network/wireless/iwd.git/commit/?id=40ec69876cbe40a36fec1d7bc007471b034708f5
[3] https://git.kernel.org/pub/scm/network/wireless/iwd.git/commit/?id=7d6e11ddd5c0414f8e00db63a0aa7b1c5695b026
Signed-off-by: Peter Seiderer <ps.report@gmx.net>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Diffstat (limited to 'package/iwd/0001-monitor-pcap.c-add-missing-sys-stat.h-include.patch')
-rw-r--r-- | package/iwd/0001-monitor-pcap.c-add-missing-sys-stat.h-include.patch | 46 |
1 files changed, 0 insertions, 46 deletions
diff --git a/package/iwd/0001-monitor-pcap.c-add-missing-sys-stat.h-include.patch b/package/iwd/0001-monitor-pcap.c-add-missing-sys-stat.h-include.patch deleted file mode 100644 index 83be65dcd1..0000000000 --- a/package/iwd/0001-monitor-pcap.c-add-missing-sys-stat.h-include.patch +++ /dev/null @@ -1,46 +0,0 @@ -From a879fc32d58625bd9361219c1285ab6e5f012467 Mon Sep 17 00:00:00 2001 -From: Peter Seiderer <ps.report@gmx.net> -Date: Fri, 2 Nov 2018 14:29:53 +0100 -Subject: [PATCH] monitor/pcap.c: add missing sys/stat.h include -MIME-Version: 1.0 -Content-Type: text/plain; charset=UTF-8 -Content-Transfer-Encoding: 8bit - -Fixes: - - CC monitor/pcap.o - monitor/pcap.c: In function ‘pcap_create’: - monitor/pcap.c:121:6: error: ‘S_IRUSR’ undeclared (first use in this function) - S_IRUSR | S_IWUSR | S_IRGRP | S_IROTH); - ^ - monitor/pcap.c:121:6: note: each undeclared identifier is reported only once for each function it appears in - monitor/pcap.c:121:16: error: ‘S_IWUSR’ undeclared (first use in this function) - S_IRUSR | S_IWUSR | S_IRGRP | S_IROTH); - ^ - monitor/pcap.c:121:26: error: ‘S_IRGRP’ undeclared (first use in this function) - S_IRUSR | S_IWUSR | S_IRGRP | S_IROTH); - ^ - monitor/pcap.c:121:36: error: ‘S_IROTH’ undeclared (first use in this function) - S_IRUSR | S_IWUSR | S_IRGRP | S_IROTH); - ^ - -Signed-off-by: Peter Seiderer <ps.report@gmx.net> ---- - monitor/pcap.c | 1 + - 1 file changed, 1 insertion(+) - -diff --git a/monitor/pcap.c b/monitor/pcap.c -index 54ad9f5..785aefa 100644 ---- a/monitor/pcap.c -+++ b/monitor/pcap.c -@@ -29,6 +29,7 @@ - #include <fcntl.h> - #include <unistd.h> - #include <stdlib.h> -+#include <sys/stat.h> - #include <sys/uio.h> - #include <sys/types.h> - #include <ell/ell.h> --- -2.19.1 - |