From ab4e19afc66e13b6aac7429fdce95d2aa7cb15ae Mon Sep 17 00:00:00 2001 From: Eric Andersen Date: Tue, 14 Jan 2003 08:54:08 +0000 Subject: Eliminate most instances where we use linux kernel headers -Erik --- networking/libiproute/iplink.c | 15 ++++++++++++--- networking/libiproute/iptunnel.c | 9 ++++++--- networking/libiproute/ll_addr.c | 6 +----- 3 files changed, 19 insertions(+), 11 deletions(-) (limited to 'networking/libiproute') diff --git a/networking/libiproute/iplink.c b/networking/libiproute/iplink.c index 3b2f4da..1cfaf6d 100644 --- a/networking/libiproute/iplink.c +++ b/networking/libiproute/iplink.c @@ -18,10 +18,15 @@ #include #include -#include -#include +#include +#include +#include + +#if __GLIBC__ >=2 && __GLIBC_MINOR >= 1 +#include +#else #include -#include +#endif #include "rt_names.h" #include "utils.h" @@ -29,6 +34,10 @@ #include "libbb.h" + +/* take from linux/sockios.h */ +#define SIOCSIFNAME 0x8923 /* set interface name */ + static int do_link; static int on_off(char *msg) diff --git a/networking/libiproute/iptunnel.c b/networking/libiproute/iptunnel.c index dcf717e..1eb1779 100644 --- a/networking/libiproute/iptunnel.c +++ b/networking/libiproute/iptunnel.c @@ -25,10 +25,13 @@ #include #include +#include -#define sysinfo kernel_sysinfo -#include -#undef sysinfo +#include +#include + +#include +#define __constant_htons htons #include #include "rt_names.h" diff --git a/networking/libiproute/ll_addr.c b/networking/libiproute/ll_addr.c index 08d5b78..39e561f 100644 --- a/networking/libiproute/ll_addr.c +++ b/networking/libiproute/ll_addr.c @@ -11,11 +11,7 @@ #include #include - -#define sysinfo kernel_sysinfo -#include -#undef sysinfo - +#include #include "utils.h" #include "libbb.h" -- cgit v1.1