From 21fd7b81f428d1f0fec765465cefdf8a47cc8499 Mon Sep 17 00:00:00 2001 From: Rom Walton Date: Sat, 18 Jun 2005 02:28:03 +0000 Subject: [PATCH] *** empty log message *** svn path=/trunk/boinc/; revision=6375 --- checkin_notes | 7 +++++++ lib/stackwalker_win.h | 6 +++--- 2 files changed, 10 insertions(+), 3 deletions(-) diff --git a/checkin_notes b/checkin_notes index 27b961a280..61f9956c23 100755 --- a/checkin_notes +++ b/checkin_notes @@ -7984,3 +7984,10 @@ David 17 June 2005 cs_benchmark.C cs_scheduler.C +Rom 17 June 2005 + - Per community request, after verifing that the _CrtMemBlockHeader structure + is the same in VS 2005 I've adjusted stackwalkers requirements so that + BOINC can be built with VS 2005. + + lib/ + stackwalker.h diff --git a/lib/stackwalker_win.h b/lib/stackwalker_win.h index 9d99f22e51..3047d9f970 100644 --- a/lib/stackwalker_win.h +++ b/lib/stackwalker_win.h @@ -27,9 +27,9 @@ #error Only INTEL envirnoments are supported! #endif -// Only MS VC++ 5 to 7 -#if (_MSC_VER < 1100) || (_MSC_VER > 1310) -#error Only MS VC++ 5/6/7 supported. Check if the '_CrtMemBlockHeader' has not changed with this compiler! +// Only MS VC++ 5 to 8 +#if (_MSC_VER < 1100) || (_MSC_VER > 1400) +#error Only MS VC++ 5/6/7/8 supported. Check if the '_CrtMemBlockHeader' has not changed with this compiler! #endif typedef enum eAllocCheckOutput