diff options
author | Cedric BAIL <cedric.bail@free.fr> | 2012-02-25 17:54:54 +0000 |
---|---|---|
committer | Cedric BAIL <cedric.bail@free.fr> | 2012-02-25 17:54:54 +0000 |
commit | a1beb50ce77b8200dad7073498e884c0e199f5bb (patch) | |
tree | 95c29d330e0957f641301773f4988586dd28dff7 /configure.ac | |
parent | 98b733080e7265f0375a6f0b3c2eb1016c2d483d (diff) |
expedite: remove SDL 16bpp engine support.
SVN revision: 68445
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/configure.ac b/configure.ac index a86bb65..47056e8 100644 --- a/configure.ac +++ b/configure.ac | |||
@@ -73,9 +73,6 @@ AC_SUBST(ddraw_libs) | |||
73 | EXPEDITE_CHECK_ENGINE([direct3d], [Direct3D], "yes", [d3d_libs="-ld3d9 -ld3dx9d -lgdi32"]) | 73 | EXPEDITE_CHECK_ENGINE([direct3d], [Direct3D], "yes", [d3d_libs="-ld3d9 -ld3dx9d -lgdi32"]) |
74 | AC_SUBST(d3d_libs) | 74 | AC_SUBST(d3d_libs) |
75 | 75 | ||
76 | # Software SDL | ||
77 | EXPEDITE_CHECK_ENGINE([software-sdl], [Software SDL], "yes") | ||
78 | |||
79 | # PSL1GHT | 76 | # PSL1GHT |
80 | EXPEDITE_CHECK_ENGINE([psl1ght], [PSL1GHT], "yes") | 77 | EXPEDITE_CHECK_ENGINE([psl1ght], [PSL1GHT], "yes") |
81 | 78 | ||
@@ -175,10 +172,11 @@ fi | |||
175 | 172 | ||
176 | # SDL | 173 | # SDL |
177 | 174 | ||
178 | if test "x$have_software_sdl" = "xyes" -o "x$have_gl_sdl" = "xyes"; then | 175 | PKG_CHECK_MODULES([SDL], [sdl], [have_sdl="yes"], [have_sdl="no"]) |
179 | PKG_CHECK_MODULES([SDL], [sdl], [have_sdl="yes"], [have_sdl="no"]) | ||
180 | fi | ||
181 | AM_CONDITIONAL(BUILD_SDL, test "x$have_sdl" = "xyes") | 176 | AM_CONDITIONAL(BUILD_SDL, test "x$have_sdl" = "xyes") |
177 | if test "x$have_sdl" = "xyes"; then | ||
178 | AC_DEFINE(BUILD_SDL, 1, [build sdl support]) | ||
179 | fi | ||
182 | 180 | ||
183 | # PSL1GHT | 181 | # PSL1GHT |
184 | AM_CONDITIONAL(BUILD_PSL1GHT, test "x$have_psl1ght" = "xyes") | 182 | AM_CONDITIONAL(BUILD_PSL1GHT, test "x$have_psl1ght" = "xyes") |