diff options
author | Bernard Spil <brnrd@FreeBSD.org> | 2021-10-23 17:08:00 +0000 |
---|---|---|
committer | Bernard Spil <brnrd@FreeBSD.org> | 2021-10-23 17:08:00 +0000 |
commit | 0c86d31161b9f576267e5d9cea2f5e18bf89fd2c (patch) | |
tree | dfa89b76fe4434381a6d3e7dd254da61dc85dd8a /mail/fetchmail | |
parent | 45f4d6c66c67a060e3854ddfd9e9982e7ec431a2 (diff) | |
download | freebsd-ports-0c86d31161b9f576267e5d9cea2f5e18bf89fd2c.zip |
mail/fetchmail: Fix build with LibreSSL 3.4
PR: 259214
Approved by: Corey Halpin <chalpin cs wisc edu> (maintainer)
Diffstat (limited to 'mail/fetchmail')
-rw-r--r-- | mail/fetchmail/files/patch-LibreSSL | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/mail/fetchmail/files/patch-LibreSSL b/mail/fetchmail/files/patch-LibreSSL new file mode 100644 index 000000000000..15bb350256f2 --- /dev/null +++ b/mail/fetchmail/files/patch-LibreSSL @@ -0,0 +1,14 @@ +$OpenBSD: patch-tls-aux_h,v 1.1 2021/07/29 10:44:07 sthen Exp $ + +Index: tls-aux.h +--- tls-aux.h.orig ++++ tls-aux.h +@@ -8,7 +8,7 @@ + #ifdef SSL_ENABLE + #include <openssl/opensslv.h> + +-# if defined(LIBRESSL_VERSION_NUMBER) || OPENSSL_VERSION_NUMBER < 0x1010000fL ++# if OPENSSL_VERSION_NUMBER < 0x1010000fL + # undef OSSL110_API + # else + # define OSSL110_API 1 |