Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJordan Petridis <jordan@centricular.com>2021-10-19 09:45:07 +0300
committerJordan Petridis <jordan@centricular.com>2022-11-29 22:18:46 +0300
commit975f0141be9353e3334c6df36d388fce97acf337 (patch)
treefb142cc890f6772b76c0297003f8c449a9a06537 /meson.build
parent51c34267a97f576e8a31107c172b7d41f1e80ab0 (diff)
video/gtk4: Implement support for GLTextures when possible.
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/merge_requests/588>
Diffstat (limited to 'meson.build')
-rw-r--r--meson.build4
1 files changed, 2 insertions, 2 deletions
diff --git a/meson.build b/meson.build
index ce7846e5c..a800e3cde 100644
--- a/meson.build
+++ b/meson.build
@@ -140,7 +140,7 @@ else
message('csound not found, disabling its plugin')
endif
-if dependency('gtk4', required : get_option('gtk4')).found()
+if dependency('gtk4', version: '>= 4.6.0', required : get_option('gtk4')).found()
plugins += {'gst-plugin-gtk4' : 'libgstgtk4',}
endif
@@ -278,7 +278,7 @@ foreach plugin : plugins
)
meson.override_dependency(plugin_name, dep)
- if static_build and plugin_name in ['gstcsound', 'gstthreadshare']
+ if static_build and plugin_name in ['gstcsound', 'gstthreadshare', 'gstgtk4']
warning('Static plugin @0@ is known to fail. It will not be included in libgstreamer-full.'.format(plugin_name))
else
gst_plugins += dep