aboutsummaryrefslogtreecommitdiff
path: root/src/engine/pseudobundle.cpp
diff options
context:
space:
mode:
authorSean Hall <r.sean.hall@gmail.com>2020-10-18 14:10:39 -0500
committerSean Hall <r.sean.hall@gmail.com>2020-10-24 20:07:21 -0500
commit60717700e175d38412559113c8a5388c954c7c91 (patch)
tree4daa5ac91961b2a682c53db1009e9d3a03cd285a /src/engine/pseudobundle.cpp
parente879388d96157db6a6e7b2ee79871ef7ebbd3015 (diff)
downloadwix-60717700e175d38412559113c8a5388c954c7c91.tar.gz
wix-60717700e175d38412559113c8a5388c954c7c91.tar.bz2
wix-60717700e175d38412559113c8a5388c954c7c91.zip
Get the internal Burn version to be Major.Minor.Patch.BuildNumber.
Diffstat (limited to '')
-rw-r--r--src/engine/pseudobundle.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/engine/pseudobundle.cpp b/src/engine/pseudobundle.cpp
index ebdc040a..70f93701 100644
--- a/src/engine/pseudobundle.cpp
+++ b/src/engine/pseudobundle.cpp
@@ -126,7 +126,7 @@ extern "C" HRESULT PseudoBundleInitialize(
126 } 126 }
127 127
128 // Only support progress from engines that are compatible (aka: version greater than or equal to last protocol breaking change *and* versions that are older or the same as this engine). 128 // Only support progress from engines that are compatible (aka: version greater than or equal to last protocol breaking change *and* versions that are older or the same as this engine).
129 pPackage->Exe.protocol = (FILEMAKEVERSION(3, 6, 2221, 0) <= qwEngineVersion && qwEngineVersion <= FILEMAKEVERSION(rmj, rmm, rup, 0)) ? BURN_EXE_PROTOCOL_TYPE_BURN : BURN_EXE_PROTOCOL_TYPE_NONE; 129 pPackage->Exe.protocol = (FILEMAKEVERSION(3, 6, 2221, 0) <= qwEngineVersion && qwEngineVersion <= FILEMAKEVERSION(rmj, rmm, rup, rpr)) ? BURN_EXE_PROTOCOL_TYPE_BURN : BURN_EXE_PROTOCOL_TYPE_NONE;
130 130
131 // All versions of Burn past v3.9 RTM support suppressing ancestors. 131 // All versions of Burn past v3.9 RTM support suppressing ancestors.
132 pPackage->Exe.fSupportsAncestors = FILEMAKEVERSION(3, 9, 1006, 0) <= qwEngineVersion; 132 pPackage->Exe.fSupportsAncestors = FILEMAKEVERSION(3, 9, 1006, 0) <= qwEngineVersion;