aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMax Horn2011-05-31 00:25:40 +0200
committerMax Horn2011-05-31 00:25:40 +0200
commit127a6f920a649e4f981ba6d3333dac516dfbb258 (patch)
treeae83d94c99ab2ba037b56d20272ecb6f82e6edbe
parentf7e94e90b67dd21058ede1ae69283592a88bed7d (diff)
downloadscummvm-rg350-127a6f920a649e4f981ba6d3333dac516dfbb258.tar.gz
scummvm-rg350-127a6f920a649e4f981ba6d3333dac516dfbb258.tar.bz2
scummvm-rg350-127a6f920a649e4f981ba6d3333dac516dfbb258.zip
BUILD: Add SDL_BACKEND=1 to config.mk for all SDL based backends
-rw-r--r--backends/graphics/opengl/gltexture.h2
-rw-r--r--backends/mixer/sdl/sdl-mixer.cpp2
-rw-r--r--backends/module.mk6
-rwxr-xr-xconfigure5
4 files changed, 10 insertions, 5 deletions
diff --git a/backends/graphics/opengl/gltexture.h b/backends/graphics/opengl/gltexture.h
index 63d5e3a733..f0cd7aed56 100644
--- a/backends/graphics/opengl/gltexture.h
+++ b/backends/graphics/opengl/gltexture.h
@@ -20,6 +20,8 @@
*
*/
+#include "common/scummsys.h"
+
#ifdef WIN32
#if defined(ARRAYSIZE) && !defined(_WINDOWS_)
#undef ARRAYSIZE
diff --git a/backends/mixer/sdl/sdl-mixer.cpp b/backends/mixer/sdl/sdl-mixer.cpp
index 61e7f051e5..16e7f22db5 100644
--- a/backends/mixer/sdl/sdl-mixer.cpp
+++ b/backends/mixer/sdl/sdl-mixer.cpp
@@ -20,6 +20,8 @@
*
*/
+#include "common/scummsys.h"
+
#if defined(SDL_BACKEND)
#include "backends/mixer/sdl/sdl-mixer.h"
diff --git a/backends/module.mk b/backends/module.mk
index 07a8cbbb3f..e91c0917a4 100644
--- a/backends/module.mk
+++ b/backends/module.mk
@@ -41,10 +41,7 @@ MODULE_OBJS := \
# SDL specific source files.
# We cannot just check $BACKEND = sdl, as various other backends
# derive from the SDL backend, and they all need the following files.
-# TODO: Add SDL_BACKEND to config.mk; this would match the fact that
-# we also add -DSDL_BACKEND to the DEFINES.
-# However, the latter is only done for *most* SDL based stuff, not always
-# so we really should unify the relevant code in configure.
+ifdef SDL_BACKEND
MODULE_OBJS += \
audiocd/sdl/sdl-audiocd.o \
events/sdl/sdl-events.o \
@@ -54,6 +51,7 @@ MODULE_OBJS += \
mutex/sdl/sdl-mutex.o \
plugins/sdl/sdl-provider.o \
timer/sdl/sdl-timer.o
+endif
ifdef POSIX
MODULE_OBJS += \
diff --git a/configure b/configure
index 299e9927aa..6ae3cce8b6 100755
--- a/configure
+++ b/configure
@@ -2287,8 +2287,9 @@ case $_backend in
webos)
# There is no sdl-config in the WebOS PDK so we don't use find_sdlconfig here.
LIBS="$LIBS -lSDL"
- DEFINES="$DEFINES -DSDL_BACKEND"
DEFINES="$DEFINES -DWEBOS"
+ DEFINES="$DEFINES -DSDL_BACKEND"
+ add_line_to_config_mk "SDL_BACKEND = 1"
MODULES="$MODULES backends/platform/sdl"
;;
wii)
@@ -2309,6 +2310,7 @@ case $_backend in
INCLUDES="$INCLUDES "'-I$(srcdir)/backends/platform/wince/CEkeys'
LIBS="$LIBS -static -lSDL"
DEFINES="$DEFINES -DSDL_BACKEND"
+ add_line_to_config_mk "SDL_BACKEND = 1"
;;
sdl)
;;
@@ -2328,6 +2330,7 @@ case $_backend in
INCLUDES="$INCLUDES `$_sdlconfig --prefix="$_sdlpath" --cflags`"
LIBS="$LIBS `$_sdlconfig --prefix="$_sdlpath" --libs`"
DEFINES="$DEFINES -DSDL_BACKEND"
+ add_line_to_config_mk "SDL_BACKEND = 1"
;;
esac