projects
/
oweals
/
busybox.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c70240c
)
fix building with glibc-2.4
author
Mike Frysinger
<vapier@gentoo.org>
Fri, 10 Mar 2006 23:41:29 +0000
(23:41 -0000)
committer
Mike Frysinger
<vapier@gentoo.org>
Fri, 10 Mar 2006 23:41:29 +0000
(23:41 -0000)
networking/ping6.c
patch
|
blob
|
history
diff --git
a/networking/ping6.c
b/networking/ping6.c
index 72d1d667ab6d3d3cce43274d8ba344c3dce93442..47ab7c15461941bfeafbd90938aed1439580782f 100644
(file)
--- 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) {