summaryrefslogtreecommitdiffstats
path: root/waftools/checks
diff options
context:
space:
mode:
authorDudemanguy <random342@airmail.cc>2023-06-12 14:34:50 -0500
committerDudemanguy <random342@airmail.cc>2023-06-16 14:46:59 +0000
commitca08bf599fce2c73824a74d35f9618dcb2410bbe (patch)
tree30552d23f42e4ba824505a3184caed7844ad07d7 /waftools/checks
parent45e2ca5411a88889d74cc514c1d51b4d1768864e (diff)
downloadmpv-ca08bf599fce2c73824a74d35f9618dcb2410bbe.tar.bz2
mpv-ca08bf599fce2c73824a74d35f9618dcb2410bbe.tar.xz
wayland: bump wayland-protocols to 1.25
1.27 would have been nicer but ubuntu 22.04 is on 1.25 so we'll just compromise.
Diffstat (limited to 'waftools/checks')
-rw-r--r--waftools/checks/custom.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/waftools/checks/custom.py b/waftools/checks/custom.py
index 9e060c522d..844d708c91 100644
--- a/waftools/checks/custom.py
+++ b/waftools/checks/custom.py
@@ -102,7 +102,7 @@ def check_lua(ctx, dependency_identifier):
def check_wl_protocols(ctx, dependency_identifier):
def fn(ctx, dependency_identifier):
- ret = check_pkg_config_datadir("wayland-protocols", ">= 1.15")
+ ret = check_pkg_config_datadir("wayland-protocols", ">= 1.25")
ret = ret(ctx, dependency_identifier)
if ret != None:
ctx.env.WL_PROTO_DIR = ret.split()[0]