Don't compile pcgrandom on Windows

There it isn't needed.
This commit is contained in:
est31 2015-11-08 18:16:20 +01:00
parent f9e394a466
commit 337c02c0f0

View File

@ -496,6 +496,7 @@ static void calculate_H_AMK(SRP_HashAlgorithm alg, unsigned char *dest, const mp
hash_final(alg, &ctx, dest); hash_final(alg, &ctx, dest);
} }
#ifndef WIN32
struct srp_pcgrandom { struct srp_pcgrandom {
unsigned long long int m_state; unsigned long long int m_state;
@ -521,7 +522,7 @@ static void srp_pcgrandom_seed(srp_pcgrandom *r, unsigned long long int state,
r->m_state += state; r->m_state += state;
srp_pcgrandom_next(r); srp_pcgrandom_next(r);
} }
#endif
static SRP_Result fill_buff() static SRP_Result fill_buff()
{ {