summaryrefslogtreecommitdiff
path: root/config.lib
diff options
context:
space:
mode:
authortruelight <truelight@openttd.org>2007-01-21 14:44:25 +0000
committertruelight <truelight@openttd.org>2007-01-21 14:44:25 +0000
commite6f033f69294f132d65f907a976c883130f2c812 (patch)
treed6aa35e62e3a747349276649d74dca79065553d0 /config.lib
parent21c7801345d3ed15d757b8ff09f291b571500fd9 (diff)
downloadopenttd-e6f033f69294f132d65f907a976c883130f2c812.tar.xz
(svn r8311) [WinCE] -Fix r8304: GDI wasn't enabled by default on WinCE
Diffstat (limited to 'config.lib')
-rw-r--r--config.lib4
1 files changed, 2 insertions, 2 deletions
diff --git a/config.lib b/config.lib
index deccd608e..3d2548cb3 100644
--- a/config.lib
+++ b/config.lib
@@ -372,13 +372,13 @@ check_params() {
sleep 5
fi
else
- if [ "$os" = "MINGW" ] || [ "$os" = "CYGWIN" ]; then
+ if [ "$os" = "MINGW" ] || [ "$os" = "CYGWIN" ] || [ "$os" = "WINCE" ]; then
log 1 "checking GDI video driver... found"
else
log 1 "checking GDI video driver... not Windows, skipping"
fi
- if [ -z "$sdl_config" ] && [ "$with_cocoa" = 0 ] && [ "$os" != "MINGW" ] && [ "$os" != "CYGWIN" ]; then
+ if [ -z "$sdl_config" ] && [ "$with_cocoa" = 0 ] && [ "$os" != "MINGW" ] && [ "$os" != "CYGWIN" ] && [ "$os" != "WINCE" ]; then
log 1 "WARNING: no video driver found, building dedicated only"
enable_dedicated="1"
sleep 1