diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2015-06-16 15:04:39 +0200 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2015-06-16 15:08:27 +0200 |
commit | e76f394fdc34ecd734f976dd7b6660f6ae32d53e (patch) | |
tree | b2092e99463b21411f6975ab3d4c02e9e6eeb0aa /net/etherwake/patches | |
parent | 4116e327afee80aaea33a16358f5f7c0da687bec (diff) |
etherwake: fix musl compatibility
Always include net/ethernet.h instead linux specific headers,
fixes compilation with musl libc.
Signed-off-by: Jo-Philipp Wich <jow@openwrt.org>
Diffstat (limited to 'net/etherwake/patches')
-rw-r--r-- | net/etherwake/patches/120-musl-compat.patch | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/net/etherwake/patches/120-musl-compat.patch b/net/etherwake/patches/120-musl-compat.patch new file mode 100644 index 000000000..a2cdfba9d --- /dev/null +++ b/net/etherwake/patches/120-musl-compat.patch @@ -0,0 +1,17 @@ +--- a/ether-wake.c ++++ b/ether-wake.c +@@ -82,14 +82,8 @@ static char usage_msg[] = + #include <linux/if.h> + + #include <features.h> +-#if __GLIBC__ >= 2 && __GLIBC_MINOR >= 1 + #include <netpacket/packet.h> + #include <net/ethernet.h> +-#else +-#include <asm/types.h> +-#include <linux/if_packet.h> +-#include <linux/if_ether.h> +-#endif + #include <netdb.h> + #include <netinet/ether.h> + |