Browse Source

qt-faststart: Undefine fseeko/ftello before defining them

This avoids a number of redefinition warnings on MinGW64.
tags/n2.4
Diego Biurrun 10 years ago
parent
commit
3526ab891c
1 changed files with 4 additions and 0 deletions
  1. +4
    -0
      tools/qt-faststart.c

+ 4
- 0
tools/qt-faststart.c 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



Loading…
Cancel
Save