mirror of https://github.com/encounter/SDL.git
configure.ac: fix configure tests broken with Clang 15 (implicit function declarations)
Clang 15 makes implicit function declarations fatal by default which leads to some configure tests silently failing/returning the wrong result. Signed-off-by: Sam James <sam@gentoo.org>
This commit is contained in:
parent
7f415ce587
commit
d0a3570300
|
@ -2728,6 +2728,7 @@ CheckInputKD()
|
||||||
AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
|
AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
|
||||||
#include <linux/kd.h>
|
#include <linux/kd.h>
|
||||||
#include <linux/keyboard.h>
|
#include <linux/keyboard.h>
|
||||||
|
#include <sys/ioctl.h>
|
||||||
]], [[
|
]], [[
|
||||||
struct kbentry kbe;
|
struct kbentry kbe;
|
||||||
kbe.kb_table = KG_CTRL;
|
kbe.kb_table = KG_CTRL;
|
||||||
|
|
Loading…
Reference in New Issue