From 1bdbe1cb3f7ed3600009fb9d436c3f749eb3ec1a Mon Sep 17 00:00:00 2001 From: "Enrico Weigelt, metux IT consult" Date: Wed, 6 Mar 2024 19:52:24 +0100 Subject: [PATCH] os: fix missing X11/Xdefs.h include in os/osdep.h osdep.h needs Bool type, which is defined X11/Xdefs.h. For now it works, since Xdefs usually is already included somewhere else, but that's an unreliable programming styles which quickly hits us when changing include order. Signed-off-by: Enrico Weigelt, metux IT consult Part-of: --- os/osdep.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/os/osdep.h b/os/osdep.h index 04d0a827b..ede9eb889 100644 --- a/os/osdep.h +++ b/os/osdep.h @@ -51,6 +51,8 @@ SOFTWARE. #ifndef _OSDEP_H_ #define _OSDEP_H_ 1 +#include + #if defined(XDMCP) || defined(HASXDMAUTH) #include #endif