1
0
mirror of https://github.com/GOSTSec/sgminer synced 2025-01-09 06:18:06 +00:00

Fixed WIN32 compilation with byteswap.

This commit is contained in:
Ycros 2011-07-09 12:39:08 +10:00
parent c9bbaec3b2
commit a5fb85ef84

View File

@ -57,7 +57,7 @@ void *alloca (size_t);
#define WANT_X8664_SSE2 1 #define WANT_X8664_SSE2 1
#endif #endif
#if ((__GNUC__ > 4) || (__GNUC__ == 4 && __GNUC_MINOR__ >= 3)) #if !defined(WIN32) && ((__GNUC__ > 4) || (__GNUC__ == 4 && __GNUC_MINOR__ >= 3))
#define WANT_BUILTIN_BSWAP #define WANT_BUILTIN_BSWAP
#else #else
#if HAVE_BYTESWAP_H #if HAVE_BYTESWAP_H