diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2012-07-17 12:47:45 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2012-07-17 12:47:45 (GMT) |
commit | 65cd3b085a130ef32fbef6644dbdabe61dc096ca (patch) | |
tree | 3f418ed50cd7c6d2906104eaf69b002508cdbca4 | |
parent | 9792a27404caba808e5e0e5a15a6d86312613e4f (diff) | |
download | tcl-65cd3b085a130ef32fbef6644dbdabe61dc096ca.zip tcl-65cd3b085a130ef32fbef6644dbdabe61dc096ca.tar.gz tcl-65cd3b085a130ef32fbef6644dbdabe61dc096ca.tar.bz2 |
[Bug 3544932]: Visual studio compiler check fails
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | win/makefile.vc | 7 |
2 files changed, 7 insertions, 4 deletions
@@ -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-05 Don Porter <dgp@users.sourceforge.net> * unix/tclUnixPipe.c: [Bug 1189293] Make "<<" binary safe. diff --git a/win/makefile.vc b/win/makefile.vc index 426c907..d7845d3 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^ |