From 5226c0bfe92d1cb4c9108f5a54629df6ac31af82 Mon Sep 17 00:00:00 2001 From: Rosen Penev Date: Tue, 6 Nov 2018 19:10:20 -0800 Subject: [PATCH] dovecot: Fix compilation for OpenSSL without deprecated APIs Signed-off-by: Rosen Penev --- mail/dovecot/Makefile | 2 +- .../patches/100-openssl-deprecated.patch | 26 +++++++++++++++++++ 2 files changed, 27 insertions(+), 1 deletion(-) create mode 100644 mail/dovecot/patches/100-openssl-deprecated.patch diff --git a/mail/dovecot/Makefile b/mail/dovecot/Makefile index 17bccd1b2..619e906d7 100644 --- a/mail/dovecot/Makefile +++ b/mail/dovecot/Makefile @@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=dovecot PKG_VERSION:=2.3.2.1 -PKG_RELEASE:=2 +PKG_RELEASE:=3 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz PKG_SOURCE_URL:=https://www.dovecot.org/releases/2.3 diff --git a/mail/dovecot/patches/100-openssl-deprecated.patch b/mail/dovecot/patches/100-openssl-deprecated.patch new file mode 100644 index 000000000..529413f63 --- /dev/null +++ b/mail/dovecot/patches/100-openssl-deprecated.patch @@ -0,0 +1,26 @@ +diff --git a/src/lib-dcrypt/dcrypt-openssl.c b/src/lib-dcrypt/dcrypt-openssl.c +index c2dbd30..201ab40 100644 +--- a/src/lib-dcrypt/dcrypt-openssl.c ++++ b/src/lib-dcrypt/dcrypt-openssl.c +@@ -20,6 +20,7 @@ + #include + #include + #include ++#include + #include "dcrypt.h" + #include "dcrypt-private.h" + +diff --git a/src/lib-ssl-iostream/iostream-openssl-context.c b/src/lib-ssl-iostream/iostream-openssl-context.c +index e3c902e..ad6a9c1 100644 +--- a/src/lib-ssl-iostream/iostream-openssl-context.c ++++ b/src/lib-ssl-iostream/iostream-openssl-context.c +@@ -6,6 +6,9 @@ + #include "dovecot-openssl-common.h" + + #include ++#include ++#include ++#include + #include + #include + #include