diff options
Diffstat (limited to 'backends/mutex/sdl')
-rw-r--r-- | backends/mutex/sdl/sdl-mutex.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/backends/mutex/sdl/sdl-mutex.cpp b/backends/mutex/sdl/sdl-mutex.cpp index e30d194ca1..53529c155a 100644 --- a/backends/mutex/sdl/sdl-mutex.cpp +++ b/backends/mutex/sdl/sdl-mutex.cpp @@ -23,6 +23,8 @@ * */ +#if defined(WIN32) || defined(UNIX) || defined(MACOSX) + #include "backends/mutex/sdl/sdl-mutex.h" #if defined(__SYMBIAN32__) @@ -46,3 +48,5 @@ void SdlMutexManager::unlockMutex(OSystem::MutexRef mutex) { void SdlMutexManager::deleteMutex(OSystem::MutexRef mutex) { SDL_DestroyMutex((SDL_mutex *) mutex); } + +#endif |