From 80b77131269b44c9fa2d8259c7a0cd9e8ea0ec42 Mon Sep 17 00:00:00 2001 From: Willy-JL <49810075+Willy-JL@users.noreply.github.com> Date: Fri, 22 Nov 2024 05:49:43 +0000 Subject: [PATCH] Fix `linux/input-event-codes.h` when not present --- src/wl_window.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/wl_window.c b/src/wl_window.c index 2e842aaa..f4f1b5df 100644 --- a/src/wl_window.c +++ b/src/wl_window.c @@ -40,7 +40,9 @@ #include #include #include +#if __has_include() #include +#endif #include "wayland-client-protocol.h" #include "xdg-shell-client-protocol.h"