summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Mair-Keimberger <mmk@levelnine.at>2021-03-21 13:34:21 +0100
committerJoonas Niilola <juippis@gentoo.org>2021-03-22 16:03:44 +0200
commitcbdd192532694a211f8e50b6c06d5ab5f5e79a2c (patch)
tree41e9a2571b07bf3b47040be451dd8ececb023aef /app-admin/conserver
parentdev-libs/libindicator: remove unused patch (diff)
downloadgentoo-cbdd192532694a211f8e50b6c06d5ab5f5e79a2c.tar.gz
gentoo-cbdd192532694a211f8e50b6c06d5ab5f5e79a2c.tar.bz2
gentoo-cbdd192532694a211f8e50b6c06d5ab5f5e79a2c.zip
app-admin/conserver: remove unused patch
Package-Manager: Portage-3.0.17, Repoman-3.0.2 Signed-off-by: Michael Mair-Keimberger <mmk@levelnine.at> Closes: https://github.com/gentoo/gentoo/pull/20031 Signed-off-by: Joonas Niilola <juippis@gentoo.org>
Diffstat (limited to 'app-admin/conserver')
-rw-r--r--app-admin/conserver/files/8.2.4-libressl.patch27
1 files changed, 0 insertions, 27 deletions
diff --git a/app-admin/conserver/files/8.2.4-libressl.patch b/app-admin/conserver/files/8.2.4-libressl.patch
deleted file mode 100644
index 9151d697e756..000000000000
--- a/app-admin/conserver/files/8.2.4-libressl.patch
+++ /dev/null
@@ -1,27 +0,0 @@
-From d3ffe500c934573115e313ac01b8fab5cb4d2e9f Mon Sep 17 00:00:00 2001
-From: Stuart Henderson <stu@spacehopper.org>
-Date: Wed, 27 Mar 2019 23:29:31 +0000
-Subject: [PATCH] fix TLS with LibreSSL, it doesn't have :@SECLEVEL=0
-
----
- conserver/cutil.h | 4 +++-
- 1 file changed, 3 insertions(+), 1 deletion(-)
-
-diff --git a/conserver/cutil.h b/conserver/cutil.h
-index d21abc5..db4df7f 100644
---- a/conserver/cutil.h
-+++ b/conserver/cutil.h
-@@ -12,10 +12,12 @@
- # include <openssl/err.h>
- # if OPENSSL_VERSION_NUMBER < 0x10100000L
- # define TLS_method SSLv23_method
-+# endif/* OPENSSL_VERSION_NUMBER < 0x10100000L */
-+# if (OPENSSL_VERSION_NUMBER < 0x10100000L) || defined(LIBRESSL_VERSION_NUMBER)
- # define CIPHER_SEC0
- # else
- # define CIPHER_SEC0 ":@SECLEVEL=0"
--# endif/* OPENSSL_VERSION_NUMBER < 0x10100000L */
-+# endif/* OPENSSL_VERSION_NUMBER < 0x10100000L || defined(LIBRESSL_VERSION_NUMBER) */
- #endif
- #if HAVE_GSSAPI
- # include <gssapi/gssapi.h>