aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xconfigure6
1 files changed, 5 insertions, 1 deletions
diff --git a/configure b/configure
index 68cbdf36cf..3b1e4ba110 100755
--- a/configure
+++ b/configure
@@ -244,7 +244,7 @@ Usage: $0 [OPTIONS]...
Configuration:
-h, --help display this help and exit
- --backend=BACKEND backend to build (sdl, x11, morphos, dc, gp32) [sdl]
+ --backend=BACKEND backend to build (sdl, x11, morphos, dc, gp32, null) [sdl]
Installation directories:
--prefix=DIR use this prefix for installing ScummVM [/usr/local]
@@ -972,6 +972,10 @@ fi
# Backend related stuff
#
case $_backend in
+ null)
+ DEFINES="$DEFINES -DUSE_NULL_DRIVER"
+ OBJS="$OBJS backends/null/null.o"
+ ;;
sdl)
find_sdlconfig
INCLUDES="$INCLUDES `$_sdlconfig --cflags`"