1
0
mirror of https://github.com/Mbed-TLS/mbedtls.git synced 2025-08-08 17:42:09 +03:00

Fix the build for mingw and CMake + VStudio

Changes to the build to add the new Win32 Crypto API's inadvertently broke
the build for mingw and Visual Studio builds when generated by CMake.

Signed-off-by: Simon Butcher <simon.butcher@arm.com>
This commit is contained in:
Simon Butcher
2018-03-14 15:10:31 +00:00
committed by Minos Galanakis
parent 0ec1e68548
commit e068aa7ad5
4 changed files with 6 additions and 6 deletions

View File

@@ -51,7 +51,7 @@
#include <windows.h>
#if _WIN32_WINNT >= 0x0501 /* _WIN32_WINNT_WINXP */
#include <bcrypt.h>
#if _MSC_VER <= 1600
#if defined(_MSC_VER) && _MSC_VER <= 1600
/* Visual Studio 2010 and earlier issue a warning when both <stdint.h> and <intsafe.h> are included, as they
* redefine a number of <TYPE>_MAX constants. These constants are guaranteed to be the same, though, so
* we suppress the warning when including intsafe.h.
@@ -60,7 +60,7 @@
#pragma warning( disable : 4005 )
#endif
#include <intsafe.h>
#if _MSC_VER <= 1600
#if defined(_MSC_VER) && _MSC_VER <= 1600
#pragma warning( pop )
#endif