mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-07-07 17:00:32 +02:00
Fix build on windows and mac
Replaced all occurrences of #if* __WXMSW__ with WIN32, and all occurrences of __WXMAC_OSX__ with MAC_OSX, and made sure those are defined appropriately in the makefile and bitcoin-qt.pro.
This commit is contained in:
@ -30,7 +30,7 @@ typedef unsigned long long uint64;
|
||||
#define for if (false) ; else for
|
||||
#endif
|
||||
|
||||
#ifdef __WXMSW__
|
||||
#ifdef WIN32
|
||||
#include <windows.h>
|
||||
// This is used to attempt to keep keying material out of swap
|
||||
// Note that VirtualLock does not provide this as a guarantee on Windows,
|
||||
|
Reference in New Issue
Block a user