From 89dd133da730890f79ee7275c4d97a56e2e084d2 Mon Sep 17 00:00:00 2001 From: alex Date: Sun, 1 Sep 2013 00:25:12 +0400 Subject: [PATCH] Fix WIN32 compilation issues --- src/checkpoints.h | 6 ++++++ 1 files changed, 6 insertions(+), 0 deletions(-) diff --git a/src/checkpoints.h b/src/checkpoints.h index 101645e..a8e7ecb 100644 --- a/src/checkpoints.h +++ b/src/checkpoints.h @@ -10,6 +10,12 @@ #define CHECKPOINT_MAX_SPAN (60 * 60 * 4) // max 4 hours before latest block +#ifdef WIN32 +#undef STRICT +#undef PERMISSIVE +#undef ADVISORY +#endif + class uint256; class CBlockIndex; class CSyncCheckpoint; -- 1.7.1