From ccfcddd7191ee24746eff427050e9300659e16f8 Mon Sep 17 00:00:00 2001 From: Meep-Eep Date: Sun, 23 Dec 2007 05:41:21 +0000 Subject: [PATCH] Fix for Windows CE. git-svn-id: svn://svn.code.sf.net/p/sc2/code/trunk@2885 8092fc87-c524-0410-9efc-e669fe64eaf9 --- sc2/src/config.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sc2/src/config.h b/sc2/src/config.h index 51e673a01..70658fb2a 100644 --- a/sc2/src/config.h +++ b/sc2/src/config.h @@ -7,9 +7,9 @@ * If you want anything else than the defaults, you'll have to edit * that file manually. */ # include "msvc++/config.h" -#elif defined (__MINGW32__) || defined (__CYGWIN__) +#elif defined (__MINGW32__) || defined (__CYGWIN__) || defined(_WIN32_WCE) /* If we're compiling on MS Windows using build.sh, use - * config_win.h, generated from * src/config_win.h.in. */ + * config_win.h, generated from src/config_win.h.in. */ # include "config_win.h" #else /* If we're compiling in unix, use config_unix.h, generated from