From: Mike Frysinger Date: Fri, 10 Mar 2006 23:41:29 +0000 (-0000) Subject: fix building with glibc-2.4 X-Git-Tag: 1_1_0~94 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=9e094552c8ca9f7e518a071f12eeafda81e2423b;p=oweals%2Fbusybox.git fix building with glibc-2.4 --- diff --git a/networking/ping6.c b/networking/ping6.c index 72d1d667a..47ab7c154 100644 --- a/networking/ping6.c +++ b/networking/ping6.c @@ -236,6 +236,16 @@ static void sendping(int junk) } } +/* libc defines have changed around on us, whee ! */ +#ifndef ICMP6_MEMBERSHIP_QUERY +# define ICMP6_MEMBERSHIP_QUERY MLD_LISTENER_QUERY +#endif +#ifndef ICMP6_MEMBERSHIP_REPORT +# define ICMP6_MEMBERSHIP_REPORT MLD_LISTENER_REPORT +#endif +#ifndef ICMP6_MEMBERSHIP_REDUCTION +# define ICMP6_MEMBERSHIP_REDUCTION MLD_LISTENER_REDUCTION +#endif static char *icmp6_type_name (int id) { switch (id) {