VS 2010

995 views
Skip to first unread message

Josef Kohout

unread,
Feb 24, 2010, 9:35:15 AM2/24/10
to Crypto++ Users
Dear All,

I have downloaded Crypto 5.6 and tried to use it with VS 2010 (RC).
The build is not without errors but a slight modification makes it
work:

a) pubkey.h line 243:
return HashIdentifier(NULL, 0);
->
return HashIdentifier((const byte*)NULL, 0);

b) zdeflate.cpp line 389
#if defined(_STDEXT_BEGIN) && !(defined(_MSC_VER) && _MSC_VER < 1400)
&& !defined(_STLPORT_VERSION)
->
#if defined(_STDEXT_BEGIN) && !(defined(_MSC_VER) && (_MSC_VER < 1400
|| _MSC_VER >= 1600)) && !defined(_STLPORT_VERSION)

So you may incorporate it into the next release version :-)

Regards

Josef

compuman81

unread,
Feb 28, 2010, 12:04:22 AM2/28/10
to Crypto++ Users
Thanks for this quick fix!

When I seen all the build errors I just said screw it and went to
dinner because I figured it was going to be a huge pain and hassle to
get this working, but after your changes I successfully built.
Amazing that's all that had to be changed.

Thanks again!

Reply all
Reply to author
Forward
0 new messages