diff options
author | Bernd Kuhls <bernd.kuhls@t-online.de> | 2016-05-22 11:57:44 +0200 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2016-05-22 21:39:18 +0200 |
commit | ed514e4736377a9179890d95d43787cb2f886541 (patch) | |
tree | da1b6a898d01092eac22de99009d3d4de7e1df0e /package/bluez5_utils/0001-tools-bneptest.c-Remove-include-linux-if_bridge.h-to.patch | |
parent | 75d9f74df6a491c96969375bdd4ef9d9ecef6cd6 (diff) | |
download | buildroot-ed514e4736377a9179890d95d43787cb2f886541.tar.gz buildroot-ed514e4736377a9179890d95d43787cb2f886541.zip |
package/bluez5_utils: remove include linux/if_bridge.h to fix musl build
Fixes
http://autobuild.buildroot.net/results/eba/ebaa0bcb9c325aa6ed0bbd6c7ec75d44befa7645/
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/bluez5_utils/0001-tools-bneptest.c-Remove-include-linux-if_bridge.h-to.patch')
-rw-r--r-- | package/bluez5_utils/0001-tools-bneptest.c-Remove-include-linux-if_bridge.h-to.patch | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/package/bluez5_utils/0001-tools-bneptest.c-Remove-include-linux-if_bridge.h-to.patch b/package/bluez5_utils/0001-tools-bneptest.c-Remove-include-linux-if_bridge.h-to.patch new file mode 100644 index 0000000000..e8a3ff47bf --- /dev/null +++ b/package/bluez5_utils/0001-tools-bneptest.c-Remove-include-linux-if_bridge.h-to.patch @@ -0,0 +1,45 @@ +From 7c136b4f1941e5bb2a6c8d93985c5734c6aefb29 Mon Sep 17 00:00:00 2001 +From: Bernd Kuhls <bernd.kuhls@writeme.com> +Date: Sun, 22 May 2016 09:48:57 +0200 +Subject: [PATCH 1/1] tools/bneptest.c: Remove include linux/if_bridge.h to fix + musl build + +Inspired by busybox commit: +https://git.busybox.net/busybox/commit/networking/brctl.c?id=5fa6d1a632505789409a2ba6cf8e112529f9db18 + +The build error was found by the autobuilders of the buildroot project: +http://autobuild.buildroot.net/results/eba/ebaa0bcb9c325aa6ed0bbd6c7ec75d44befa7645/build-end.log + +Signed-off-by: Bernd Kuhls <bernd.kuhls@writeme.com> +(Patch sent upstream: + http://article.gmane.org/gmane.linux.bluez.kernel/67621) +--- + tools/bneptest.c | 12 +++++++++++- + 1 file changed, 11 insertions(+), 1 deletion(-) + +diff --git a/tools/bneptest.c b/tools/bneptest.c +index 1404252..b832d72 100644 +--- a/tools/bneptest.c ++++ b/tools/bneptest.c +@@ -36,7 +36,17 @@ + #include <net/if.h> + #include <linux/sockios.h> + #include <netinet/in.h> +-#include <linux/if_bridge.h> ++/* #include <linux/if_bridge.h> ++ * breaks on musl: we already included netinet/in.h, ++ * if we also include <linux/if_bridge.h> here, we get this: ++ * In file included from /usr/include/linux/if_bridge.h:18, ++ * from networking/brctl.c:67: ++ * /usr/include/linux/in6.h:32: error: redefinition of 'struct in6_addr' ++ * /usr/include/linux/in6.h:49: error: redefinition of 'struct sockaddr_in6' ++ * /usr/include/linux/in6.h:59: error: redefinition of 'struct ipv6_mreq' ++ */ ++/* From <linux/if_bridge.h> */ ++#define BRCTL_SET_BRIDGE_FORWARD_DELAY 8 + + #include <glib.h> + +-- +2.8.1 + |