diff options
author | Max Horn | 2006-06-24 12:33:52 +0000 |
---|---|---|
committer | Max Horn | 2006-06-24 12:33:52 +0000 |
commit | 492c65009cb186024f52ec1970617028c3d09efe (patch) | |
tree | 8e4f89975ccd8bc094161c73c128d92706880a73 /configure | |
parent | dc41d02ac73109add30a3456bc44d558f29d2f8d (diff) | |
download | scummvm-rg350-492c65009cb186024f52ec1970617028c3d09efe.tar.gz scummvm-rg350-492c65009cb186024f52ec1970617028c3d09efe.tar.bz2 scummvm-rg350-492c65009cb186024f52ec1970617028c3d09efe.zip |
Started to move 'monolithic' parts of our ports to the new 'background/platform' directory (see also the 'Modular_Backends' page in our Wiki)
svn-id: r23293
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1327,20 +1327,20 @@ fi case $_backend in null) DEFINES="$DEFINES -DUSE_NULL_DRIVER" - MODULES="$MODULES backends/null" + MODULES="$MODULES backends/platform/null" ;; sdl) find_sdlconfig INCLUDES="$INCLUDES `$_sdlconfig --cflags`" LIBS="$LIBS `$_sdlconfig --libs`" - MODULES="$MODULES backends/sdl" + MODULES="$MODULES backends/platform/sdl" ;; x11) INCLUDES="$INCLUDES -I/usr/X11R6/include" LIBS="$LIBS -lpthread -lXext -lX11" LDFLAGS="$LDFLAGS -L/usr/X11R6/lib -L/usr/local/lib" DEFINES="$DEFINES -DX11_BACKEND" - MODULES="$MODULES backends/x11" + MODULES="$MODULES backends/platform/x11" ;; *) echo "support for $_backend backend not implemented in configure script yet" |