diff options
author | Nirbheek Chauhan <nirbheek@centricular.com> | 2020-06-15 18:16:09 +0530 |
---|---|---|
committer | Nirbheek Chauhan <nirbheek@centricular.com> | 2020-06-15 20:02:00 +0530 |
commit | 8f16daf943b4abcaae9eeda415255e70e53f6656 (patch) | |
tree | e401be9c002ccea2b6fa04f920a67baefdc5e221 /recipes/libnice.recipe | |
parent | 7b3dd464eb4aedc2f37b7271d47b7f911df8ba80 (diff) |
libnice.recipe: Bump to 0.1.17
Part-of: <https://gitlab.freedesktop.org/gstreamer/cerbero/-/merge_requests/512>
Diffstat (limited to 'recipes/libnice.recipe')
-rw-r--r-- | recipes/libnice.recipe | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/recipes/libnice.recipe b/recipes/libnice.recipe index 608f8aa8..c134bbe3 100644 --- a/recipes/libnice.recipe +++ b/recipes/libnice.recipe @@ -3,11 +3,11 @@ from cerbero.tools.libtool import LibtoolLibrary class Recipe(recipe.Recipe): name = 'libnice' - version = '0.1.16' + version = '0.1.17' stype = SourceType.TARBALL btype = BuildType.MESON url = 'https://nice.freedesktop.org/releases/%(name)s-%(version)s.tar.gz' - tarball_checksum = '06b678066f94dde595a4291588ed27acd085ee73775b8c4e8399e28c01eeefdf' + tarball_checksum = '1952a0dec58b5c9ccc3f25193df4e2d1244cb382cac611b71e25afcd7b069526' # Either LGPL-2.1+ or MPL-1.1 licenses = [License.LGPLv2_1Plus, License.MPLv1_1] meson_options = {'tests' : 'disabled', @@ -18,6 +18,11 @@ class Recipe(recipe.Recipe): # openssl on Linux use_system_libs = True + patches = [ + # https://gitlab.freedesktop.org/libnice/libnice/-/merge_requests/150 + 'libnice/0001-stund-Use-lowercase-winsock2.h.patch' + ] + files_bins = ['stunbdc', 'stund'] files_libs = ['libnice'] files_devel = [ |