libmicrohttpd

HTTP/1.x server C library (MHD 1.x, stable)
Log | Files | Refs | Submodules | README | LICENSE

commit 4ddb80153cf400c1823eb772e9b54c4ef343fc7a
parent 4d5f24f7df61fdc96aea7b370f1e8a2f81bb825c
Author: Evgeny Grin (Karlson2k) <k2k@narod.ru>
Date:   Tue, 30 May 2023 15:41:31 +0300

W32 VS Project: fixed warning with external build systems

Diffstat:
Mw32/common/common-build-settings.props | 6+++---
1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/w32/common/common-build-settings.props b/w32/common/common-build-settings.props @@ -3,9 +3,9 @@ <PropertyGroup Label="UserMacros"> <!-- Target minimum OS version: WinXP = 0; Vista = 1; Win7 = 2; Win8 = 3... Only 0, 1 and 3 are used currently --> - <TargetOSLevel Condition="$(Platform.StartsWith('ARM'))">3</TargetOSLevel> - <TargetOSLevel Condition="! $(Platform.StartsWith('ARM')) And $(PlatformToolset.EndsWith('_xp'))">0</TargetOSLevel> - <TargetOSLevel Condition="! $(Platform.StartsWith('ARM')) And ! $(PlatformToolset.EndsWith('_xp'))">1</TargetOSLevel> + <TargetOSLevel Condition="$(Platform.ToLowerInvariant().StartsWith('arm'))">3</TargetOSLevel> + <TargetOSLevel Condition="! $(Platform.ToLowerInvariant().StartsWith('arm')) And $(PlatformToolset.EndsWith('_xp'))">0</TargetOSLevel> + <TargetOSLevel Condition="! $(Platform.ToLowerInvariant().StartsWith('arm')) And ! $(PlatformToolset.EndsWith('_xp'))">1</TargetOSLevel> <MhdNumBits Condition="$(Platform.EndsWith('64'))">64</MhdNumBits> <MhdNumBits Condition="! $(Platform.EndsWith('64'))">32</MhdNumBits> </PropertyGroup>