diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2024-08-22 15:26:22 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2024-08-22 15:26:22 (GMT) |
commit | cb8dde6c75e35c1e4755a49c23d69f8f3205f3cc (patch) | |
tree | aec9c44a88740c3939e2976bdc1f99177a26f594 /win | |
parent | 403e88457f72f90f3ee8c07ce5854735e8951689 (diff) | |
parent | 06d3f604c9ea03a68b654e3a27b9cbfbadcff1d2 (diff) | |
download | tcl-cb8dde6c75e35c1e4755a49c23d69f8f3205f3cc.zip tcl-cb8dde6c75e35c1e4755a49c23d69f8f3205f3cc.tar.gz tcl-cb8dde6c75e35c1e4755a49c23d69f8f3205f3cc.tar.bz2 |
Remove _ATL_XP_TARGETING from rules.vc: Windows XP is no longer supported
Diffstat (limited to 'win')
-rw-r--r-- | win/rules.vc | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/win/rules.vc b/win/rules.vc index a2c40f0..2d053fe 100644 --- a/win/rules.vc +++ b/win/rules.vc @@ -1446,9 +1446,6 @@ OPTDEFINES = $(OPTDEFINES) /DNO_STRTOI64=1 !if "$(_USE_64BIT_TIME_T)" == "1"
OPTDEFINES = $(OPTDEFINES) /D_USE_64BIT_TIME_T=1
!endif
-
-# _ATL_XP_TARGETING - Newer SDK's need this to build for XP
-COMPILERFLAGS = /D_ATL_XP_TARGETING
!endif
!if "$(TCL_BUILD_FOR)" == "8"
OPTDEFINES = $(OPTDEFINES) /DTCL_MAJOR_VERSION=8
@@ -1459,9 +1456,9 @@ OPTDEFINES = $(OPTDEFINES) /DTCL_MAJOR_VERSION=8 # so we pass both
!if !$(DOING_TCL) && !$(DOING_TK)
PKGNAMEFLAGS = /DPACKAGE_NAME="\"$(PRJ_PACKAGE_TCLNAME)\"" \
- /DPACKAGE_TCLNAME="\"$(PRJ_PACKAGE_TCLNAME)\"" \
- /DPACKAGE_VERSION="\"$(DOTVERSION)\"" \
- /DMODULE_SCOPE=extern
+ /DPACKAGE_TCLNAME="\"$(PRJ_PACKAGE_TCLNAME)\"" \
+ /DPACKAGE_VERSION="\"$(DOTVERSION)\"" \
+ /DMODULE_SCOPE=extern
!endif
# crt picks the C run time based on selected OPTS
|