[Core/CD] fix libFLAC compilation on MinGW-w64

Without autotools, fseeko cannot be detected automatically, so we cheat
a little.
This commit is contained in:
Clownacy 2018-07-09 17:41:36 +01:00
parent 5eafe5b0cc
commit 7a4e30d27e

View File

@ -53,7 +53,7 @@
#define fseeko _fseeki64
#define ftello _ftelli64
#else /* MinGW */
#if !defined(HAVE_FSEEKO)
#if !defined(HAVE_FSEEKO) && !defined(__MINGW64_VERSION_MAJOR)
#define fseeko fseeko64
#define ftello ftello64
#endif