diff options
| author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2024-09-30 01:06:11 (GMT) |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-09-30 01:06:11 (GMT) |
| commit | 7f101dcfebf5acc4bf3a809a58b044001ee423c1 (patch) | |
| tree | a2e9e5417658130f3daee9f73d3a128779612a82 /Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp | |
| parent | 8d3a0fecbe2edb69cf66db82f1c59601aac94651 (diff) | |
| download | cpython-7f101dcfebf5acc4bf3a809a58b044001ee423c1.zip cpython-7f101dcfebf5acc4bf3a809a58b044001ee423c1.tar.gz cpython-7f101dcfebf5acc4bf3a809a58b044001ee423c1.tar.bz2 | |
[3.13] gh-124254: Detect freethreaded MSI component when doing an upgrade on Windows (GH-124279) (#124347)
gh-124254: Detect freethreaded MSI component when doing an upgrade on Windows (GH-124279)
(cherry picked from commit df7228ce140ecb005d44a0c171ba4d098b3fa67c)
Co-authored-by: Steve Dower <steve.dower@python.org>
Diffstat (limited to 'Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp')
| -rw-r--r-- | Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp | 1 |
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 } }; |
