diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2020-12-22 07:12:06 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2020-12-22 07:12:06 (GMT) |
commit | d7f467922161c8d281e73734fb193c529e7abe0c (patch) | |
tree | ed5b849fd382bc3953176485f7b9810eb489263e /win/rules.vc | |
parent | f9a71ac12894590429c6314d0178aa872f07c5ba (diff) | |
download | tcl-d7f467922161c8d281e73734fb193c529e7abe0c.zip tcl-d7f467922161c8d281e73734fb193c529e7abe0c.tar.gz tcl-d7f467922161c8d281e73734fb193c529e7abe0c.tar.bz2 |
Fix [ea8cd4789c]: Tcl 8.6.11 does not compile with VisualStudio 2010. Thanks Paul!
Diffstat (limited to 'win/rules.vc')
-rw-r--r-- | win/rules.vc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/win/rules.vc b/win/rules.vc index d966066..13e3879 100644 --- a/win/rules.vc +++ b/win/rules.vc @@ -1340,7 +1340,7 @@ INCLUDE_INSTALL_DIR = $(_INSTALLDIR)\..\include # define PRJ_LIBS before including rules.rc if additional libs are needed
OPTDEFINES = /DSTDC_HEADERS
-!if $(VCVERSION) >= 1600
+!if $(VCVERSION) > 1600
OPTDEFINES = $(OPTDEFINES) /DHAVE_STDINT_H=1
!else
OPTDEFINES = $(OPTDEFINES) /DMP_NO_STDINT=1
|