diff options
author | Michael Stahl <mstahl@redhat.com> | 2017-05-30 16:37:56 +0200 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2017-05-30 20:19:20 +0200 |
commit | 2829dabaf37e6d9c736430f3fb9bbfb786b078ad (patch) | |
tree | 2afa93189f2068fdd794b16e215c98f6310c935f /solenv | |
parent | 3d15405e436db0cbad351808ef3ca0e47f47a701 (diff) |
gbuild: define _WIN32_WINNT = _WIN32_WINNT_WIN7 = 0x0601
And rely on implicitly derived
_WIN32_IE = _WIN32_IE_WIN7 = _WIN32_IE_IE80
Change-Id: I94717e2ed66387bdc76f9047c02c0820d4adc1f9
Diffstat (limited to 'solenv')
-rw-r--r-- | solenv/gbuild/platform/windows.mk | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/solenv/gbuild/platform/windows.mk b/solenv/gbuild/platform/windows.mk index e636de1c648d..51e8906e16f3 100644 --- a/solenv/gbuild/platform/windows.mk +++ b/solenv/gbuild/platform/windows.mk @@ -23,13 +23,11 @@ gb_Helper_LIBRARY_PATH_VAR := PATH gb_MKTEMP := mktemp --tmpdir=$(gb_TMPDIR) gbuild.XXXXXX # define _WIN32_WINNT and WINVER will be derived from it in sdkddkver.h -# with a 7.1 SDK target Windows XP, with 8.x SDK target Windows Vista -# currently _WIN32_IE is defined to a higher version than would be derived -# in sdkddkver.h from _WIN32_WINNT=0x0502 but if _WIN32_WINNT >= 0x0600 -# the derived value is sufficient +# current baseline is Windows 7 (NT 6.1) +# for _WIN32_IE, if _WIN32_WINNT >= 0x0600 the derived value from +# sdkddkver.h is sufficient gb_OSDEFS := \ - -D_WIN32_WINNT=$(if $(filter 70,$(WINDOWS_SDK_VERSION)),0x0502,0x0600) \ - -D_WIN32_IE=0x0700 \ + -D_WIN32_WINNT=0x0601 \ -DWIN32 \ -DWNT \ -DNOMINMAX \ |