qt-faststart: Undefine fseeko/ftello before defining them

This avoids a number of redefinition warnings on MinGW64.
This commit is contained in:
Diego Biurrun 2014-08-15 21:43:48 +02:00
parent 1019b7c4ed
commit 3526ab891c
1 changed files with 4 additions and 0 deletions

View File

@ -30,10 +30,14 @@
#include <string.h>
#ifdef __MINGW32__
#undef fseeko
#define fseeko(x, y, z) fseeko64(x, y, z)
#undef ftello
#define ftello(x) ftello64(x)
#elif defined(_WIN32)
#undef fseeko
#define fseeko(x, y, z) _fseeki64(x, y, z)
#undef ftello
#define ftello(x) _ftelli64(x)
#endif