1
0
Fork 0
mirror of https://gitlab.alpinelinux.org/alpine/aports.git synced 2025-07-26 04:35:39 +03:00
aports/community/libteam/fix-redefinition-struct-ethhdr.patch
2016-09-01 13:19:36 +00:00

51 lines
1.2 KiB
Diff

--- libteam-1.24/teamd/teamd_lw_arp_ping.c
+++ libteam-1.24.new/teamd/teamd_lw_arp_ping.c
@@ -20,7 +20,11 @@
#include <arpa/inet.h>
#include <net/if_arp.h>
+#if defined(__GLIBC__)
#include <linux/if_ether.h>
+#else
+#include <net/ethernet.h>
+#endif
#include <netdb.h>
#include <private/misc.h>
#include "teamd.h"
--- libteam-1.24/teamd/teamd_lw_nsna_ping.c
+++ libteam-1.24.new/teamd/teamd_lw_nsna_ping.c
@@ -21,7 +21,11 @@
#include <netdb.h>
#include <netinet/ip6.h>
#include <netinet/icmp6.h>
+#if defined(__GLIBC__)
#include <linux/if_ether.h>
+#else
+#include <net/ethernet.h>
+#endif
#include <private/misc.h>
#include "teamd.h"
#include "teamd_link_watch.h"
--- libteam-1.24/teamd/teamd_runner_lacp.c
+++ libteam-1.24.new/teamd/teamd_runner_lacp.c
@@ -23,14 +23,20 @@
#include <unistd.h>
#include <limits.h>
#include <sys/ioctl.h>
+#if defined(__GLIBC__)
#include <linux/if_ether.h>
+#else
+#include <net/ethernet.h>
+#endif
#include <sys/socket.h>
#include <linux/netdevice.h>
#include <netinet/in.h>
#include <errno.h>
#include <team.h>
#include <private/misc.h>
+#if defined(__GLIBC__)
#include <net/ethernet.h>
+#endif
#include "teamd.h"
#include "teamd_config.h"