diff options
author | Baruch Siach <baruch@tkos.co.il> | 2016-10-27 21:00:03 +0300 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2016-10-27 21:54:12 +0200 |
commit | 7c740bf9c5937cc93746ac0300cb33b8aeb6abf6 (patch) | |
tree | d408b3b76436d2a251dbcdb54fcbdf48479359ce /package/bridge-utils/0002-fix-for-kernel-headers-3.8+.patch | |
parent | be8c8d8d71ec9df826dc5d20d4fea7255f2cb156 (diff) | |
download | buildroot-7c740bf9c5937cc93746ac0300cb33b8aeb6abf6.tar.gz buildroot-7c740bf9c5937cc93746ac0300cb33b8aeb6abf6.zip |
bridge-utils: bump to version 1.6
Drop upstream patches.
Change download and homepage to kernel.org, and use .xz tarball.
Signed-off-by: Baruch Siach <baruch@tkos.co.il>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/bridge-utils/0002-fix-for-kernel-headers-3.8+.patch')
-rw-r--r-- | package/bridge-utils/0002-fix-for-kernel-headers-3.8+.patch | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/package/bridge-utils/0002-fix-for-kernel-headers-3.8+.patch b/package/bridge-utils/0002-fix-for-kernel-headers-3.8+.patch deleted file mode 100644 index 0455a9085c..0000000000 --- a/package/bridge-utils/0002-fix-for-kernel-headers-3.8+.patch +++ /dev/null @@ -1,30 +0,0 @@ -commit 5eebb7f9288b7881ffb929b1fd494fe3ac3be27d -Author: Russell Senior <russell@personaltelco.net> -Date: Wed Mar 6 12:49:42 2013 -0800 - - bridge-utils: Fix compile against linux-3.8.x - - 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 <russell@personaltelco.net> - -diff --git a/libbridge/libbridge.h b/libbridge/libbridge.h -index 39964f2..dd14bae 100644 ---- a/libbridge/libbridge.h -+++ b/libbridge/libbridge.h -@@ -20,6 +20,7 @@ - #define _LIBBRIDGE_H - - #include <sys/socket.h> -+#include <netinet/in.h> - #include <linux/if.h> - #include <linux/if_bridge.h> - |