From 078226b9f832303d175328919641aee98d65e031 Mon Sep 17 00:00:00 2001 From: Kevin Puetz Date: Sat, 29 Feb 2020 20:59:29 -0600 Subject: [PATCH] wineg++ doesn't have either (#104) --- include/boost/predef/platform/windows_uwp.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/boost/predef/platform/windows_uwp.h b/include/boost/predef/platform/windows_uwp.h index 325f3b6..8dc1380 100644 --- a/include/boost/predef/platform/windows_uwp.h +++ b/include/boost/predef/platform/windows_uwp.h @@ -32,8 +32,8 @@ UWP development. #define BOOST_PLAT_WINDOWS_SDK_VERSION BOOST_VERSION_NUMBER_NOT_AVAILABLE #if BOOST_OS_WINDOWS -// MinGW (32-bit), and WinCE, don't have a ntverp.h header -#if !defined(__MINGW32__) && !defined(_WIN32_WCE) +// MinGW (32-bit), WinCE, and wineg++ don't have a ntverp.h header +#if !defined(__MINGW32__) && !defined(_WIN32_WCE) && !defined(__WINE__) # include # undef BOOST_PLAT_WINDOWS_SDK_VERSION # define BOOST_PLAT_WINDOWS_SDK_VERSION BOOST_VERSION_NUMBER(0, 0, VER_PRODUCTBUILD)