From 874b65b3b06385a03e5d4414a0cdad1f27de3b5b Mon Sep 17 00:00:00 2001 From: Eric Luehrsen Date: Tue, 12 Mar 2019 20:02:34 -0400 Subject: [PATCH] unbound: update to 1.9.1 and remove upstream patches Signed-off-by: Eric Luehrsen --- net/unbound/Makefile | 4 +- .../patches/200-openssl-deprecated.patch | 34 ---------------- net/unbound/patches/300-fix-ssl-err-log.patch | 39 ------------------- 3 files changed, 2 insertions(+), 75 deletions(-) delete mode 100644 net/unbound/patches/200-openssl-deprecated.patch delete mode 100644 net/unbound/patches/300-fix-ssl-err-log.patch diff --git a/net/unbound/Makefile b/net/unbound/Makefile index d21551d71..030c5ff1e 100644 --- a/net/unbound/Makefile +++ b/net/unbound/Makefile @@ -8,7 +8,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=unbound -PKG_VERSION:=1.9.0 +PKG_VERSION:=1.9.1 PKG_RELEASE:=1 PKG_LICENSE:=BSD-3-Clause @@ -17,7 +17,7 @@ PKG_MAINTAINER:=Eric Luehrsen PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz PKG_SOURCE_URL:=http://www.unbound.net/downloads -PKG_HASH:=415af94b8392bc6b2c52e44ac8f17935cc6ddf2cc81edfb47c5be4ad205ab917 +PKG_HASH:=c3c0bf9b86ccba4ca64f93dd4fe7351308ab54293f297a67de5a8914c1dc59c5 PKG_BUILD_PARALLEL:=1 PKG_FIXUP:=autoreconf diff --git a/net/unbound/patches/200-openssl-deprecated.patch b/net/unbound/patches/200-openssl-deprecated.patch deleted file mode 100644 index 7fa1ea86b..000000000 --- a/net/unbound/patches/200-openssl-deprecated.patch +++ /dev/null @@ -1,34 +0,0 @@ ---- a/util/net_help.c -+++ b/util/net_help.c -@@ -1049,10 +1049,10 @@ void* outgoing_ssl_fd(void* sslctx, int - static lock_basic_type *ub_openssl_locks = NULL; - - /** callback that gets thread id for openssl */ --static unsigned long --ub_crypto_id_cb(void) -+static void -+ub_crypto_id_cb(CRYPTO_THREADID *id) - { -- return (unsigned long)log_thread_get(); -+ CRYPTO_THREADID_set_numeric(id, (unsigned long)log_thread_get()); - } - - static void -@@ -1078,7 +1078,7 @@ int ub_openssl_lock_init(void) - for(i=0; iname, p->str); - return 0; - } --#ifndef HAVE_SSL_SET1_HOST -+#if ! defined(HAVE_SSL_SET1_HOST) && ! defined(HAVE_X509_VERIFY_PARAM_SET1_HOST) - if(tls_auth_name) - log_err("no name verification functionality in " - "ssl library, ignored name for %s", p->str); -Index: iterator/iter_hints.c -=================================================================== ---- a/iterator/iter_hints.c (revision 5105) -+++ b/iterator/iter_hints.c (working copy) -@@ -252,7 +252,7 @@ - s->name, p->str); - return 0; - } --#ifndef HAVE_SSL_SET1_HOST -+#if ! defined(HAVE_SSL_SET1_HOST) && ! defined(HAVE_X509_VERIFY_PARAM_SET1_HOST) - if(auth_name) - log_err("no name verification functionality in " - "ssl library, ignored name for %s", p->str);