summaryrefslogtreecommitdiffstats
path: root/package/musl/0001-avoid-kernel-if_ether.h.patch
blob: 8efbcc8450830d3fee19cf6613241df6071c459b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
From 3984adc4976de7553f51e0cf4de1e18c373b332b Mon Sep 17 00:00:00 2001
From: Baruch Siach <baruch@tkos.co.il>
Date: Thu, 15 Dec 2016 15:10:19 +0200
Subject: [PATCH] Avoid redefinition of struct ethhdr

This is a workaround to the if_ether.h conflict between musl and the kernel.
Both define struct ethhdr.

Signed-off-by: Baruch Siach <baruch@tkos.co.il>
---
 include/netinet/if_ether.h | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/include/netinet/if_ether.h b/include/netinet/if_ether.h
index 11ee65823f93..cfe1949d3371 100644
--- a/include/netinet/if_ether.h
+++ b/include/netinet/if_ether.h
@@ -1,6 +1,9 @@
 #ifndef _NETINET_IF_ETHER_H
 #define _NETINET_IF_ETHER_H
 
+/* Suppress kernel if_ether.h header inclusion */
+#define _LINUX_IF_ETHER_H
+
 #include <stdint.h>
 #include <sys/types.h>
 
-- 
2.10.2

OpenPOWER on IntegriCloud