aboutsummaryrefslogtreecommitdiff
path: root/audio/libshout
diff options
context:
space:
mode:
authorSunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org>2019-06-08 20:28:27 +0000
committerSunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org>2019-06-08 20:28:27 +0000
commit7d6d0871d2768431f9d27ad42cfe7943f47eab6e (patch)
tree37adb1f3352b235e8c59d0bbc61be0a01074a0f6 /audio/libshout
parent924dbb3878a97662f9a05435c99010e4e71d5574 (diff)
downloadports-7d6d0871d2768431f9d27ad42cfe7943f47eab6e.tar.gz
ports-7d6d0871d2768431f9d27ad42cfe7943f47eab6e.zip
Update to 2.4.3
Notes
Notes: svn path=/head/; revision=503751
Diffstat (limited to 'audio/libshout')
-rw-r--r--audio/libshout/Makefile2
-rw-r--r--audio/libshout/distinfo6
-rw-r--r--audio/libshout/files/patch-src-tls.c18
3 files changed, 4 insertions, 22 deletions
diff --git a/audio/libshout/Makefile b/audio/libshout/Makefile
index 69ab4156d7ab..9b275e19682c 100644
--- a/audio/libshout/Makefile
+++ b/audio/libshout/Makefile
@@ -2,7 +2,7 @@
# $FreeBSD$
PORTNAME= libshout
-PORTVERSION= 2.4.2
+PORTVERSION= 2.4.3
CATEGORIES= audio net
MASTER_SITES= https://downloads.xiph.org/releases/libshout/ \
https://svn.xiph.org/releases/libshout/ \
diff --git a/audio/libshout/distinfo b/audio/libshout/distinfo
index 1c716963f93d..58d144646d03 100644
--- a/audio/libshout/distinfo
+++ b/audio/libshout/distinfo
@@ -1,3 +1,3 @@
-TIMESTAMP = 1557673776
-SHA256 (libshout-2.4.2.tar.gz) = d51ba4003ca2b81669d37430beaa584e868fe46f46b7a6fef0d25c717156fc61
-SIZE (libshout-2.4.2.tar.gz) = 519249
+TIMESTAMP = 1559998007
+SHA256 (libshout-2.4.3.tar.gz) = 0d8af55d1141bf90710bcd41a768c9cc5adb251502a0af1dd22c8da215d40dfe
+SIZE (libshout-2.4.3.tar.gz) = 529563
diff --git a/audio/libshout/files/patch-src-tls.c b/audio/libshout/files/patch-src-tls.c
deleted file mode 100644
index f5ea3bdf3cbf..000000000000
--- a/audio/libshout/files/patch-src-tls.c
+++ /dev/null
@@ -1,18 +0,0 @@
---- src/tls.c.orig 2019-04-29 10:00:11 UTC
-+++ src/tls.c
-@@ -88,10 +88,15 @@ static inline int tls_setup(shout_tls_t
- {
- SSL_METHOD *meth;
-
-+#if OPENSSL_VERSION_NUMBER < 0x10100000L
- SSL_library_init();
- SSL_load_error_strings();
- SSLeay_add_all_algorithms();
- SSLeay_add_ssl_algorithms();
-+#else
-+ OPENSSL_init_ssl(OPENSSL_INIT_LOAD_SSL_STRINGS, NULL);
-+ OPENSSL_init_crypto(OPENSSL_INIT_LOAD_CRYPTO_STRINGS, NULL);
-+#endif
-
- meth = TLSv1_client_method();
- if (!meth)