diff options
author | Nirbheek Chauhan <nirbheek@centricular.com> | 2017-04-13 15:48:53 +0530 |
---|---|---|
committer | Nirbheek Chauhan <nirbheek@centricular.com> | 2017-04-13 16:16:11 +0530 |
commit | acf649e06d77e3abf6de8a325f95c2607741cbe8 (patch) | |
tree | 84a0872ce1b37c28c01da045a33bbe08cd1f0c3f /packages | |
parent | bedec42a7f583c3be60f46e7801be50dc2f07d6f (diff) |
gst-plugins-bad-1.0: Disable webrtcdsp on Windows
It fails to build on most Windows machines due to a too-long-path
error unless you use a directory (with a small name) in the root of
the drive.
This means that essentially every Windows user will hit this (and does
hit this), so disable it. If you need this, please supply patches to
fix it. Alternatively, revert it locally.
https://bugzilla.gnome.org/show_bug.cgi?id=770264
Diffstat (limited to 'packages')
-rw-r--r-- | packages/gstreamer-1.0-effects.package | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/packages/gstreamer-1.0-effects.package b/packages/gstreamer-1.0-effects.package index 0570b274..9236278c 100644 --- a/packages/gstreamer-1.0-effects.package +++ b/packages/gstreamer-1.0-effects.package @@ -21,3 +21,10 @@ class Package(custom.GStreamer, package.Package): 'gst-plugins-good-1.0-static:plugins_effects_devel', 'gst-plugins-ugly-1.0-static:plugins_effects_devel', 'gst-plugins-bad-1.0-static:plugins_effects_devel'] + + def prepare(self): + if self.config.platform == Platform.WINDOWS: + # FIXME: This will almost certainly fail to build on Windows due to + # https://bugzilla.gnome.org/show_bug.cgi?id=770264 + # See also, gst-plugins-bad-1.0.recipe and -static + self.files.remove('webrtc-audio-processing:libs') |