From b28de16f41024e52868d387b898e403d87e5aab7 Mon Sep 17 00:00:00 2001 From: meep-eep Date: Sat, 15 Oct 2005 06:03:31 +0000 Subject: [PATCH] Check _MCS_VER, not WIN32. git-svn-id: svn://svn.code.sf.net/p/sc2/code/trunk@1906 8092fc87-c524-0410-9efc-e669fe64eaf9 --- sc2/src/config.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/sc2/src/config.h b/sc2/src/config.h index f4dd57dd6..3180203ef 100644 --- a/sc2/src/config.h +++ b/sc2/src/config.h @@ -1,8 +1,9 @@ /* This file contains some compile-time configuration options. */ -#ifdef WIN32 - /* If we're compiling in windows, we're using the msvc++/config.h file +#ifdef _MSC_VER + /* In this case, build.sh is not run to generate a config file, so + * we use a default file msvc++/config.h instead. * If you want anything else than the defaults, you'll have to edit * that file manually. */ # include "msvc++/config.h"