aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoraldot <aldot@69ca8d6d-28ef-0310-b511-8ec308f3f277>2006-12-04 15:57:17 +0000
committeraldot <aldot@69ca8d6d-28ef-0310-b511-8ec308f3f277>2006-12-04 15:57:17 +0000
commitd2bdfcb99ef9317522daaa122f5d1f7ef34203f0 (patch)
tree1178105e7635f0433a3e605e906c8e296999814b
parent04a30cdc9c15839105aebcc501dabfddaad89fda (diff)
downloadbusybox-w32-d2bdfcb99ef9317522daaa122f5d1f7ef34203f0.tar.gz
busybox-w32-d2bdfcb99ef9317522daaa122f5d1f7ef34203f0.tar.bz2
busybox-w32-d2bdfcb99ef9317522daaa122f5d1f7ef34203f0.zip
- make sure we pickup the correct defines. Guards against 2.6.19 kernel-headers.
git-svn-id: svn://busybox.net/trunk/busybox@16779 69ca8d6d-28ef-0310-b511-8ec308f3f277
-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_;