From 9d7b9691b03664509d568300254f4823dadfad1d Mon Sep 17 00:00:00 2001 From: "Enrico Weigelt, metux IT consult" Date: Wed, 11 Jun 2025 15:25:11 +0200 Subject: [PATCH] Xext: xf86bigfont: fix missing includes It seems xf86bigfont hasn't been compile-tested for long time, some includes were missing. Note that fontstruct.h needs to come before libxfont2.h, because X11 headers tend to be not self-consistent :( Signed-off-by: Enrico Weigelt, metux IT consult --- Xext/xf86bigfont.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Xext/xf86bigfont.c b/Xext/xf86bigfont.c index 5a5484aca..f93917e38 100644 --- a/Xext/xf86bigfont.c +++ b/Xext/xf86bigfont.c @@ -53,6 +53,8 @@ #include #include #include +#include +#include #include "miext/extinit_priv.h"