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!


On Feb 24, 9:35 am, Josef Kohout <[email protected]> wrote:
> 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

-- 
You received this message because you are subscribed to the "Crypto++ Users" 
Google Group.
To unsubscribe, send an email to [email protected].
More information about Crypto++ and this group is available at 
http://www.cryptopp.com.
  • VS 2010 Josef Kohout
    • Re: VS 2010 compuman81

Reply via email to