diff options
author | Nirbheek Chauhan <nirbheek@centricular.com> | 2020-04-06 22:20:43 +0530 |
---|---|---|
committer | Nirbheek Chauhan <nirbheek@centricular.com> | 2020-05-11 15:27:09 +0530 |
commit | a3468728489f2fcaa7fcdaddba446468b1f00dfb (patch) | |
tree | 50908e11154332c673aa2bb74f861d93673fbeb7 /recipes/libsrtp.recipe | |
parent | 94981eb821b62bdbd2a2157c0cf4d758d918abd4 (diff) |
libsrtp.recipe: Fix build on Fedora 32 with GCC 10
Part-of: <https://gitlab.freedesktop.org/gstreamer/cerbero/-/merge_requests/472>
Diffstat (limited to 'recipes/libsrtp.recipe')
-rw-r--r-- | recipes/libsrtp.recipe | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/recipes/libsrtp.recipe b/recipes/libsrtp.recipe index 45b9be33..e4c3ee4b 100644 --- a/recipes/libsrtp.recipe +++ b/recipes/libsrtp.recipe @@ -12,7 +12,11 @@ class Recipe(recipe.Recipe): url = 'https://github.com/cisco/%(name)s/archive/v%(version)s.tar.gz' tarball_checksum = '44fd7497bce78767e96b54a11bca520adb2ad32effd515f04bce602b60a1a50b' licenses = [{License.BSD_like: ['LICENSE']}] - patches = ['libsrtp/0002-ios-Remove-flags-incompatible-with-fembed-bitcode.patch']# + patches = [ + 'libsrtp/0002-ios-Remove-flags-incompatible-with-fembed-bitcode.patch', + # https://github.com/cisco/libsrtp/pull/486 + 'libsrtp/0001-Fix-building-with-gcc-10.patch', + ] files_libs = ['libsrtp2'] files_devel = ['include/srtp2', 'lib/pkgconfig/libsrtp2.pc'] |