diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2020-02-04 08:28:07 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2020-02-04 08:28:07 (GMT) |
commit | 225b4e7cc0a542aea1997329ec38dc9f65e92bbb (patch) | |
tree | bbaf10aed9551bb81913488c29b830bd89a03966 /win/rules.vc | |
parent | 4ee1ddaeaabbb6e8c68d9423f302715d07599846 (diff) | |
download | tcl-225b4e7cc0a542aea1997329ec38dc9f65e92bbb.zip tcl-225b4e7cc0a542aea1997329ec38dc9f65e92bbb.tar.gz tcl-225b4e7cc0a542aea1997329ec38dc9f65e92bbb.tar.bz2 |
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)
|