summaryrefslogtreecommitdiff
path: root/recipes/gst-plugins-ugly-1.0.recipe
diff options
context:
space:
mode:
authorNirbheek Chauhan <nirbheek@centricular.com>2020-09-30 20:01:48 +0530
committerNirbheek Chauhan <nirbheek@centricular.com>2020-09-30 22:22:19 +0530
commit4bebbb908bf1850ce2e162891a833f2603ad0358 (patch)
tree2188cc3e45af7dbb0e08492f6a03e511bf76ff37 /recipes/gst-plugins-ugly-1.0.recipe
parentb6d032254281fe76267d077c4babb2ef9ac82fe8 (diff)
windows: Disable plugins that have deps that require autoreconf
Five recipes seem to really require autoreconf, either due to autotools patches or because the tarball isn't a dist-ed tarball. autom4te is hanging on the Windows CI, so disable these for now. We can revisit later in the release cycle. The libraries are: a52dec, libdv, libdvdnav, libdvdread, wavpack Part-of: <https://gitlab.freedesktop.org/gstreamer/cerbero/-/merge_requests/616>
Diffstat (limited to 'recipes/gst-plugins-ugly-1.0.recipe')
-rw-r--r--recipes/gst-plugins-ugly-1.0.recipe8
1 files changed, 6 insertions, 2 deletions
diff --git a/recipes/gst-plugins-ugly-1.0.recipe b/recipes/gst-plugins-ugly-1.0.recipe
index c4eb29d0..d31cda84 100644
--- a/recipes/gst-plugins-ugly-1.0.recipe
+++ b/recipes/gst-plugins-ugly-1.0.recipe
@@ -48,11 +48,15 @@ class Recipe(custom.GStreamer):
files_lang = ['gst-plugins-ugly-1.0']
def prepare(self):
- if self.using_uwp() or self.config.target_platform in (Platform.ANDROID, Platform.IOS):
+ if self.config.target_platform in (Platform.ANDROID, Platform.IOS):
self.disable_plugin('dvdread', 'dvd', dep='libdvdread')
- if self.using_uwp():
+ # Recipes that need autoreconf hang on the Windows CI
+ if self.config.platform == Platform.WINDOWS:
+ self.disable_plugin('dvdread', 'dvd', dep='libdvdread')
self.disable_plugin('a52dec', 'codecs_restricted', dep='a52dec')
+
+ if self.using_uwp():
self.disable_plugin('amrnb', 'codecs_restricted', dep='opencore-amr')
self.disable_plugin('amrwbdec', 'codecs_restricted', dep='opencore-amr')
self.disable_plugin('x264', 'codecs_restricted', dep='x264')