summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRostislav Pehlivanov <atomnuker@gmail.com>2018-05-15 21:17:46 +0100
committerJan Ekström <jeebjp@gmail.com>2018-05-20 02:48:23 +0300
commitd8288877923728dad3c5ce6c735a9b4cde4af705 (patch)
treee3991ce7550956543f3efbfa86d77ede304e2444
parent0b3d1d6faf2836f1262ec7a2f2bec99f6c73d26f (diff)
downloadmpv-d8288877923728dad3c5ce6c735a9b4cde4af705.tar.bz2
mpv-d8288877923728dad3c5ce6c735a9b4cde4af705.tar.xz
waf: require wayland-protocols >= 1.14
Needed for the new xdg-wm tiling enums.
-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 a80ab8d2ed..3f627250f7 100644
--- a/waftools/checks/custom.py
+++ b/waftools/checks/custom.py
@@ -85,7 +85,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.12")
+ ret = check_pkg_config_datadir("wayland-protocols", ">= 1.14")
ret = ret(ctx, dependency_identifier)
if ret != None:
ctx.env.WL_PROTO_DIR = ret.split()[0]