diff options
author | Nirbheek Chauhan <nirbheek@centricular.com> | 2022-09-23 04:55:45 +0530 |
---|---|---|
committer | GStreamer Marge Bot <gitlab-merge-bot@gstreamer-foundation.org> | 2022-09-23 05:24:42 +0000 |
commit | 13bf3e4eea142d4526238c9a5f74b60dac1c46b7 (patch) | |
tree | 64be1c7379875d51c128c98c6b136b3c0adf4597 | |
parent | d6ad6bdd831976217d8865f6b6ffb2d453831a68 (diff) |
Add gst-rtsp-server library to the macOS framework
As requested by users:
https://gitlab.freedesktop.org/gstreamer/cerbero/-/issues/338#note_1563422
Part-of: <https://gitlab.freedesktop.org/gstreamer/cerbero/-/merge_requests/940>
-rw-r--r-- | recipes/gstreamer-1.0-osx-framework.recipe | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/recipes/gstreamer-1.0-osx-framework.recipe b/recipes/gstreamer-1.0-osx-framework.recipe index 60548f8d..5deeb614 100644 --- a/recipes/gstreamer-1.0-osx-framework.recipe +++ b/recipes/gstreamer-1.0-osx-framework.recipe @@ -9,7 +9,7 @@ class Recipe(recipe.Recipe): version = '0.1' stype = SourceType.CUSTOM btype = BuildType.CUSTOM - deps = ['pkg-config', 'gstreamer-1.0', 'gst-plugins-base-1.0', 'gst-plugins-bad-1.0'] + deps = ['pkg-config', 'gstreamer-1.0', 'gst-plugins-base-1.0', 'gst-plugins-bad-1.0', 'gst-rtsp-server-1.0'] files_library = ['lib/GStreamer'] @@ -27,10 +27,6 @@ class Recipe(recipe.Recipe): # Not a gstreamer library pkgconfig file if 'gstreamer-plugins-' in gstlib: continue - # The gst-rtsp-server library should not be in this; only core, - # base, and bad libraries are allowed. - if 'rtsp-server' in gstlib: - continue gstlibs.append(gstlib) return gstlibs |