summaryrefslogtreecommitdiffstats
path: root/win/makefile.vc
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2012-07-17 13:10:41 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2012-07-17 13:10:41 (GMT)
commite636ee749274262a51f2635ee3eafcd236a9bb91 (patch)
treeceb4e290ec74d8f86fcb8c48113e470f3111787c /win/makefile.vc
parentd0a3f3b5288cf9564bade2efdf74599e1ac24a1b (diff)
downloadtk-e636ee749274262a51f2635ee3eafcd236a9bb91.zip
tk-e636ee749274262a51f2635ee3eafcd236a9bb91.tar.gz
tk-e636ee749274262a51f2635ee3eafcd236a9bb91.tar.bz2
[Bug 3544932]: Visual studio compiler check fails
Diffstat (limited to 'win/makefile.vc')
-rw-r--r--win/makefile.vc7
1 files changed, 3 insertions, 4 deletions
diff --git a/win/makefile.vc b/win/makefile.vc
index 32dd4d5..482cf13 100644
--- a/win/makefile.vc
+++ b/win/makefile.vc
@@ -12,10 +12,9 @@
# Copyright (c) 2001-2002 David Gravereaux.
#------------------------------------------------------------------------------
-# Check to see we are configured to build with MSVC (MSDEVDIR or MSVCDIR)
-# or with the MS Platform SDK (MSSDK). Visual Studio .NET 2003 and 2005 define
-# VCINSTALLDIR instead.
-!if !defined(MSDEVDIR) && !defined(MSVCDIR) && !defined(MSSDK) && !defined(VCINSTALLDIR)
+# Check to see we are configured to build with MSVC (MSDEVDIR, MSVCDIR or
+# VCINSTALLDIR) or with the MS Platform SDK (MSSDK or WindowsSDKDir)
+!if !defined(MSDEVDIR) && !defined(MSVCDIR) && !defined(VCINSTALLDIR) && !defined(MSSDK) && !defined(WINDOWSSDKDIR)
MSG = ^
You need to run vcvars32.bat from Developer Studio or setenv.bat from the^
Platform SDK first to setup the environment. Jump to this line to read^