diff options
author | wiz <wiz@pkgsrc.org> | 2019-05-21 15:49:27 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2019-05-21 15:49:27 +0000 |
commit | 618f01fadcb287cf3623e3cf835ad439105cc03a (patch) | |
tree | 0ede65de0c75ea5ed6cd3bda3b1b67a6fa1c632d /audio | |
parent | 51d4328c03a5f50295fd8399c08f9678284ff830 (diff) | |
download | pkgsrc-618f01fadcb287cf3623e3cf835ad439105cc03a.tar.gz |
libshout: update to 2.4.2.
libshout 2.4.2 (20190429)
* Fixed handling of invalid characters in strings:
* Correctly escape mountpoint names (#2233),
* Correctly escape mountpoint names and passwords in deprecated metadata API (#2304),
* Do not allow ICE headers with invalid characters (#2302).
* Fixed and updated build system.
* Allow building libshout on Android.
* Rewrote TLS handling code and statemachine (#2244, #2298, #2301, #2303).
* Support OPTIONS for RFC 2817 TLS mode.
* Allow manual inspection of server's TLS certificate.
* Updated documentation.
Diffstat (limited to 'audio')
-rw-r--r-- | audio/libshout/Makefile | 4 | ||||
-rw-r--r-- | audio/libshout/distinfo | 12 | ||||
-rw-r--r-- | audio/libshout/patches/patch-src_tls.c | 20 |
3 files changed, 18 insertions, 18 deletions
diff --git a/audio/libshout/Makefile b/audio/libshout/Makefile index 108241ff423..7cc6ba13eb4 100644 --- a/audio/libshout/Makefile +++ b/audio/libshout/Makefile @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.13 2015/11/23 09:51:48 wiz Exp $ +# $NetBSD: Makefile,v 1.14 2019/05/21 15:49:27 wiz Exp $ -DISTNAME= libshout-2.4.1 +DISTNAME= libshout-2.4.2 CATEGORIES= audio MASTER_SITES= http://downloads.xiph.org/releases/libshout/ diff --git a/audio/libshout/distinfo b/audio/libshout/distinfo index bb8c88e9558..ad0d8d982de 100644 --- a/audio/libshout/distinfo +++ b/audio/libshout/distinfo @@ -1,7 +1,7 @@ -$NetBSD: distinfo,v 1.9 2018/03/05 09:16:28 kamil Exp $ +$NetBSD: distinfo,v 1.10 2019/05/21 15:49:27 wiz Exp $ -SHA1 (libshout-2.4.1.tar.gz) = cca5606f38e84a4c46223796b06cf7483abaa32f -RMD160 (libshout-2.4.1.tar.gz) = 4dc076d0d12161202110b4fd53954314db5e6ebf -SHA512 (libshout-2.4.1.tar.gz) = 4d4b958947e020de3330d49d39d59220fc89315f25f653a7456b9aa24ca9566fca30bb3d65e6348e79958656096b6b864ea8885157d24e55c8d84d6604670219 -Size (libshout-2.4.1.tar.gz) = 516161 bytes -SHA1 (patch-src_tls.c) = 09e5ce5f0dc7c5a3581fe98b7245ea51daced303 +SHA1 (libshout-2.4.2.tar.gz) = 01802fa4be4dce62dd65fe194077aa631a4711d5 +RMD160 (libshout-2.4.2.tar.gz) = ccb54fcba52e9a3fb77ddd0ac814ec039ffb3783 +SHA512 (libshout-2.4.2.tar.gz) = ae4b042009887de22d105eb8238f4362f6ff51bd645fd51b5a87c4b5e3f5fdc99e9f99f85c24ae2e9d23eab92b854a7e733bf9f8cc61a8362ce984f02a014e93 +Size (libshout-2.4.2.tar.gz) = 519249 bytes +SHA1 (patch-src_tls.c) = 5754acdea0f685cc8dd4fd02ab4b30b0b5ff7112 diff --git a/audio/libshout/patches/patch-src_tls.c b/audio/libshout/patches/patch-src_tls.c index 30e1161949c..7cdc8ef3499 100644 --- a/audio/libshout/patches/patch-src_tls.c +++ b/audio/libshout/patches/patch-src_tls.c @@ -1,18 +1,18 @@ -$NetBSD: patch-src_tls.c,v 1.1 2018/03/05 09:16:28 kamil Exp $ +$NetBSD: patch-src_tls.c,v 1.2 2019/05/21 15:49:27 wiz Exp $ -Support OpenSSL 1.1 +Fix build with OpenSSL-1.1. ---- src/tls.c.orig 2015-06-18 04:27:45.000000000 +0000 +--- src/tls.c.orig 2019-04-29 10:00:11.000000000 +0000 +++ src/tls.c -@@ -65,7 +65,11 @@ static inline int tls_setup(shout_tls_t +@@ -90,7 +90,11 @@ static inline int tls_setup(shout_tls_t - SSL_library_init(); - SSL_load_error_strings(); + SSL_library_init(); + SSL_load_error_strings(); +#if OPENSSL_VERSION_NUMBER >= 0x10100000 -+ OpenSSL_add_all_algorithms(); ++ OpenSSL_add_all_algorithms(); +#else - SSLeay_add_all_algorithms(); + SSLeay_add_all_algorithms(); +#endif - SSLeay_add_ssl_algorithms(); + SSLeay_add_ssl_algorithms(); - meth = TLSv1_client_method(); + meth = TLSv1_client_method(); |