From eb18383e8e01bd3bd41a3309689f832d53d4c797 Mon Sep 17 00:00:00 2001 From: Jan Beich Date: Tue, 5 Jan 2021 09:19:47 +0000 Subject: [PATCH] meson: require wlroots 0.13.0 after 0db62672a4c1 cage.c:307:59: error: too few arguments to function call, expected 2, have 1 server.backend = wlr_backend_autocreate(server.wl_display); ~~~~~~~~~~~~~~~~~~~~~~ ^ subprojects/wlroots/include/wlr/backend.h:43:21: note: 'wlr_backend_autocreate' declared here struct wlr_backend *wlr_backend_autocreate(struct wl_display *display, ^ --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 788a500..3756433 100644 --- a/meson.build +++ b/meson.build @@ -34,7 +34,7 @@ if is_freebsd ) endif -wlroots = dependency('wlroots', version: '>= 0.11.0') +wlroots = dependency('wlroots', version: '>= 0.13.0') wayland_protos = dependency('wayland-protocols', version: '>=1.14') wayland_server = dependency('wayland-server') pixman = dependency('pixman-1')