mirror of
https://github.com/minetest/minetest.git
synced 2024-11-04 14:53:45 +01:00
Don't compile pcgrandom on Windows
There it isn't needed.
This commit is contained in:
parent
f9e394a466
commit
337c02c0f0
@ -496,6 +496,7 @@ static void calculate_H_AMK(SRP_HashAlgorithm alg, unsigned char *dest, const mp
|
||||
hash_final(alg, &ctx, dest);
|
||||
}
|
||||
|
||||
#ifndef WIN32
|
||||
|
||||
struct srp_pcgrandom {
|
||||
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;
|
||||
srp_pcgrandom_next(r);
|
||||
}
|
||||
|
||||
#endif
|
||||
|
||||
static SRP_Result fill_buff()
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user