aboutsummaryrefslogtreecommitdiffstats
path: root/package/network/services/dnsmasq/patches/230-fix-poll-h-include-warning-on-musl.patch
diff options
context:
space:
mode:
authorKevin Darbyshire-Bryant <kevin@darbyshire-bryant.me.uk>2016-06-21 12:33:25 +0200
committerZoltan HERPAI <wigyori@uid0.hu>2016-06-21 12:33:25 +0200
commit1383e6058d28251395343e09ed401d1155ea61b7 (patch)
tree77963215a397958e56b2eb212ef413fb1f37e97d /package/network/services/dnsmasq/patches/230-fix-poll-h-include-warning-on-musl.patch
parent3b251c978351b424f8efb79967e8b0950613565a (diff)
downloadmaster-187ad058-1383e6058d28251395343e09ed401d1155ea61b7.tar.gz
master-187ad058-1383e6058d28251395343e09ed401d1155ea61b7.tar.bz2
master-187ad058-1383e6058d28251395343e09ed401d1155ea61b7.zip
dnsmasq: update to dnsmasq v2.76
Update to dnsmasq2.76. Refresh patches. Add new patch to fix musl 'poll.h' location warning. Signed-off-by: Kevin Darbyshire-Bryant <kevin@darbyshire-bryant.me.uk>
Diffstat (limited to 'package/network/services/dnsmasq/patches/230-fix-poll-h-include-warning-on-musl.patch')
-rw-r--r--package/network/services/dnsmasq/patches/230-fix-poll-h-include-warning-on-musl.patch18
1 files changed, 18 insertions, 0 deletions
diff --git a/package/network/services/dnsmasq/patches/230-fix-poll-h-include-warning-on-musl.patch b/package/network/services/dnsmasq/patches/230-fix-poll-h-include-warning-on-musl.patch
new file mode 100644
index 0000000000..19300f7d66
--- /dev/null
+++ b/package/network/services/dnsmasq/patches/230-fix-poll-h-include-warning-on-musl.patch
@@ -0,0 +1,18 @@
+dnsmasq: fix warning with poll.h include on musl
+
+Warning is:
+ #warning redirecting incorrect #include <sys/poll.h> to <poll.h>
+
+Signed-off-by: Kevin Darbyshire-Bryant <kevin@darbyshire-bryant.me.uk>
+
+--- a/src/dnsmasq.h
++++ b/src/dnsmasq.h
+@@ -82,7 +82,7 @@ typedef unsigned long long u64;
+ #if defined(HAVE_SOLARIS_NETWORK)
+ # include <sys/sockio.h>
+ #endif
+-#include <sys/poll.h>
++#include <poll.h>
+ #include <sys/wait.h>
+ #include <sys/time.h>
+ #include <sys/un.h>