summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNirbheek Chauhan <nirbheek@centricular.com>2021-07-14 16:15:36 +0530
committerNirbheek Chauhan <nirbheek@centricular.com>2022-01-25 14:46:04 +0530
commit69fe8b68410c57d2d120879697469018cceb82f3 (patch)
treefcda8782a6789acd38c2824eb8b94589eb37cae2
parent82714e19d94ddf67a13c18c7719971c8226aca03 (diff)
srt.recipe: Bump to 1.4.3, fixes build on Fedora 34
Part-of: <https://gitlab.freedesktop.org/gstreamer/cerbero/-/merge_requests/784>
-rw-r--r--recipes/srt.recipe7
1 files changed, 3 insertions, 4 deletions
diff --git a/recipes/srt.recipe b/recipes/srt.recipe
index 6dc77534..c359b613 100644
--- a/recipes/srt.recipe
+++ b/recipes/srt.recipe
@@ -5,18 +5,17 @@ from cerbero.tools.libtool import LibtoolLibrary
class Recipe(recipe.Recipe):
name = 'srt'
- version = '1.4.1'
+ version = '1.4.3'
url = 'https://github.com/Haivision/srt/archive/v%(version)s.tar.gz'
- tarball_checksum = 'e80ca1cd0711b9c70882c12ec365cda1ba852e1ce8acd43161a21a04de0cbf14'
+ tarball_checksum = 'c06e05664c71d635c37207a2b5a444f2c4a95950a3548402b3e0c524f735b33d'
licenses = [License.MPLv2]
stype = SourceType.TARBALL
btype = BuildType.CMAKE
+ # CXX11 builds stuff we don't need, and causes a build failure on mingw
configure_options = '-DUSE_ENCLIB=openssl -DENABLE_CXX11=OFF'
# openssl on Linux
use_system_libs = True
- patches = ['srt/0001-Allow-using-public-API-when-building-with-MSVC.patch']
-
files_libs = ['libsrt']
files_devel = ['include/srt', 'lib/pkgconfig/srt.pc']