diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2012-07-17 12:51:29 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2012-07-17 12:51:29 (GMT) |
commit | 9eebb0a2671c0158eeae94a9daec982cd6bdda1e (patch) | |
tree | 0014a60ea4fd7c407cb16fac45498689d177da3c /win | |
parent | 4e94b05936b41f09bc06b251a4b8bb1d2c8d0c9b (diff) | |
parent | 7c408c64e54bb4e76b885a8ecb830852aa5e16da (diff) | |
download | tcl-9eebb0a2671c0158eeae94a9daec982cd6bdda1e.zip tcl-9eebb0a2671c0158eeae94a9daec982cd6bdda1e.tar.gz tcl-9eebb0a2671c0158eeae94a9daec982cd6bdda1e.tar.bz2 |
[Bug 3544932]: Visual studio compiler check fails
Diffstat (limited to 'win')
-rw-r--r-- | win/makefile.vc | 7 |
1 files changed, 3 insertions, 4 deletions
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^ |