summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordgp@users.sourceforge.net <dgp>2012-07-17 16:25:44 (GMT)
committerdgp@users.sourceforge.net <dgp>2012-07-17 16:25:44 (GMT)
commit21611e95352d1aab155642f9d6e0eb835d1cb842 (patch)
treeea578bce789e57e9f75c4a1fae2e4fb57f907cd7
parentc8b9d6add2c03ca3982af7c76665e4eca25977d6 (diff)
parent9ed145ca2b935acb715e027f83127b41ba01209b (diff)
downloadtk-21611e95352d1aab155642f9d6e0eb835d1cb842.zip
tk-21611e95352d1aab155642f9d6e0eb835d1cb842.tar.gz
tk-21611e95352d1aab155642f9d6e0eb835d1cb842.tar.bz2
merge 8.5
-rw-r--r--ChangeLog4
-rw-r--r--win/makefile.vc7
2 files changed, 7 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index c7ca123..8b6b358 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2012-07-17 Jan Nijtmans <nijtmans@users.sf.net>
+
+ * win/makefile.vc: [Bug 3544932]: Visual studio compiler check fails
+
2012-07-08 Jan Nijtmans <nijtmans@users.sf.net>
* generic/tkIntXlibDecls.h: [Bug 3541305]: Xfree/Xsync...
diff --git a/win/makefile.vc b/win/makefile.vc
index 89dbe30..2f60436 100644
--- a/win/makefile.vc
+++ b/win/makefile.vc
@@ -12,10 +12,9 @@
# Copyright (c) 2001-2004 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^