From 8fc43ccd2d80488dc3ef1b73e6a1309c4530e7e7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Ekl=C3=B6f?= Date: Fri, 30 Jun 2023 08:29:21 +0200 Subject: [PATCH] meson: log availability of cursor-shape-v1 --- meson.build | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/meson.build b/meson.build index 10746d9d..0d75e1e4 100644 --- a/meson.build +++ b/meson.build @@ -175,6 +175,9 @@ if wayland_protocols.version().version_compare('>=1.32') wayland_protocols_datadir + '/staging/cursor-shape/cursor-shape-v1.xml', ] add_project_arguments('-DHAVE_CURSOR_SHAPE', language: 'c') + cursor_shape = true +else + cursor_shape = false endif foreach prot : wl_proto_xml @@ -388,6 +391,7 @@ summary( 'Grapheme clustering': utf8proc.found(), 'Wayland: xdg-activation-v1': xdg_activation, 'Wayland: fractional-scale-v1': fractional_scale, + 'Wayland: cursor-shape-v1': cursor_shape, 'utmp backend': utmp_backend, 'utmp helper default path': utmp_default_helper_path, 'Build terminfo': tic.found(),