diff options
author | Martin Storsjö <martin@martin.st> | 2017-08-30 22:04:30 +0300 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2017-08-31 14:21:08 +0300 |
commit | e41daa62465036ad36ad0bd14e4936e848d7f07e (patch) | |
tree | 9697c49546f103326df3ac904fb509d2126b61bd /tools | |
parent | 173b56218f39c6463be0e182259e2deead106936 (diff) | |
download | ffmpeg-e41daa62465036ad36ad0bd14e4936e848d7f07e.tar.gz |
Remove support for building for mingw32ce (Windows CE)
The toolchain for this target is unmaintained since many years.
While it has been continuously build tested on fate, it hasn't
actually been tested at runtime since many, many years (and back
then, only a few codecs in libavcodec were tested).
So far, keeping support for it has been mostly effortless, but
the compiler does seem to have issues with dllimported data symbols,
ending up as internal compiler errors in some cases. Instead of
jumping through further hoops to work around that, just remove the
target.
Signed-off-by: Martin Storsjö <martin@martin.st>
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 b798ccd4bf..0db5ca2138 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 |