aboutsummaryrefslogtreecommitdiffstats
path: root/dns
diff options
context:
space:
mode:
authorerwin <erwin@FreeBSD.org>2012-11-26 22:05:56 +0800
committererwin <erwin@FreeBSD.org>2012-11-26 22:05:56 +0800
commitfeb760b3905e97a18d99452f707a3b804ca37e16 (patch)
tree8d102e4eba195fb1443551ce5c61567d1e1bf0fd /dns
parentfb35fe2c8099f8948719ce8a7245279e317211b8 (diff)
downloadfreebsd-ports-gnome-feb760b3905e97a18d99452f707a3b804ca37e16.tar.gz
freebsd-ports-gnome-feb760b3905e97a18d99452f707a3b804ca37e16.tar.zst
freebsd-ports-gnome-feb760b3905e97a18d99452f707a3b804ca37e16.zip
Update to 1.1.2
Bugfixes: * Fixed crash on reload when config contained duplicate zones. * Fixed scheduling of transfers. * Fixed debug message. PR: 173422 Submitted by: Leo Vandewoestijne <freebsd@dns-lab.com> (maintainer) Feature safe: yes
Diffstat (limited to 'dns')
-rw-r--r--dns/knot/Makefile5
-rw-r--r--dns/knot/distinfo4
-rw-r--r--dns/knot/files/patch-src__config.h.in11
-rw-r--r--dns/knot/files/patch-src__knot__server__dthreads.h14
4 files changed, 5 insertions, 29 deletions
diff --git a/dns/knot/Makefile b/dns/knot/Makefile
index 619645e9287c..dee6e54f08f3 100644
--- a/dns/knot/Makefile
+++ b/dns/knot/Makefile
@@ -2,7 +2,7 @@
# $FreeBSD$
PORTNAME= knot
-PORTVERSION= 1.1.0
+PORTVERSION= 1.1.2
CATEGORIES= dns ipv6
MASTER_SITES= http://public.nic.cz/files/knot-dns/ \
http://www.dns-lab.com/downloads/knot-dns/
@@ -32,7 +32,8 @@ SUB_FILES= pkg-message
USE_RC_SUBR= ${PORTNAME}d
-MAN8= knot.conf.8 knotc.8 knotd.8
+MAN8= knotc.8 knotd.8
+MAN5= knot.conf.5
INFO= knot
diff --git a/dns/knot/distinfo b/dns/knot/distinfo
index e1def1dbb52c..ebe83e033d70 100644
--- a/dns/knot/distinfo
+++ b/dns/knot/distinfo
@@ -1,2 +1,2 @@
-SHA256 (knot-1.1.0.tar.gz) = 6b1a429d39abb8378e2c62750e04d04a67ef89daae52fefb5c93b881c001446e
-SIZE (knot-1.1.0.tar.gz) = 1180069
+SHA256 (knot-1.1.2.tar.gz) = a44457257d49c58ce444cdbf74062bb4467144fe8769a8d5fcf9ef691e402bdb
+SIZE (knot-1.1.2.tar.gz) = 1198555
diff --git a/dns/knot/files/patch-src__config.h.in b/dns/knot/files/patch-src__config.h.in
deleted file mode 100644
index c48f7aa9c3f8..000000000000
--- a/dns/knot/files/patch-src__config.h.in
+++ /dev/null
@@ -1,11 +0,0 @@
---- ./src/config.h.in.orig 2012-05-17 20:44:57.000000000 +0900
-+++ ./src/config.h.in 2012-05-17 20:46:19.000000000 +0900
-@@ -362,3 +362,8 @@
-
- /* Define as `fork' if `vfork' does not work. */
- #undef vfork
-+
-+/* Define cpu_set_t because <sys/cpuset.h> does not define. */
-+#if defined(__FreeBSD__)
-+#define cpu_set_t cpuset_t
-+#endif
diff --git a/dns/knot/files/patch-src__knot__server__dthreads.h b/dns/knot/files/patch-src__knot__server__dthreads.h
deleted file mode 100644
index 1512ee3f230d..000000000000
--- a/dns/knot/files/patch-src__knot__server__dthreads.h
+++ /dev/null
@@ -1,14 +0,0 @@
---- ./src/knot/server/dthreads.h.orig 2012-05-17 18:14:06.000000000 +0900
-+++ ./src/knot/server/dthreads.h 2012-05-17 20:44:41.000000000 +0900
-@@ -40,6 +40,11 @@
- #define _KNOTD_DTHREADS_H_
-
- #include <pthread.h>
-+#ifdef HAVE_PTHREAD_SETAFFINITY_NP
-+# if defined(__FreeBSD__)
-+#include <pthread_np.h>
-+# endif
-+#endif
-
- /* Forward decls */
- struct dthread_t; \ No newline at end of file