packages/ipv6/ndisc/patches/130-wifcontinued.patch
jow 79248ce0e6 [packages] ndisc:
- update to v0.9.9
	- fix compilation by providing dummy WIFCONTINUED() macro
	- package rdnssd DNS discovery deamon


git-svn-id: svn://svn.openwrt.org/openwrt/packages@21772 3c298f89-4303-0410-b956-a3cf2f4a3e73
2010-06-13 00:17:30 +00:00

15 lines
331 B
Diff

--- a/src/isatapd.c
+++ b/src/isatapd.c
@@ -77,6 +77,11 @@
#include <netinet/in.h>
#include <netinet/icmp6.h>
+/* uclibc does not define WIFCONTINUED(), workaround */
+#ifndef WIFCONTINUED
+#define WIFCONTINUED(wstat) (0)
+#endif
+
/* contains Protocol Constants for host and Node (RFCs 4861, 5214) */
#include <isatapd.h>