summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2025-02-27 08:32:26 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2025-02-27 08:32:26 (GMT)
commit841cd34c3b77d2b106eb06b22a48393846c0b0a3 (patch)
tree717a2ec8f50f02237139f9409ea0023d471ec0b2
parent50e955e88afe1a33e954a20af0427ac6dd938db4 (diff)
parent8e8ff12a3c87db55c035e30d68789c3194531aff (diff)
downloadtcl-841cd34c3b77d2b106eb06b22a48393846c0b0a3.zip
tcl-841cd34c3b77d2b106eb06b22a48393846c0b0a3.tar.gz
tcl-841cd34c3b77d2b106eb06b22a48393846c0b0a3.tar.bz2
Merge 9.0
-rw-r--r--win/rules.vc5
1 files changed, 3 insertions, 2 deletions
diff --git a/win/rules.vc b/win/rules.vc
index 170481f..cc16c65 100644
--- a/win/rules.vc
+++ b/win/rules.vc
@@ -24,7 +24,7 @@ _RULES_VC = 1
# For modifications that are not backward-compatible, you *must* change
# the major version.
RULES_VERSION_MAJOR = 1
-RULES_VERSION_MINOR = 13
+RULES_VERSION_MINOR = 14
# The PROJECT macro must be defined by parent makefile.
!if "$(PROJECT)" == ""
@@ -1297,7 +1297,8 @@ tklibs = "$(TKSTUBLIB)" "$(TKIMPLIB)"
# Various output paths
PRJIMPLIB = $(OUT_DIR)\$(PROJECT)$(VERSION)$(SUFX).lib
-PRJLIBNAME8 = $(PROJECT)$(VERSION)$(SUFX).$(EXT)
+# Even when building against Tcl 9, PRJLIBNAME8 must have "t"
+PRJLIBNAME8 = $(PROJECT)$(VERSION)t$(SUFX:t=).$(EXT)
# Even when building against Tcl 8, PRJLIBNAME9 must not have "t"
PRJLIBNAME9 = tcl9$(PROJECT)$(VERSION)$(SUFX:t=).$(EXT)
!if $(TCL_MAJOR_VERSION) == 8 || "$(TCL_BUILD_FOR)" == "8"