aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2006-12-04 15:57:17 +0000
committerBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2006-12-04 15:57:17 +0000
commitbb59f02218d326fa91bf1ade23232340bee317be (patch)
tree1178105e7635f0433a3e605e906c8e296999814b
parent91d4a2dac3a239455abfd0037cd2d7650a9af616 (diff)
downloadbusybox-w32-bb59f02218d326fa91bf1ade23232340bee317be.tar.gz
busybox-w32-bb59f02218d326fa91bf1ade23232340bee317be.tar.bz2
busybox-w32-bb59f02218d326fa91bf1ade23232340bee317be.zip
- make sure we pickup the correct defines. Guards against 2.6.19 kernel-headers.
-rw-r--r--networking/libiproute/ip_common.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/networking/libiproute/ip_common.h b/networking/libiproute/ip_common.h
index cc4b3aa01..15291780e 100644
--- a/networking/libiproute/ip_common.h
+++ b/networking/libiproute/ip_common.h
@@ -6,7 +6,12 @@
6#include <asm/types.h> 6#include <asm/types.h>
7#include <linux/netlink.h> 7#include <linux/netlink.h>
8#include <linux/rtnetlink.h> 8#include <linux/rtnetlink.h>
9 9#if !defined IFA_RTA
10#include <linux/if_addr.h>
11#endif
12#if !defined IFLA_RTA
13#include <linux/if_link.h>
14#endif
10 15
11extern int preferred_family; 16extern int preferred_family;
12extern char * _SL_; 17extern char * _SL_;