summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--net/dnsmasq/Makefile5
-rw-r--r--net/dnsmasq/distinfo12
-rw-r--r--net/dnsmasq/patches/patch-src_bpf.c24
-rw-r--r--net/dnsmasq/patches/patch-src_rfc1035.c2
4 files changed, 21 insertions, 22 deletions
diff --git a/net/dnsmasq/Makefile b/net/dnsmasq/Makefile
index 18824b19d42..ab06c40ed4d 100644
--- a/net/dnsmasq/Makefile
+++ b/net/dnsmasq/Makefile
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.28 2015/04/29 12:53:02 roy Exp $
+# $NetBSD: Makefile,v 1.29 2015/05/06 06:08:48 mef Exp $
-DISTNAME= dnsmasq-2.67
-PKGREVISION= 3
+DISTNAME= dnsmasq-2.72
CATEGORIES= net
MASTER_SITES= http://www.thekelleys.org.uk/dnsmasq/
diff --git a/net/dnsmasq/distinfo b/net/dnsmasq/distinfo
index 31b73025e25..51f7492c1d6 100644
--- a/net/dnsmasq/distinfo
+++ b/net/dnsmasq/distinfo
@@ -1,8 +1,8 @@
-$NetBSD: distinfo,v 1.26 2015/04/29 12:53:02 roy Exp $
+$NetBSD: distinfo,v 1.27 2015/05/06 06:08:48 mef Exp $
-SHA1 (dnsmasq-2.67.tar.gz) = 550c7ea2bef2a74a089c664d95fc52420a8cb726
-RMD160 (dnsmasq-2.67.tar.gz) = c2f3f9d7978bc9eddbcb77add54acdf3c8103fa8
-Size (dnsmasq-2.67.tar.gz) = 600838 bytes
+SHA1 (dnsmasq-2.72.tar.gz) = c2dc54b142ec5676d6e22951bc5b61863b0503fe
+RMD160 (dnsmasq-2.72.tar.gz) = bac635ea7c93e2864fb369d3e346a65222e70ce2
+Size (dnsmasq-2.72.tar.gz) = 654739 bytes
SHA1 (patch-dnsmasq.conf.example) = 2974c722a26400915037259c79899e8a3e95bf8f
-SHA1 (patch-src_bpf.c) = 5a355bc116d2853b8e202ea31847a9e36cd000b0
-SHA1 (patch-src_rfc1035.c) = 3b3a2fa2c83db937f46e4ab2a7e06f0c191f62e9
+SHA1 (patch-src_bpf.c) = 82b1fcbb20122684193fe0718bff93ab20af0463
+SHA1 (patch-src_rfc1035.c) = 08cd37ee864931cf664a2e008ce475898a2757df
diff --git a/net/dnsmasq/patches/patch-src_bpf.c b/net/dnsmasq/patches/patch-src_bpf.c
index 573e919b707..9622cead880 100644
--- a/net/dnsmasq/patches/patch-src_bpf.c
+++ b/net/dnsmasq/patches/patch-src_bpf.c
@@ -1,17 +1,15 @@
-$NetBSD: patch-src_bpf.c,v 1.4 2015/04/22 14:57:22 abs Exp $
+$NetBSD: patch-src_bpf.c,v 1.5 2015/05/06 06:08:48 mef Exp $
Add inet6 include for OS X
---- src/bpf.c.orig 2015-01-02 04:23:05.000000000 +0000
-+++ src/bpf.c
-@@ -19,6 +19,10 @@
- #if defined(HAVE_BSD_NETWORK) || defined(HAVE_SOLARIS_NETWORK)
- #include <ifaddrs.h>
+--- src/bpf.c.orig 2014-09-24 06:16:15.000000000 +0900
++++ src/bpf.c 2015-05-06 15:01:56.000000000 +0900
+@@ -29,7 +29,7 @@
+ # include <net/if_var.h>
+ #endif
+ #include <netinet/in_var.h>
+-#ifdef HAVE_IPV6
++#if defined(HAVE_IPV6) || defined(__APPLE__)
+ # include <netinet6/in6_var.h>
+ #endif
-+#if defined(__APPLE__)
-+#include <netinet6/in6_var.h>
-+#endif
-+
- #if defined(HAVE_BSD_NETWORK) && !defined(__APPLE__)
- #include <sys/param.h>
- #include <sys/sysctl.h>
diff --git a/net/dnsmasq/patches/patch-src_rfc1035.c b/net/dnsmasq/patches/patch-src_rfc1035.c
index 9d502b9b435..ab9be83cf51 100644
--- a/net/dnsmasq/patches/patch-src_rfc1035.c
+++ b/net/dnsmasq/patches/patch-src_rfc1035.c
@@ -1,3 +1,5 @@
+$NetBSD: patch-src_rfc1035.c,v 1.2 2015/05/06 06:08:48 mef Exp $
+
From ad4a8ff7d9097008d7623df8543df435bfddeac8 Mon Sep 17 00:00:00 2001
From: Simon Kelley <simon@thekelleys.org.uk>
Date: Thu, 9 Apr 2015 21:48:00 +0100