diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2019-11-26 22:49:05 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2019-11-26 22:49:05 (GMT) |
commit | 9eaa827e5932886826822f941f035edfc47ee8ae (patch) | |
tree | 6fc1c326ca093637f4806c0346b4e4a0ec38ce8f /win/rules.vc | |
parent | 29db2a676191a091fee12e255a0d990ecae20397 (diff) | |
parent | d8a1ef082777292ede109a0ed919d8174d6929dd (diff) | |
download | tcl-9eaa827e5932886826822f941f035edfc47ee8ae.zip tcl-9eaa827e5932886826822f941f035edfc47ee8ae.tar.gz tcl-9eaa827e5932886826822f941f035edfc47ee8ae.tar.bz2 |
Merge 8.7
Diffstat (limited to 'win/rules.vc')
-rw-r--r-- | win/rules.vc | 17 |
1 files changed, 15 insertions, 2 deletions
diff --git a/win/rules.vc b/win/rules.vc index e0225a2..eb658f2 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 = 4
+RULES_VERSION_MINOR = 5
# The PROJECT macro must be defined by parent makefile.
!if "$(PROJECT)" == ""
@@ -976,6 +976,19 @@ VERSION = $(DOTVERSION:.=) !endif # $(DOING_TCL) ... etc.
+# Windows RC files have 3 version components. Ensure this irrespective
+# of how many components the package has specified. Basically, ensure
+# minimum 4 components by appending 4 0's and then pick out the first 4.
+# Also take care of the fact that DOTVERSION may have "a" or "b" instead
+# of "." separating the version components.
+DOTSEPARATED=$(DOTVERSION:a=.)
+DOTSEPARATED=$(DOTSEPARATED:b=.)
+!if [echo RCCOMMAVERSION = \> versions.vc] \
+ || [for /f "tokens=1,2,3,4,5* delims=." %a in ("$(DOTSEPARATED).0.0.0.0") do echo %a,%b,%c,%d >> versions.vc]
+!error *** Could not generate RCCOMMAVERSION ***
+!endif
+!include versions.vc
+
################################################################
# 10. Construct output directory and file paths
# Figure-out how to name our intermediate and output directories.
@@ -1490,7 +1503,7 @@ GUIEXECMD = $(link32) $(guilflags) -out:$@ $(baselibs) $(tcllibs) $(tklibs) RESCMD = $(rc32) -fo $@ -r -i "$(GENERICDIR)" -i "$(TMP_DIR)" \
$(TCL_INCLUDES) \
/DDEBUG=$(DEBUG) -d UNCHECKED=$(UNCHECKED) \
- /DCOMMAVERSION=$(DOTVERSION:.=,),0 \
+ /DCOMMAVERSION=$(RCCOMMAVERSION) \
/DDOTVERSION=\"$(DOTVERSION)\" \
/DVERSION=\"$(VERSION)\" \
/DSUFX=\"$(SUFX)\" \
|