瀏覽代碼

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 <ibus.h>.
Carl Åstholm 1 年之前
父節點
當前提交
f099898a66
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      src/core/linux/SDL_ibus.h

+ 1 - 1
src/core/linux/SDL_ibus.h

@@ -26,7 +26,7 @@
 
 #ifdef HAVE_IBUS_IBUS_H
 #define SDL_USE_IBUS 1
-#include <ibus-1.0/ibus.h>
+#include <ibus.h>
 
 extern SDL_bool SDL_IBus_Init(void);
 extern void SDL_IBus_Quit(void);