summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--net/dnsmasq/Makefile4
-rw-r--r--net/dnsmasq/distinfo11
-rw-r--r--net/dnsmasq/patches/patch-src_bpf.c26
3 files changed, 7 insertions, 34 deletions
diff --git a/net/dnsmasq/Makefile b/net/dnsmasq/Makefile
index dfc085c7185..ed702c8643e 100644
--- a/net/dnsmasq/Makefile
+++ b/net/dnsmasq/Makefile
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.32 2016/02/25 16:20:50 jperkin Exp $
+# $NetBSD: Makefile,v 1.33 2016/11/08 11:59:05 mef Exp $
-DISTNAME= dnsmasq-2.75
+DISTNAME= dnsmasq-2.76
CATEGORIES= net
MASTER_SITES= http://www.thekelleys.org.uk/dnsmasq/
diff --git a/net/dnsmasq/distinfo b/net/dnsmasq/distinfo
index b26b8a9d255..8f89c8d4238 100644
--- a/net/dnsmasq/distinfo
+++ b/net/dnsmasq/distinfo
@@ -1,8 +1,7 @@
-$NetBSD: distinfo,v 1.30 2015/11/04 00:34:58 agc Exp $
+$NetBSD: distinfo,v 1.31 2016/11/08 11:59:05 mef Exp $
-SHA1 (dnsmasq-2.75.tar.gz) = 17ce713b770a54c2cc9195f6142f9c7d642f6ea4
-RMD160 (dnsmasq-2.75.tar.gz) = 266e7005253f15ce1fe750c9e1ca99f7b8623c29
-SHA512 (dnsmasq-2.75.tar.gz) = 17406223738ae24311bde4a705b4ab5836d0af16a4b75ceeb55584f683644e1c4c6c43d319221810279bed4ed2185ce4e7d2c92d4d65cdf0baaf729152284832
-Size (dnsmasq-2.75.tar.gz) = 684014 bytes
+SHA1 (dnsmasq-2.76.tar.gz) = 3cb264e2505a06705203d616883db5ee6ac00026
+RMD160 (dnsmasq-2.76.tar.gz) = ad7c271b90c8aaeb6f642eb63539cc5c52d7f9a7
+SHA512 (dnsmasq-2.76.tar.gz) = c22627a8d864671096d3b3428ec4f879b513e1f1e7f79be3ab89444c56234e748fbfa6b6b4f9e521984fea95d363f4aa2ca6243f0dfc12ffb74bed0648ae21c5
+Size (dnsmasq-2.76.tar.gz) = 697191 bytes
SHA1 (patch-dnsmasq.conf.example) = 2974c722a26400915037259c79899e8a3e95bf8f
-SHA1 (patch-src_bpf.c) = 51e1341d940304a5246ee87d5e3b07faf7d70cf1
diff --git a/net/dnsmasq/patches/patch-src_bpf.c b/net/dnsmasq/patches/patch-src_bpf.c
deleted file mode 100644
index a594cf7f7f4..00000000000
--- a/net/dnsmasq/patches/patch-src_bpf.c
+++ /dev/null
@@ -1,26 +0,0 @@
-$NetBSD: patch-src_bpf.c,v 1.6 2015/07/14 09:57:13 fhajny Exp $
-
-Add inet6 include for OS X
-Fix build on SunOS
-
---- src/bpf.c.orig 2015-06-12 20:39:11.000000000 +0000
-+++ src/bpf.c
-@@ -20,7 +20,9 @@
- #include <ifaddrs.h>
-
- #include <sys/param.h>
-+#if defined(HAVE_BSD_NETWORK)
- #include <sys/sysctl.h>
-+#endif
- #include <net/if.h>
- #include <net/route.h>
- #include <net/if_dl.h>
-@@ -29,7 +31,7 @@
- # include <net/if_var.h>
- #endif
- #include <netinet/in_var.h>
--#ifdef HAVE_IPV6
-+#if (defined(HAVE_IPV6) && !defined(HAVE_SOLARIS_NETWORK)) || defined(__APPLE__)
- # include <netinet6/in6_var.h>
- #endif
-