From: Florian Fainelli Date: Wed, 13 Mar 2013 16:16:43 +0000 (+0000) Subject: bridge-utils: fix a struct in6_addr reference X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fsvn-archive%2Farchive.git;a=commitdiff_plain;hb=9442e0fd69c6d2bc7e4ebf76f6f7cd7c51ac44c8 bridge-utils: fix a struct in6_addr reference Bridge-utils uses kernel headers. Linux 3.8 has a header, include/uapi/linux/if_bridge.h that uses a struct in6_addr but doesn't define it. The trivial seeming fix of including the header that does define it causes more problems. The problem was discussed on mailing lists in January 2013. The final suggestion I found was here: http://www.redhat.com/archives/libvir-list/2013-January/msg01253.html This is intended to implement that suggestion. Signed-off-by: Russell Senior Signed-off-by: Florian Fainelli SVN-Revision: 35999 --- diff --git a/net/bridge-utils/Makefile b/net/bridge-utils/Makefile index f87551c6c4..63edf4aea9 100644 --- a/net/bridge-utils/Makefile +++ b/net/bridge-utils/Makefile @@ -1,5 +1,5 @@ # -# Copyright (C) 2006-2012 OpenWrt.org +# Copyright (C) 2006-2013 OpenWrt.org # # This is free software, licensed under the GNU General Public License v2. # See /LICENSE for more information. @@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk include $(INCLUDE_DIR)/kernel.mk PKG_NAME:=bridge-utils -PKG_RELEASE:=1 +PKG_RELEASE:=2 PKG_SOURCE_URL:=@SF/bridge PKG_VERSION:=1.5 PKG_MD5SUM:=ec7b381160b340648dede58c31bb2238 diff --git a/net/bridge-utils/patches/010-fix_struct_in6_addr_usage.patch b/net/bridge-utils/patches/010-fix_struct_in6_addr_usage.patch new file mode 100644 index 0000000000..c2087e590e --- /dev/null +++ b/net/bridge-utils/patches/010-fix_struct_in6_addr_usage.patch @@ -0,0 +1,10 @@ +--- a/libbridge/libbridge.h ++++ b/libbridge/libbridge.h +@@ -20,6 +20,7 @@ + #define _LIBBRIDGE_H + + #include ++#include + #include + #include +