]> git.ipfire.org Git - thirdparty/iproute2.git/commitdiff
include needed files
authorStrake <strake888@gmail.com>
Sun, 23 Dec 2012 13:46:04 +0000 (08:46 -0500)
committerStephen Hemminger <shemminger@vyatta.com>
Sun, 23 Dec 2012 19:49:06 +0000 (11:49 -0800)
Needed to build iproute2 with musl

include/libnetlink.h
include/utils.h
ip/ipaddress.c
ip/ipntable.c
ip/ipprefix.c
lib/ipx_ntop.c
lib/ipx_pton.c
lib/utils.c
tc/m_ematch.h

index 4a6b8789fdc2ab1f5548f2078096eed32018744e..41e6ed1a3d18698d2e0fe4ff0f6f269b4953c73e 100644 (file)
@@ -1,6 +1,7 @@
 #ifndef __LIBNETLINK_H__
 #define __LIBNETLINK_H__ 1
 
+#include <stdio.h>
 #include <string.h>
 #include <asm/types.h>
 #include <linux/netlink.h>
index 496db68eb26d7d190d8ed8de691c2ffddee299aa..2bd8c623b0f82b5cd246693d2736302d50c317a8 100644 (file)
@@ -1,6 +1,7 @@
 #ifndef __UTILS_H__
 #define __UTILS_H__ 1
 
+#include <sys/types.h>
 #include <asm/types.h>
 #include <resolv.h>
 #include <stdlib.h>
index 5498f46882a0f2c17e5e96ffe1fdea8faec01b22..16f92d9144af6b75a66240ba596d437e2697ccfd 100644 (file)
@@ -19,7 +19,7 @@
 #include <sys/ioctl.h>
 #include <sys/socket.h>
 #include <sys/ioctl.h>
-#include <sys/errno.h>
+#include <errno.h>
 #include <netinet/in.h>
 #include <arpa/inet.h>
 #include <string.h>
index 639f512cb352898c1af461413682760921bee69d..5751114ec757b670771e5b9411fb3eba32526b6c 100644 (file)
@@ -27,6 +27,7 @@
 #include <stdlib.h>
 #include <string.h>
 #include <sys/time.h>
+#include <sys/socket.h>
 #include <time.h>
 
 #include "utils.h"
index d8327beb04de088d79b83c0e64ac34bd3c7cc704..ee276b3e57e9f9e4d7c184a294504116e7caf764 100644 (file)
@@ -26,6 +26,7 @@
 #include <stdio.h>
 #include <stdlib.h>
 #include <string.h>
+#include <sys/socket.h>
 #include <netinet/icmp6.h>
 #include "utils.h"
 
index 7b6d728d938c133a0839a323152988b94cda9774..1e46bc219051af80a8a3e7518c101899334bcaef 100644 (file)
@@ -1,5 +1,6 @@
 #include <errno.h>
 #include <sys/types.h>
+#include <sys/socket.h>
 #include <netinet/in.h>
 
 #include "utils.h"
index 1a52b7f1a58f9633b9c93eb2d5cda85139df7d8a..3dca2713719ad2eaeb19698339693d0b4afaaa8b 100644 (file)
@@ -1,6 +1,7 @@
 #include <errno.h>
 #include <string.h>
 #include <sys/types.h>
+#include <sys/socket.h>
 #include <netinet/in.h>
 
 #include "utils.h"
index 7ecaab3c5ac3666eb3a482011bc43be97a542e4b..5bcdbcfb5234f31d58b1fa770aa6ecb21e369fbe 100644 (file)
@@ -15,6 +15,7 @@
 #include <unistd.h>
 #include <syslog.h>
 #include <fcntl.h>
+#include <limits.h>
 #include <sys/socket.h>
 #include <netinet/in.h>
 #include <string.h>
@@ -22,6 +23,7 @@
 #include <arpa/inet.h>
 #include <asm/types.h>
 #include <linux/pkt_sched.h>
+#include <linux/param.h>
 #include <time.h>
 #include <sys/time.h>
 #include <errno.h>
index 5036e9b6bf474b8c020cf8192142577dfbb3cd49..81456aac3d5a80dc18f58d5d22a9b10dfc4ce8f8 100644 (file)
@@ -4,6 +4,7 @@
 #include <ctype.h>
 #include <stdlib.h>
 #include <string.h>
+#include <limits.h>
 
 #include "utils.h"
 #include "tc_util.h"