From: est31 Date: Sun, 8 Nov 2015 17:16:20 +0000 (+0100) Subject: Don't compile pcgrandom on Windows X-Git-Tag: 0.4.14~526 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=337c02c0f0186c52e2bd4307c6018295a1d2b137;p=oweals%2Fminetest.git Don't compile pcgrandom on Windows There it isn't needed. --- diff --git a/src/util/srp.cpp b/src/util/srp.cpp index b4af58d62..e3812ee54 100644 --- a/src/util/srp.cpp +++ b/src/util/srp.cpp @@ -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() {