1
0
mirror of https://git.openwrt.org/openwrt/openwrt.git synced 2024-06-19 23:28:29 +02:00

busybox: fix arping applet building on musl

musl-libc is more strict about missing includes.

Signed-off-by: Florian Fainelli <florian@openwrt.org>

SVN-Revision: 34311
This commit is contained in:
Florian Fainelli 2012-11-23 20:02:14 +00:00
parent 94bdc366d4
commit 92fd6e6f1a

View File

@ -0,0 +1,12 @@
diff -urN busybox-1.19.4/networking/arping.c busybox-1.19.4.new/networking/arping.c
--- busybox-1.19.4/networking/arping.c 2012-02-04 20:24:55.000000000 +0100
+++ busybox-1.19.4.new/networking/arping.c 2012-11-23 17:22:13.753252564 +0100
@@ -24,6 +24,8 @@
#include <arpa/inet.h>
#include <net/if.h>
+#include <net/if_arp.h>
+#include <netinet/if_ether.h>
#include <netinet/ether.h>
#include <netpacket/packet.h>