mirror of https://github.com/BOINC/boinc.git
*** empty log message ***
svn path=/trunk/boinc/; revision=6375
This commit is contained in:
parent
adc8baa88a
commit
21fd7b81f4
|
@ -7984,3 +7984,10 @@ David 17 June 2005
|
||||||
cs_benchmark.C
|
cs_benchmark.C
|
||||||
cs_scheduler.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
|
||||||
|
|
|
@ -27,9 +27,9 @@
|
||||||
#error Only INTEL envirnoments are supported!
|
#error Only INTEL envirnoments are supported!
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Only MS VC++ 5 to 7
|
// Only MS VC++ 5 to 8
|
||||||
#if (_MSC_VER < 1100) || (_MSC_VER > 1310)
|
#if (_MSC_VER < 1100) || (_MSC_VER > 1400)
|
||||||
#error Only MS VC++ 5/6/7 supported. Check if the '_CrtMemBlockHeader' has not changed with this compiler!
|
#error Only MS VC++ 5/6/7/8 supported. Check if the '_CrtMemBlockHeader' has not changed with this compiler!
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
typedef enum eAllocCheckOutput
|
typedef enum eAllocCheckOutput
|
||||||
|
|
Loading…
Reference in New Issue