mirror of
https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git
synced 2024-11-25 13:01:07 +00:00
meson: Disable webp plugin on Windows and macOS
Known to be broken, should be kept disabled till the fix is in a release: https://github.com/qnighy/libwebp-sys2-rs/pull/13 Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/merge_requests/1021>
This commit is contained in:
parent
639997d67f
commit
6607a63159
1 changed files with 8 additions and 2 deletions
10
meson.build
10
meson.build
|
@ -84,11 +84,17 @@ plugins = {
|
|||
'gst-plugin-png': 'libgstrspng',
|
||||
'gst-plugin-rav1e': 'libgstrav1e',
|
||||
# videofx has an external dependency, see below
|
||||
}
|
||||
|
||||
# Won't build on platforms where it bundles the sources because of:
|
||||
# https://github.com/qnighy/libwebp-sys2-rs/issues/12
|
||||
# Remove this check once we update to a version that contains the fix:
|
||||
# https://github.com/qnighy/libwebp-sys2-rs/pull/13
|
||||
if host_system not in ['windows', 'darwin']
|
||||
# FIXME: libwebp-sys2 will build its bundled version on msvc and apple platforms
|
||||
# https://github.com/qnighy/libwebp-sys2-rs/issues/4
|
||||
'gst-plugin-webp': 'libgstrswebp',
|
||||
}
|
||||
plugins += {'gst-plugin-webp': 'libgstrswebp'}
|
||||
endif
|
||||
|
||||
extra_env = {}
|
||||
|
||||
|
|
Loading…
Reference in a new issue