diff options
| author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2025-02-27 08:32:26 (GMT) |
|---|---|---|
| committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2025-02-27 08:32:26 (GMT) |
| commit | 841cd34c3b77d2b106eb06b22a48393846c0b0a3 (patch) | |
| tree | 717a2ec8f50f02237139f9409ea0023d471ec0b2 | |
| parent | 50e955e88afe1a33e954a20af0427ac6dd938db4 (diff) | |
| parent | 8e8ff12a3c87db55c035e30d68789c3194531aff (diff) | |
| download | tcl-841cd34c3b77d2b106eb06b22a48393846c0b0a3.zip tcl-841cd34c3b77d2b106eb06b22a48393846c0b0a3.tar.gz tcl-841cd34c3b77d2b106eb06b22a48393846c0b0a3.tar.bz2 | |
Merge 9.0
| -rw-r--r-- | win/rules.vc | 5 |
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"
|
