From 026cf0d9cc006b6306d99643848e2998ce600e13 Mon Sep 17 00:00:00 2001 From: Henrik Grimler Date: Sat, 1 Aug 2020 05:27:31 +0200 Subject: [PATCH] msmtp: use gnutls instead of openssl The openssl code is unmaintained [1] and I get errors about certificate verification failure on one of my emails ("TLS certificate verification failed: the certificate owner does not match hostname"). With gnutls everything works. [1] https://marlam.de/msmtp/news/openssl-discouraged --- packages/msmtp/build.sh | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/packages/msmtp/build.sh b/packages/msmtp/build.sh index 8006cc97a..e831ea0cc 100644 --- a/packages/msmtp/build.sh +++ b/packages/msmtp/build.sh @@ -2,12 +2,8 @@ TERMUX_PKG_HOMEPAGE=https://marlam.de/msmtp/ TERMUX_PKG_DESCRIPTION="Lightweight SMTP client" TERMUX_PKG_LICENSE="GPL-3.0" TERMUX_PKG_VERSION=1.8.11 -TERMUX_PKG_REVISION=3 +TERMUX_PKG_REVISION=4 TERMUX_PKG_SRCURL=https://marlam.de/msmtp/releases/msmtp-$TERMUX_PKG_VERSION.tar.xz TERMUX_PKG_SHA256=f25f0fa177ce9e0ad65c127e790a37f35fb64fee9e33d90345844c5c86780e60 -TERMUX_PKG_DEPENDS="openssl, libidn2" -TERMUX_PKG_EXTRA_CONFIGURE_ARGS="--with-tls=openssl" +TERMUX_PKG_DEPENDS="libgnutls, libidn2" -termux_step_pre_configure() { - autoreconf -if -}