using gcc 3.2, I had to make the following change to version 5.5.1

diff -r Crypto++-5.5.1/vmac.cpp Crypto++-5.5.1.mine/vmac.cpp
516c516
<                       #define a1 (((word32 *)(polyS+i*4))[3-
NativeByteOrder::ToEnum()])
---
>                       #define a1 (*(((word32 
> *)(polyS+i*4))+3-NativeByteOrder::ToEnum()))
518c518
<                       #define a3 (((word32 *)(polyS+i*4))[1-
NativeByteOrder::ToEnum()])
---
>                       #define a3 (*(((word32 
> *)(polyS+i*4))+1-NativeByteOrder::ToEnum()))


--~--~---------~--~----~------------~-------~--~----~
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.
-~----------~----~----~----~------~----~------~--~---

Reply via email to