mirror of
https://github.com/boostorg/predef.git
synced 2025-07-29 19:47:12 +02:00
wineg++ doesn't have <ntverp.h> either (#104)
This commit is contained in:
@ -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 <ntverp.h>
|
||||
# undef BOOST_PLAT_WINDOWS_SDK_VERSION
|
||||
# define BOOST_PLAT_WINDOWS_SDK_VERSION BOOST_VERSION_NUMBER(0, 0, VER_PRODUCTBUILD)
|
||||
|
Reference in New Issue
Block a user