summaryrefslogtreecommitdiff
path: root/apps/plugins/sdl/src/thread
diff options
context:
space:
mode:
authorFranklin Wei <git@fwei.tk>2019-07-02 17:59:01 -0400
committerFranklin Wei <git@fwei.tk>2019-07-02 17:59:01 -0400
commitaf57e1c8f20a51cc1a3a291b7e424eda7c2c1996 (patch)
treef88c2bb5f7352d5a34023672409b7cf0dce8bb2c /apps/plugins/sdl/src/thread
parentdcb68344911bd19020d401c7484e101705b32464 (diff)
downloadrockbox-wolf3d.zip
rockbox-wolf3d.tar.gz
rockbox-wolf3d.tar.bz2
rockbox-wolf3d.tar.xz
wolf3d: work on rebasing to GPL'd FM OPL emulatorwolf3d
Diffstat (limited to '')
-rw-r--r--apps/plugins/sdl/src/thread/SDL_thread_c.h23
1 files changed, 5 insertions, 18 deletions
diff --git a/apps/plugins/sdl/src/thread/SDL_thread_c.h b/apps/plugins/sdl/src/thread/SDL_thread_c.h
index d0804e9..1cd6835 100644
--- a/apps/plugins/sdl/src/thread/SDL_thread_c.h
+++ b/apps/plugins/sdl/src/thread/SDL_thread_c.h
@@ -24,24 +24,11 @@
#ifndef _SDL_thread_c_h
#define _SDL_thread_c_h
-/* Need the definitions of SYS_ThreadHandle */
-#if SDL_THREADS_DISABLED
-#include "generic/SDL_systhread_c.h"
-#elif SDL_THREAD_BEOS
-#include "beos/SDL_systhread_c.h"
-#elif SDL_THREAD_DC
-#include "dc/SDL_systhread_c.h"
-#elif SDL_THREAD_OS2
-#include "os2/SDL_systhread_c.h"
-#elif SDL_THREAD_PTH
-#include "pth/SDL_systhread_c.h"
-#elif SDL_THREAD_SPROC
-#include "irix/SDL_systhread_c.h"
-#elif SDL_THREAD_WIN32
-#include "win32/SDL_systhread_c.h"
-#elif SDL_THREAD_SYMBIAN
-#include "symbian/SDL_systhread_c.h"
-#elif SDL_THREAD_ROCKBOX
+#ifndef SDL_THREAD_ROCKBOX
+#define SDL_THREAD_ROCKBOX 1
+#endif
+
+#if SDL_THREAD_ROCKBOX
#include "rockbox/SDL_systhread_c.h"
#else
#error Need thread implementation for this platform