mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-26 05:02:18 +00:00
- Update to 1.4.1
- Use --disable-sha2 on 6.4 because of broken OpenSSL in base.
This commit is contained in:
parent
47408520f5
commit
e2ae93b2ae
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=246049
@ -6,8 +6,7 @@
|
||||
#
|
||||
|
||||
PORTNAME= unbound
|
||||
PORTVERSION= 1.4.0
|
||||
PORTREVISION= 1
|
||||
PORTVERSION= 1.4.1
|
||||
CATEGORIES= dns
|
||||
MASTER_SITES= http://unbound.net/downloads/
|
||||
|
||||
@ -52,8 +51,8 @@ PYTHON= "@comment "
|
||||
|
||||
.include <bsd.port.pre.mk>
|
||||
|
||||
# A workaround for broken OpenSSL on 6.4 amd64
|
||||
.if ${ARCH} == "amd64" && ${OSVERSION} >= 604000 && ${OSVERSION} < 700000
|
||||
# broken OpenSSL on 6.4
|
||||
.if ${OSVERSION} >= 604000 && ${OSVERSION} < 700000
|
||||
CONFIGURE_ARGS+= --disable-sha2
|
||||
.endif
|
||||
|
||||
|
@ -1,3 +1,3 @@
|
||||
MD5 (unbound-1.4.0.tar.gz) = 50dcb581f8ea56328943edc2fd1d1c27
|
||||
SHA256 (unbound-1.4.0.tar.gz) = 3f67ecda501d74d8cc9e5c0aa0bcd25c4e03f09ad8e339de643333307ced9c30
|
||||
SIZE (unbound-1.4.0.tar.gz) = 4180917
|
||||
MD5 (unbound-1.4.1.tar.gz) = 1e03ef9618e4bca02005bd99bc6af75c
|
||||
SHA256 (unbound-1.4.1.tar.gz) = 2573db422d7a856a3783b96698f2d5ca18a849d0bd6f0e36eb37a4f0a65b60e2
|
||||
SIZE (unbound-1.4.1.tar.gz) = 4191123
|
||||
|
@ -1,13 +0,0 @@
|
||||
Index: validator/autotrust.c
|
||||
===================================================================
|
||||
--- validator/autotrust.c (revision 1923)
|
||||
+++ validator/autotrust.c (revision 1924)
|
||||
@@ -100,6 +100,8 @@
|
||||
autr_get_num_anchors(struct val_anchors* anchors)
|
||||
{
|
||||
size_t res = 0;
|
||||
+ if(!anchors)
|
||||
+ return 0;
|
||||
lock_basic_lock(&anchors->lock);
|
||||
if(anchors->autr)
|
||||
res = anchors->autr->probe.count;
|
@ -1,6 +1,6 @@
|
||||
etc/unbound/unbound.conf.sample
|
||||
include/unbound.h
|
||||
lib/libunbound.so.1
|
||||
lib/libunbound.so.2
|
||||
lib/libunbound.so
|
||||
lib/libunbound.la
|
||||
lib/libunbound.a
|
||||
@ -12,7 +12,7 @@ sbin/unbound-host
|
||||
%%PYTHON%%%%PYTHON_SITELIBDIR%%/_unbound.a
|
||||
%%PYTHON%%%%PYTHON_SITELIBDIR%%/_unbound.la
|
||||
%%PYTHON%%%%PYTHON_SITELIBDIR%%/_unbound.so
|
||||
%%PYTHON%%%%PYTHON_SITELIBDIR%%/_unbound.so.1
|
||||
%%PYTHON%%%%PYTHON_SITELIBDIR%%/_unbound.so.2
|
||||
%%PYTHON%%%%PYTHON_SITELIBDIR%%/unbound.py
|
||||
%%PYTHON%%%%PYTHON_SITELIBDIR%%/unboundmodule.py
|
||||
@dirrmtry etc/unbound
|
||||
|
Loading…
Reference in New Issue
Block a user