diff options
author | Steve Wills <swills@FreeBSD.org> | 2017-08-22 12:56:03 +0000 |
---|---|---|
committer | Steve Wills <swills@FreeBSD.org> | 2017-08-22 12:56:03 +0000 |
commit | 8e518cd985d826ada0083ac60b216c3b7580669b (patch) | |
tree | 03c443b337b892840a2d9bc497ac1968f60552d6 | |
parent | - Update to newer upstream snapshot (diff) |
dns/knot1: avoid UDP traffic issues
PR: 216439
Submitted by: Leo Vandewoestijne <freebsd@dns-lab.com> (maintainer)
Notes
Notes:
svn path=/head/; revision=448519
-rw-r--r-- | dns/knot1/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/dns/knot1/Makefile b/dns/knot1/Makefile index a7721b0e6b5e..5ad7b54966ae 100644 --- a/dns/knot1/Makefile +++ b/dns/knot1/Makefile @@ -3,7 +3,7 @@ PORTNAME= knot PORTVERSION= 1.6.8 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= dns ipv6 MASTER_SITES= https://secure.nic.cz/files/knot-dns/ \ http://dns-lab.com/downloads/knot-dns/ @@ -23,7 +23,9 @@ USES= alias bison libtool pkgconfig ssl tar:xz GNU_CONFIGURE= yes CONFIGURE_ARGS= --with-storage=/var/db/knot \ --with-rundir=/var/run/knot \ - --with-openssl=${OPENSSLBASE} + --with-openssl=${OPENSSLBASE} \ + --enable-recvmmsg=no + USE_LDCONFIG= yes INSTALL_TARGET= install-strip |