(svn r8678) [PSP] -Add: added LIBS and CFLAGS needed to compile PSP

-Fix: PSP needs to link with gcc, not with g++ (don't ask)
-Fix: PSP doens't support threads
This commit is contained in:
truelight
2007-02-11 16:28:00 +00:00
parent d84e14f55f
commit 53785810c8
3 changed files with 11 additions and 1 deletions

View File

@@ -5,7 +5,7 @@
#include <stdlib.h>
#include "helpers.hpp"
#if defined(__AMIGA__) || defined(__MORPHOS__) || defined(NO_THREADS)
#if defined(__AMIGA__) || defined(__MORPHOS__) || defined(PSP) || defined(NO_THREADS)
OTTDThread *OTTDCreateThread(OTTDThreadFunc function, void *arg) { return NULL; }
void *OTTDJoinThread(OTTDThread *t) { return NULL; }
void OTTDExitThread(void) { NOT_REACHED(); };