diff options
Diffstat (limited to 'main/libshout/01-libshout-tls-compile-with-OpenSSL-1.1.0.patch')
-rw-r--r-- | main/libshout/01-libshout-tls-compile-with-OpenSSL-1.1.0.patch | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/main/libshout/01-libshout-tls-compile-with-OpenSSL-1.1.0.patch b/main/libshout/01-libshout-tls-compile-with-OpenSSL-1.1.0.patch deleted file mode 100644 index 33d00187e9..0000000000 --- a/main/libshout/01-libshout-tls-compile-with-OpenSSL-1.1.0.patch +++ /dev/null @@ -1,25 +0,0 @@ -diff --git a/src/tls.c b/src/tls.c -index aed5bfc..0d55861 100644 ---- a/src/tls.c -+++ b/src/tls.c -@@ -86,14 +86,17 @@ shout_tls_t *shout_tls_new(shout_t *self, sock_t socket) - - static inline int tls_setup(shout_tls_t *tls) - { -- SSL_METHOD *meth; -- -+ const SSL_METHOD *meth; -+#if (OPENSSL_VERSION_NUMBER < 0x10100000L) || defined(LIBRESSL_VERSION_NUMBER) - SSL_library_init(); - SSL_load_error_strings(); - SSLeay_add_all_algorithms(); - SSLeay_add_ssl_algorithms(); - -- meth = TLSv1_client_method(); -+ meth = SSLv23_client_method(); -+else -+ meth = TLS_client_method(); -+#endif - if (!meth) - goto error; - |