hcrypto: Fix Win 32 cpp checks
The correct test for a windows build is if defined(_WIN32), not just if _WIN32. Fix a few places in the build which do the wrong thing, as it gives compiler warnings.
This commit is contained in:
@@ -44,7 +44,7 @@
|
||||
#include <evp.h>
|
||||
#include <evp-hcrypto.h>
|
||||
#include <evp-cc.h>
|
||||
#if _WIN32
|
||||
#if defined(_WIN32)
|
||||
#include <evp-w32.h>
|
||||
#endif
|
||||
#include <evp-pkcs11.h>
|
||||
|
@@ -39,7 +39,7 @@
|
||||
#include <evp.h>
|
||||
#include <evp-hcrypto.h>
|
||||
#include <evp-cc.h>
|
||||
#if _WIN32
|
||||
#if defined(_WIN32)
|
||||
#include <evp-w32.h>
|
||||
#endif
|
||||
#include <evp-pkcs11.h>
|
||||
|
@@ -41,7 +41,7 @@
|
||||
#include <evp.h>
|
||||
#include <evp-hcrypto.h>
|
||||
#include <evp-cc.h>
|
||||
#if _WIN32
|
||||
#if defined(_WIN32)
|
||||
#include <evp-w32.h>
|
||||
#endif
|
||||
#include <evp-pkcs11.h>
|
||||
|
Reference in New Issue
Block a user