diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2020-02-05 16:40:19 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2020-02-05 16:40:19 (GMT) |
commit | b1791f0b92a45956b1f45b4ecba6c8310e4c0273 (patch) | |
tree | 57e0ee4c61f6c9bbacaaeaff8c24718775686080 /win/rules.vc | |
parent | 6f55ec4986e85e087da3b208d6d16671048150c4 (diff) | |
download | tcl-b1791f0b92a45956b1f45b4ecba6c8310e4c0273.zip tcl-b1791f0b92a45956b1f45b4ecba6c8310e4c0273.tar.gz tcl-b1791f0b92a45956b1f45b4ecba6c8310e4c0273.tar.bz2 |
(cherry-pick): It appears that inttypes.h was introduced in Visual Studio 2013
Diffstat (limited to 'win/rules.vc')
-rw-r--r-- | win/rules.vc | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/win/rules.vc b/win/rules.vc index 5060805..872b3a0 100644 --- a/win/rules.vc +++ b/win/rules.vc @@ -1302,11 +1302,8 @@ OPTDEFINES = $(OPTDEFINES) /DHAVE_STDINT_H=1 !else
OPTDEFINES = $(OPTDEFINES) /DMP_NO_STDINT=1
!endif
-!if $(VCVERSION) >= 1700
-OPTDEFINES = $(OPTDEFINES) /DHAVE_INTTYPES_H=1
-!endif
!if $(VCVERSION) >= 1800
-OPTDEFINES = $(OPTDEFINES) /DHAVE_STDBOOL_H=1
+OPTDEFINES = $(OPTDEFINES) /DHAVE_INTTYPES_H=1 /DHAVE_STDBOOL_H=1
!endif
!if $(TCL_MEM_DEBUG)
|