Mustafa Han writes:
> Hi,
> For md5 running you need to modify md5.h for alpha (64 bits) as this :
> # diff ../sqwebmail-1.0.2/md5/md5.h md5/md5.h
>
> 36 c36 ???
>
> < #define MD5_WORD unsigned long #
> ---
>> #define MD5_WORD unsigned int #
> ok!
The full snippet is:
#ifdef HAVE_U_INT32_T
#define MD5_WORD u_int32_t
#else
#ifdef HAVE_UINT32_T
#define MD5_WORD uint32_t
#else
#define MD5_WORD unsigned long
#endif
#endif
Do you have a more conveniently defined 32-bit datatype that's defined
somewhere?
--
Sam