diff options
author | Sören Tempel <soeren+git@soeren-tempel.net> | 2018-12-12 11:45:52 +0100 |
---|---|---|
committer | Sören Tempel <soeren+git@soeren-tempel.net> | 2018-12-12 11:49:51 +0100 |
commit | cb48ccefc55f6512811dc9ae5074c5fa2595444e (patch) | |
tree | c643a899b013a8d018dd9ec1688ac677bd6051c3 /main/msmtp/APKBUILD | |
parent | beea5a10761388f66a7a0e81815fa6ec1c529324 (diff) | |
download | aports-cb48ccefc55f6512811dc9ae5074c5fa2595444e.tar.bz2 aports-cb48ccefc55f6512811dc9ae5074c5fa2595444e.tar.xz |
main/msmtp: link against gnutls instead of openssl
Since version >= 1.8.0 using OpenSSL is discouraged, from NEWS:
- Using OpenSSL is discouraged and may not be supported in the future.
Please use GnuTLS instead. The reasons are explained here:
https://marlam.de/msmtp/news/openssl-discouraged/
The linked website states that:
I don't work on it myself anymore, and the last time somebody
sent a patch was 8 years ago.
We don't want to depend on unmaintained code pieces for TLS support.
Diffstat (limited to 'main/msmtp/APKBUILD')
-rw-r--r-- | main/msmtp/APKBUILD | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/main/msmtp/APKBUILD b/main/msmtp/APKBUILD index 160e677519..03bc99202b 100644 --- a/main/msmtp/APKBUILD +++ b/main/msmtp/APKBUILD @@ -2,13 +2,13 @@ # Maintainer: Natanael Copa <ncopa@alpinelinux.org> pkgname=msmtp pkgver=1.8.1 -pkgrel=0 +pkgrel=1 pkgdesc="SMTP client with a sendmail compatible interface" url="https://marlam.de/msmtp/" arch="all" license="GPL-3.0-or-later" options="!check" # no test suite -makedepends="gettext-dev openssl-dev" +makedepends="gettext-dev gnutls-dev" subpackages="$pkgname-doc $pkgname-lang $pkgname-vim:vim:noarch" source="https://marlam.de/msmtp/releases/$pkgname-$pkgver.tar.xz" @@ -21,7 +21,7 @@ build() { --sysconfdir=/etc \ --mandir=/usr/share/man \ --localstatedir=/var \ - --with-ssl=openssl + --with-ssl=gnutls make } |