Changeset - r5760:339db98780e9
[Not reviewed]
master
0 1 0
truelight - 18 years ago 2007-01-21 14:44:25
truelight@openttd.org
(svn r8311) [WinCE] -Fix r8304: GDI wasn't enabled by default on WinCE
1 file changed with 2 insertions and 2 deletions:
0 comments (0 inline, 0 general)
config.lib
Show inline comments
 
@@ -369,19 +369,19 @@ check_params() {
 

	
 
		if [ "$enable_network" = "0" ]; then
 
			log 1 "WARNING: compiling a dedicated server without network is pointless"
 
			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
 

	
 
			log 1 "checking dedicated... found"
 
		else
0 comments (0 inline, 0 general)