From 93a5e4ce069b7cb791c2ee0bf678eafc3615f03b Mon Sep 17 00:00:00 2001 From: Sam Lantinga Date: Mon, 17 Jun 2019 08:38:33 -0700 Subject: [PATCH] Fixed bug 4667 - Build errors on Linux when building without Threads support Manuel Sabogal There is an issue on the latest commit of the mercurial repo when SDL_THREADS_DISABLED is set: src/core/linux/SDL_threadprio.c:79:28: error: unknown type name 'Sint64'; did you mean 'int' --- src/core/linux/SDL_threadprio.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/core/linux/SDL_threadprio.c b/src/core/linux/SDL_threadprio.c index ae546da8014aa..6c60ecd2c34ea 100644 --- a/src/core/linux/SDL_threadprio.c +++ b/src/core/linux/SDL_threadprio.c @@ -22,6 +22,8 @@ #ifdef __LINUX__ +#include "SDL_stdinc.h" + #if !SDL_THREADS_DISABLED #include #include