summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authornijtmans@users.sourceforge.net <jan.nijtmans>2012-07-17 12:51:29 (GMT)
committernijtmans@users.sourceforge.net <jan.nijtmans>2012-07-17 12:51:29 (GMT)
commit1edee91f770b77b56e037b22edb320264dc90158 (patch)
tree0014a60ea4fd7c407cb16fac45498689d177da3c
parent6d6a53c1deb3de512f71f40084bfbf3031da837d (diff)
parentfde43f11d70812425657762bb1e7fee8d96e74a2 (diff)
downloadtcl-1edee91f770b77b56e037b22edb320264dc90158.zip
tcl-1edee91f770b77b56e037b22edb320264dc90158.tar.gz
tcl-1edee91f770b77b56e037b22edb320264dc90158.tar.bz2
[Bug 3544932]: Visual studio compiler check fails
-rw-r--r--ChangeLog4
-rw-r--r--win/makefile.vc7
2 files changed, 7 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index ae28d4f..9545bc9 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-16 Donal K. Fellows <dkf@users.sf.net>
* unix/tclUnixCompat.c (TclpGetPwNam, TclpGetPwUid, TclpGetGrNam)
diff --git a/win/makefile.vc b/win/makefile.vc
index d982284..4a84b3b 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^