From 8368df64d1da32be94fda91e4cfd4ddb0cf41729 Mon Sep 17 00:00:00 2001 From: b-aaz <85005689+b-aaz@users.noreply.github.com> Date: Sun, 7 Dec 2025 18:59:38 +0000 Subject: [PATCH] Xext: xf86bigfont: Include osdep.h for OsSignal. osdep.h holds the definition for OsSignal, and it was not included in xf86bigfont which used it. This lead to build errors on Cygwin. Signed-off-by: b-aaz --- Xext/xf86bigfont.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Xext/xf86bigfont.c b/Xext/xf86bigfont.c index 0944e56ea3..0f856996b6 100644 --- a/Xext/xf86bigfont.c +++ b/Xext/xf86bigfont.c @@ -45,7 +45,6 @@ #ifdef CONFIG_MITSHM # if defined(__CYGWIN__) # include -# include # endif #include #include @@ -66,6 +65,7 @@ #include "misc.h" #include "os.h" +#include "os/osdep.h" #include "dixstruct.h" #include "gcstruct.h" #include "dixfontstr.h"