mirror of
https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git
synced 2025-01-23 17:38:20 +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/1027>
This commit is contained in:
parent
4b95bde38f
commit
ba889c143c
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-png': 'libgstrspng',
|
||||||
'gst-plugin-rav1e': 'libgstrav1e',
|
'gst-plugin-rav1e': 'libgstrav1e',
|
||||||
# videofx has an external dependency, see below
|
# 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
|
# FIXME: libwebp-sys2 will build its bundled version on msvc and apple platforms
|
||||||
# https://github.com/qnighy/libwebp-sys2-rs/issues/4
|
# https://github.com/qnighy/libwebp-sys2-rs/issues/4
|
||||||
'gst-plugin-webp': 'libgstrswebp',
|
plugins += {'gst-plugin-webp': 'libgstrswebp'}
|
||||||
}
|
endif
|
||||||
|
|
||||||
extra_env = {}
|
extra_env = {}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue