summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDudemanguy <random342@airmail.cc>2022-01-29 12:07:35 -0600
committerDudemanguy <random342@airmail.cc>2022-01-29 12:12:45 -0600
commit4d3ebb9d83cff59f5a2df75a7100fcd84b2768b4 (patch)
tree6b4ff1c54bad1a00df6d2cf60f54cda50285e051
parent19dd61fa192ed6f2372efc54bfe15586a29bd09b (diff)
downloadmpv-4d3ebb9d83cff59f5a2df75a7100fcd84b2768b4.tar.bz2
mpv-4d3ebb9d83cff59f5a2df75a7100fcd84b2768b4.tar.xz
meson: add version check to wayland-protocols
This was mistakenly left out. mpv requires at least 1.15 for the xdg-decoration protocol. This just matches the waf build.
-rw-r--r--meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/meson.build b/meson.build
index 842241b363..ce28e18dea 100644
--- a/meson.build
+++ b/meson.build
@@ -1035,7 +1035,7 @@ wayland = {
'name': 'wayland',
'deps': [dependency('wayland-client', version: '>= 1.15.0', required: get_option('wayland')),
dependency('wayland-cursor', version: '>= 1.15.0', required: get_option('wayland')),
- dependency('wayland-protocols', required: get_option('wayland')),
+ dependency('wayland-protocols', version: '>= 1.15', required: get_option('wayland')),
dependency('xkbcommon', version: '>= 0.3.0', required: get_option('wayland'))],
'header': cc.check_header('linux/input-event-codes.h', required: get_option('wayland')),
'scanner': find_program('wayland-scanner', required: get_option('wayland')),