From f099898a66021bfdfc2cfdc904de3f59f45af9da Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Carl=20=C3=85stholm?= Date: Mon, 15 Jul 2024 13:43:19 +0200 Subject: [PATCH] Correct ibus include path ibus-1.0.pc adds /usr/include/ibus-1.0 to the search path but not /usr/include, which makes the canonical include path . --- src/core/linux/SDL_ibus.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/linux/SDL_ibus.h b/src/core/linux/SDL_ibus.h index 1a6fc5bb73..97ce32a71c 100644 --- a/src/core/linux/SDL_ibus.h +++ b/src/core/linux/SDL_ibus.h @@ -26,7 +26,7 @@ #ifdef HAVE_IBUS_IBUS_H #define SDL_USE_IBUS 1 -#include +#include extern SDL_bool SDL_IBus_Init(void); extern void SDL_IBus_Quit(void);