From 7b081cfeee4c351f2e77bf3ca503ff484ed04e2e Mon Sep 17 00:00:00 2001 From: Jan Beich Date: Wed, 23 Jun 2021 16:44:03 +0000 Subject: [PATCH] meson: require wlroots 0.14.0 after 9a4523d47efe view.c:238:52: error: no member named 'subsurfaces_below' in 'struct wlr_surface' wl_list_for_each (subsurface, &view->wlr_surface->subsurfaces_below, parent_link) { ~~~~~~~~~~~~~~~~~ ^ /usr/include/wayland-util.h:443:30: note: expanded from macro 'wl_list_for_each' for (pos = wl_container_of((head)->next, pos, member); \ ^~~~ /usr/include/wayland-util.h:409:32: note: expanded from macro 'wl_container_of' (__typeof__(sample))((char *)(ptr) - \ ^~~ --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index a268f1a..5b0f9a6 100644 --- a/meson.build +++ b/meson.build @@ -34,7 +34,7 @@ if is_freebsd ) endif -wlroots = dependency('wlroots', version: '>= 0.13.0') +wlroots = dependency('wlroots', version: '>= 0.14.0') wayland_protos = dependency('wayland-protocols', version: '>=1.14') wayland_server = dependency('wayland-server') pixman = dependency('pixman-1')