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
This commit is contained in:
parent
34a224b65d
commit
5ad4e4b3bb
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=307785
4 changed files with 5 additions and 29 deletions
|
@ -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
|
||||
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
|
@ -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;
|
Loading…
Reference in a new issue