diff options
author | James Almer <jamrial@gmail.com> | 2017-11-11 10:22:11 -0300 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2017-11-11 10:22:11 -0300 |
commit | f87ad3a058bfee786e942106c5c3450c02a66d48 (patch) | |
tree | ffba88e386e67353bbcecf0f3050439052fd1a8f /tools | |
parent | 7e76e1ea80052ee95ef33d5341b9251b90766c9c (diff) | |
parent | e41daa62465036ad36ad0bd14e4936e848d7f07e (diff) | |
download | ffmpeg-f87ad3a058bfee786e942106c5c3450c02a66d48.tar.gz |
Merge commit 'e41daa62465036ad36ad0bd14e4936e848d7f07e'
* commit 'e41daa62465036ad36ad0bd14e4936e848d7f07e':
Remove support for building for mingw32ce (Windows CE)
Merged-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'tools')
-rw-r--r-- | tools/qt-faststart.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/tools/qt-faststart.c b/tools/qt-faststart.c index 728f80c39c..97be019c58 100644 --- a/tools/qt-faststart.c +++ b/tools/qt-faststart.c @@ -29,10 +29,7 @@ #include <inttypes.h> #include <string.h> -#ifdef __MINGW32CE__ -#define fseeko(x, y, z) fseek(x, y, z) -#define ftello(x) ftell(x) -#elif defined(__MINGW32__) +#ifdef __MINGW32__ #undef fseeko #define fseeko(x, y, z) fseeko64(x, y, z) #undef ftello |