wineg++ doesn't have <ntverp.h> either (#104)

This commit is contained in:
Kevin Puetz
2020-02-29 20:59:29 -06:00
committed by GitHub
parent 966707dc1f
commit 078226b9f8

View File

@ -32,8 +32,8 @@ UWP development.
#define BOOST_PLAT_WINDOWS_SDK_VERSION BOOST_VERSION_NUMBER_NOT_AVAILABLE #define BOOST_PLAT_WINDOWS_SDK_VERSION BOOST_VERSION_NUMBER_NOT_AVAILABLE
#if BOOST_OS_WINDOWS #if BOOST_OS_WINDOWS
// MinGW (32-bit), and WinCE, don't have a ntverp.h header // MinGW (32-bit), WinCE, and wineg++ don't have a ntverp.h header
#if !defined(__MINGW32__) && !defined(_WIN32_WCE) #if !defined(__MINGW32__) && !defined(_WIN32_WCE) && !defined(__WINE__)
# include <ntverp.h> # include <ntverp.h>
# undef BOOST_PLAT_WINDOWS_SDK_VERSION # undef BOOST_PLAT_WINDOWS_SDK_VERSION
# define BOOST_PLAT_WINDOWS_SDK_VERSION BOOST_VERSION_NUMBER(0, 0, VER_PRODUCTBUILD) # define BOOST_PLAT_WINDOWS_SDK_VERSION BOOST_VERSION_NUMBER(0, 0, VER_PRODUCTBUILD)