summaryrefslogtreecommitdiffstats
path: root/win/makefile.vc
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2012-07-17 13:15:24 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2012-07-17 13:15:24 (GMT)
commit6cac973514d650ba87c942065373a1bbc5eb803f (patch)
treeae843ed32856ee6b54a72ab79a5a871c2c220480 /win/makefile.vc
parent2205427f8d7fbdf49e2b88e7933bd3c74cbfb1f0 (diff)
parentc89aaf9c7485fbbf5c2a1142c19dae3b321278f4 (diff)
downloadtk-6cac973514d650ba87c942065373a1bbc5eb803f.zip
tk-6cac973514d650ba87c942065373a1bbc5eb803f.tar.gz
tk-6cac973514d650ba87c942065373a1bbc5eb803f.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 14dc2d0..7bacfd3 100644
--- a/win/makefile.vc
+++ b/win/makefile.vc
@@ -13,10 +13,9 @@
# Copyright (c) 2003-2008 Pat Thoyts.
#------------------------------------------------------------------------------
-# 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^