diff options
author | W. Michael Petullo <mike@flyn.org> | 2018-11-20 21:32:34 -0500 |
---|---|---|
committer | W. Michael Petullo <mike@flyn.org> | 2018-11-20 21:32:34 -0500 |
commit | 60c34288e441d349c5d573c65ea8e65a36f0dfa0 (patch) | |
tree | f0e650d5aeee8d3d911b01ec0a79879b4293b463 | |
parent | 9d4a067599f84b0ef25599a32e996f27e5cd3791 (diff) |
cyrus-sasl: Update to 2.1.27
Signed-off-by: W. Michael Petullo <mike@flyn.org>
-rw-r--r-- | libs/cyrus-sasl/Makefile | 8 | ||||
-rw-r--r-- | libs/cyrus-sasl/patches/010-openssl-deprecated.patch | 39 |
2 files changed, 3 insertions, 44 deletions
diff --git a/libs/cyrus-sasl/Makefile b/libs/cyrus-sasl/Makefile index 2be4c6848..2a670e9b6 100644 --- a/libs/cyrus-sasl/Makefile +++ b/libs/cyrus-sasl/Makefile @@ -8,16 +8,14 @@ include $(TOPDIR)/rules.mk PKG_NAME:=cyrus-sasl -PKG_VERSION_BASE:=2.1.27 -PKG_VERSION:=$(PKG_VERSION_BASE)-rc8 -PKG_RELEASE:=2 +PKG_VERSION:=2.1.27 +PKG_RELEASE:=1 PKG_MAINTAINER:=W. Michael Petullo <mike@flyn.org> PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz PKG_SOURCE_URL:=https://www.cyrusimap.org/releases/ -PKG_HASH:=8d95201b4f2c2ec4c0ebafd01c00d7d1e0f2513352b3f850ae2723a90c6c6789 -PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION_BASE) +PKG_HASH:=26866b1549b00ffd020f188a43c258017fa1c382b3ddadd8201536f72efb05d5 PKG_LICENSE:=BSD-4c BSD PKG_LICENSE_FILES:=COPYING cmulocal/COPYING saslauthd/COPYING diff --git a/libs/cyrus-sasl/patches/010-openssl-deprecated.patch b/libs/cyrus-sasl/patches/010-openssl-deprecated.patch deleted file mode 100644 index 1df2ee687..000000000 --- a/libs/cyrus-sasl/patches/010-openssl-deprecated.patch +++ /dev/null @@ -1,39 +0,0 @@ -From d2a7592b9884049d3da384c5c37f77629ce9ac56 Mon Sep 17 00:00:00 2001 -From: Rosen Penev <rosenp@gmail.com> -Date: Tue, 6 Nov 2018 18:58:30 -0800 -Subject: [PATCH] openssl: Fix compilation without deprecated APIs - -bn.h was missing. Including engine.h does not work if OpenSSL was built -without it. cyrus-sasl makes no use of it anyway. ---- - common/crypto-compat.c | 1 - - common/crypto-compat.h | 1 + - 2 files changed, 1 insertion(+), 1 deletion(-) - -diff --git a/common/crypto-compat.c b/common/crypto-compat.c -index f4717b6..8195879 100644 ---- a/common/crypto-compat.c -+++ b/common/crypto-compat.c -@@ -12,7 +12,6 @@ - #if defined(HAVE_OPENSSL) && (OPENSSL_VERSION_NUMBER < 0x10100000L) - - #include <string.h> --#include <openssl/engine.h> - - static void *OPENSSL_zalloc(size_t num) - { -diff --git a/common/crypto-compat.h b/common/crypto-compat.h -index 73424ad..d3ffdca 100644 ---- a/common/crypto-compat.h -+++ b/common/crypto-compat.h -@@ -15,6 +15,7 @@ - #include <openssl/dh.h> - #include <openssl/evp.h> - #include <openssl/hmac.h> -+#include <openssl/bn.h> - - int RSA_set0_key(RSA *r, BIGNUM *n, BIGNUM *e, BIGNUM *d); - int RSA_set0_factors(RSA *r, BIGNUM *p, BIGNUM *q); --- -2.19.1 - |