summaryrefslogtreecommitdiffstats
path: root/Tools/msi
diff options
context:
space:
mode:
authorSteve Dower <steve.dower@python.org>2024-09-23 15:27:46 (GMT)
committerGitHub <noreply@github.com>2024-09-23 15:27:46 (GMT)
commitdf7228ce140ecb005d44a0c171ba4d098b3fa67c (patch)
tree06263ec0c042514c4692f6798920ca8f417c30dc /Tools/msi
parent6ab634840c662ae07d90655e5e50ca43421da4be (diff)
downloadcpython-df7228ce140ecb005d44a0c171ba4d098b3fa67c.zip
cpython-df7228ce140ecb005d44a0c171ba4d098b3fa67c.tar.gz
cpython-df7228ce140ecb005d44a0c171ba4d098b3fa67c.tar.bz2
gh-124254: Detect freethreaded MSI component when doing an upgrade on Windows (GH-124279)
Diffstat (limited to 'Tools/msi')
-rw-r--r--Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp b/Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp
index 7cddda9..094ddba 100644
--- a/Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp
+++ b/Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp
@@ -213,6 +213,7 @@ static struct { LPCWSTR regName; LPCWSTR variableName; } OPTIONAL_FEATURES[] = {
{ L"Shortcuts", L"Shortcuts" },
// Include_launcher and AssociateFiles are handled separately and so do
// not need to be included in this list.
+ { L"freethreaded", L"Include_freethreaded" },
{ nullptr, nullptr }
};