diff options
author | nijtmans@users.sourceforge.net <jan.nijtmans> | 2012-07-17 13:13:29 (GMT) |
---|---|---|
committer | nijtmans@users.sourceforge.net <jan.nijtmans> | 2012-07-17 13:13:29 (GMT) |
commit | 4cf304a0f40533d4ab5a997268c6ce1cc238eb4f (patch) | |
tree | a0a8b8893c4949dcab2bbc550928353c25056a46 /win | |
parent | e2144b7d98eec0f7938fc07484318fdb945bc62f (diff) | |
parent | fd79373f4298c54205376600bef3bcdf53cad691 (diff) | |
download | tk-4cf304a0f40533d4ab5a997268c6ce1cc238eb4f.zip tk-4cf304a0f40533d4ab5a997268c6ce1cc238eb4f.tar.gz tk-4cf304a0f40533d4ab5a997268c6ce1cc238eb4f.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 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^ |