diff options
author | Leo <thinkabit.ukim@gmail.com> | 2019-06-08 05:26:34 -0300 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2019-06-12 15:11:55 +0200 |
commit | f2c041ba3a38367b28c8ebfc0a25395ab1cb0dcb (patch) | |
tree | 92d75da0e33fa053fc08f3414c0b8ed0291f195c /main/libshout/01-libshout-tls-compile-with-OpenSSL-1.1.0.patch | |
parent | 5b043bf056b9af4ae6a50428a460350fa4942bc3 (diff) | |
download | aports-f2c041ba3a38367b28c8ebfc0a25395ab1cb0dcb.tar.bz2 aports-f2c041ba3a38367b28c8ebfc0a25395ab1cb0dcb.tar.xz |
main/libshout: fix license fix url remove unused patch
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; - |