You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/net-misc/bridge-utils/files/bridge-utils-1.5-linux-3.8....

19 lines
435 B

unfortunately if_bridge.h from Linux 3.8+ is not self-contained and the struct
for ip6 is missing
http://bugs.gentoo.org/460262
this is not unheard of with Linux headers, for example, <linux/cdrom.h> needs
<limits.h> to get INT_MAX
--- libbridge/libbridge.h
+++ libbridge/libbridge.h
@@ -20,6 +20,7 @@
#define _LIBBRIDGE_H
#include <sys/socket.h>
+#include <netinet/ip6.h>
#include <linux/if.h>
#include <linux/if_bridge.h>