diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2020-12-29 17:33:22 +0100 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2020-12-29 17:34:34 +0100 |
commit | ec9a5e608357acdc6e793d63bddf84030aa4f024 (patch) | |
tree | a39565986e1269adc943840fdb06d5e3cab3cb25 | |
parent | fecb1693ccef88710fbb2de86d0f92bc2c76153f (diff) | |
download | busybox-w32-ec9a5e608357acdc6e793d63bddf84030aa4f024.tar.gz busybox-w32-ec9a5e608357acdc6e793d63bddf84030aa4f024.tar.bz2 busybox-w32-ec9a5e608357acdc6e793d63bddf84030aa4f024.zip |
libiproute: band-aid for old uclibc missing IFA_FLAGS
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-rw-r--r-- | networking/libiproute/ipaddress.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/networking/libiproute/ipaddress.c b/networking/libiproute/ipaddress.c index 91fabb1fd..dfd84c000 100644 --- a/networking/libiproute/ipaddress.c +++ b/networking/libiproute/ipaddress.c | |||
@@ -21,10 +21,15 @@ | |||
21 | #define IFF_LOWER_UP 0x10000 /* driver signals L1 up */ | 21 | #define IFF_LOWER_UP 0x10000 /* driver signals L1 up */ |
22 | #endif | 22 | #endif |
23 | 23 | ||
24 | /* for old uclibc */ | ||
24 | #ifndef IFA_F_NOPREFIXROUTE | 25 | #ifndef IFA_F_NOPREFIXROUTE |
25 | # define IFA_FLAGS 8 | 26 | # define IFA_FLAGS 8 |
26 | /* ifa_flags */ | ||
27 | # define IFA_F_NOPREFIXROUTE 0x200 | 27 | # define IFA_F_NOPREFIXROUTE 0x200 |
28 | enum { /* can't do this with preporcessor, IFA_MAX is an (enum - 1), not preprocessor constant */ | ||
29 | REAL_IFA_MAX = (IFA_MAX >= IFA_FLAGS) ? IFA_MAX : IFA_FLAGS, | ||
30 | }; | ||
31 | # undef IFA_MAX | ||
32 | # define IFA_MAX REAL_IFA_MAX | ||
28 | #endif | 33 | #endif |
29 | 34 | ||
30 | struct filter_t { | 35 | struct filter_t { |