Commit 80649670 authored by diego's avatar diego

Only #define lseek to _lseeki64 on MinGW, not MinGW CE.

This fixes compilation on WinCE, which does not support _lseeki64.
patch by Ismail Dönmez, ismail namtrac org


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@19425 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent b9e095ab
...@@ -29,7 +29,7 @@ ...@@ -29,7 +29,7 @@
#include "config.h" #include "config.h"
#ifdef __MINGW32__ #if defined(__MINGW32__) && !defined(__MINGW32CE__)
# include <fcntl.h> # include <fcntl.h>
# define lseek(f,p,w) _lseeki64((f), (p), (w)) # define lseek(f,p,w) _lseeki64((f), (p), (w))
#endif #endif
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment