diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2021-11-04 17:01:19 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-04 17:01:19 (GMT) |
commit | 1a44d27e6f8a06cb7d56e39be48852f0c3f4502b (patch) | |
tree | 364986b22b56c3cd7c15ece10f64817bcd2951cf | |
parent | 7e244fc80434584d082c0c7a3d9a92e69aa30061 (diff) | |
download | cpython-1a44d27e6f8a06cb7d56e39be48852f0c3f4502b.zip cpython-1a44d27e6f8a06cb7d56e39be48852f0c3f4502b.tar.gz cpython-1a44d27e6f8a06cb7d56e39be48852f0c3f4502b.tar.bz2 |
bpo-45220: Remove invalid include from resource definition files on Windows (GH-29396)
(cherry picked from commit fd0c84dc28d00d68e4f43034dc41786a682390fd)
Co-authored-by: Steve Dower <steve.dower@python.org>
-rw-r--r-- | PC/pylauncher.rc | 1 | ||||
-rw-r--r-- | PC/pyshellext.rc | 1 | ||||
-rw-r--r-- | PC/python_exe.rc | 1 | ||||
-rw-r--r-- | PC/python_nt.rc | 1 | ||||
-rw-r--r-- | PC/pythonw_exe.rc | 1 | ||||
-rw-r--r-- | PC/sqlite3.rc | 1 | ||||
-rw-r--r-- | PCbuild/python.props | 3 |
7 files changed, 0 insertions, 9 deletions
diff --git a/PC/pylauncher.rc b/PC/pylauncher.rc index 92987af..d21f9b6 100644 --- a/PC/pylauncher.rc +++ b/PC/pylauncher.rc @@ -4,7 +4,6 @@ // Include the manifest file that indicates we support all // current versions of Windows. -#include <winuser.h> 1 RT_MANIFEST "python.manifest" #if defined(PY_ICON) diff --git a/PC/pyshellext.rc b/PC/pyshellext.rc index e5924a4..fc607e9 100644 --- a/PC/pyshellext.rc +++ b/PC/pyshellext.rc @@ -4,7 +4,6 @@ // Include the manifest file that indicates we support all // current versions of Windows. -#include <winuser.h> 1 RT_MANIFEST "python.manifest" ///////////////////////////////////////////////////////////////////////////// diff --git a/PC/python_exe.rc b/PC/python_exe.rc index ae0b029..5eba899 100644 --- a/PC/python_exe.rc +++ b/PC/python_exe.rc @@ -4,7 +4,6 @@ // Include the manifest file that indicates we support all // current versions of Windows. -#include <winuser.h> 1 RT_MANIFEST "python.manifest" 1 ICON DISCARDABLE "icons\python.ico" diff --git a/PC/python_nt.rc b/PC/python_nt.rc index b5fb58f..6fd872c 100644 --- a/PC/python_nt.rc +++ b/PC/python_nt.rc @@ -4,7 +4,6 @@ // Include the manifest file that indicates we support all // current versions of Windows. -#include <winuser.h> 2 RT_MANIFEST "python.manifest" ///////////////////////////////////////////////////////////////////////////// diff --git a/PC/pythonw_exe.rc b/PC/pythonw_exe.rc index 88bf359..562652b 100644 --- a/PC/pythonw_exe.rc +++ b/PC/pythonw_exe.rc @@ -4,7 +4,6 @@ // Include the manifest file that indicates we support all // current versions of Windows. -#include <winuser.h> 1 RT_MANIFEST "python.manifest" 1 ICON DISCARDABLE "icons\pythonw.ico" diff --git a/PC/sqlite3.rc b/PC/sqlite3.rc index 84bd87d..d2c18f8 100644 --- a/PC/sqlite3.rc +++ b/PC/sqlite3.rc @@ -4,7 +4,6 @@ // Include the manifest file that indicates we support all // current versions of Windows. -#include <winuser.h> 2 RT_MANIFEST "python.manifest" ///////////////////////////////////////////////////////////////////////////// diff --git a/PCbuild/python.props b/PCbuild/python.props index 888de37..42c67de 100644 --- a/PCbuild/python.props +++ b/PCbuild/python.props @@ -107,9 +107,6 @@ <!-- Sometimes the version in the registry has to .0 suffix, and sometimes it doesn't. Check and add it --> <_RegistryVersion Condition="$(_RegistryVersion) != '' and !$(_RegistryVersion.EndsWith('.0'))">$(_RegistryVersion).0</_RegistryVersion> - <!-- Avoid upgrading to Windows 11 SDK for now, but assume the latest Win10 SDK is installed --> - <_RegistryVersion Condition="$([System.Version]::Parse($(_RegistryVersion))) >= $([System.Version]::Parse(`10.0.22000.0`))">10.0.19041.0</_RegistryVersion> - <!-- The minimum allowed SDK version to use for building --> <DefaultWindowsSDKVersion>10.0.10586.0</DefaultWindowsSDKVersion> <DefaultWindowsSDKVersion Condition="$(_RegistryVersion) != '' and $([System.Version]::Parse($(_RegistryVersion))) > $([System.Version]::Parse($(DefaultWindowsSDKVersion)))">$(_RegistryVersion)</DefaultWindowsSDKVersion> |