mirror of
https://github.com/ekeeke/Genesis-Plus-GX.git
synced 2024-11-10 21:05:12 +01:00
[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:
parent
5eafe5b0cc
commit
7a4e30d27e
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user