aboutsummaryrefslogtreecommitdiffstats
path: root/main/irssi/libressl-2.7.patch
diff options
context:
space:
mode:
Diffstat (limited to 'main/irssi/libressl-2.7.patch')
-rw-r--r--main/irssi/libressl-2.7.patch22
1 files changed, 0 insertions, 22 deletions
diff --git a/main/irssi/libressl-2.7.patch b/main/irssi/libressl-2.7.patch
deleted file mode 100644
index f3705805f1..0000000000
--- a/main/irssi/libressl-2.7.patch
+++ /dev/null
@@ -1,22 +0,0 @@
-diff --git a/src/core/network-openssl.c b/src/core/network-openssl.c
-index 9fddf07..e6de608 100644
---- a/src/core/network-openssl.c
-+++ b/src/core/network-openssl.c
-@@ -35,7 +35,7 @@
- #include <openssl/err.h>
-
- /* OpenSSL 1.1.0 introduced some backward-incompatible changes to the api */
--#if (OPENSSL_VERSION_NUMBER >= 0x10100000L) && !defined(LIBRESSL_VERSION_NUMBER)
-+#if (OPENSSL_VERSION_NUMBER >= 0x10100000L)
- /* The two functions below could be already defined if OPENSSL_API_COMPAT is
- * below the 1.1.0 version so let's do a clean start */
- #undef X509_get_notBefore
-@@ -47,7 +47,7 @@
-
- /* OpenSSL 1.1.0 also introduced some useful additions to the api */
- #if (OPENSSL_VERSION_NUMBER >= 0x10002000L)
--#if (OPENSSL_VERSION_NUMBER < 0x10100000L) || defined (LIBRESSL_VERSION_NUMBER)
-+#if (OPENSSL_VERSION_NUMBER < 0x10100000L)
- static int X509_STORE_up_ref(X509_STORE *vfy)
- {
- int n;