mirror of https://github.com/python/cpython.git
bpo-45220: Remove invalid include from resource definition files on Windows (GH-29396)
This commit is contained in:
parent
36b4f9e2a7
commit
fd0c84dc28
|
@ -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)
|
||||
|
|
|
@ -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"
|
||||
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
|
|
|
@ -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"
|
||||
|
|
|
@ -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"
|
||||
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
|
|
|
@ -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"
|
||||
|
|
|
@ -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"
|
||||
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
|
|
|
@ -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>
|
||||
|
|
Loading…
Reference in New Issue