From 1b411c2ccd94e0f35321e749feb73640aab445ad Mon Sep 17 00:00:00 2001 From: David Heidelberger Date: Sat, 8 Mar 2014 23:31:34 +0100 Subject: [PATCH 5/7] workaround only uclibc and glibc < 2 --- rdisc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rdisc.c b/rdisc.c index 42b47a4..88645bf 100644 --- a/rdisc.c +++ b/rdisc.c @@ -115,7 +115,7 @@ static void init(void); #define MAXIFS 32 -#if !defined(__GLIBC__) || __GLIBC__ < 2 +#if defined(__UCLIBC__) || (defined(__GLIBC__) && __GLIBC__ < 2) /* For router advertisement */ struct icmp_ra { -- 1.9.0