79248ce0e6
- 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
15 lines
331 B
Diff
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>
|
|
|