diff options
author | Riccardo Spagni <ric@spagni.net> | 2019-04-18 22:04:11 +0200 |
---|---|---|
committer | Riccardo Spagni <ric@spagni.net> | 2019-04-18 22:04:11 +0200 |
commit | 71c6b248935ca17af6a5c62f6de05670301861a2 (patch) | |
tree | 7809cb8c013c655388b18e8754cd0d2eb3e298a9 /src | |
parent | Merge pull request #5463 (diff) | |
parent | Windows: work around a boost 1.70 and cmake SNAFU (diff) | |
download | monero-71c6b248935ca17af6a5c62f6de05670301861a2.tar.xz |
Merge pull request #5464
0f52fe4c Windows: work around a boost 1.70 and cmake SNAFU (iDunk5400)
b414b69f Windows: fix a build error in MSYS2 with boost 1.70.0 (iDunk5400)
Diffstat (limited to 'src')
-rw-r--r-- | src/common/util.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/common/util.cpp b/src/common/util.cpp index 3388974ce..db5aa3052 100644 --- a/src/common/util.cpp +++ b/src/common/util.cpp @@ -69,6 +69,9 @@ using namespace epee; #include "net/http_client.h" // epee::net_utils::... #ifdef WIN32 +#ifndef STRSAFE_NO_DEPRECATE +#define STRSAFE_NO_DEPRECATE +#endif #include <windows.h> #include <shlobj.h> #include <strsafe.h> |