From b504ce57ed18d2f0a6ace22c645cd5657315b521 Mon Sep 17 00:00:00 2001 From: İsmail Dönmez Date: Mon, 13 Jul 2009 17:16:36 +0000 Subject: 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 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Originally committed as revision 19425 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavformat/os_support.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavformat/os_support.h') diff --git a/libavformat/os_support.h b/libavformat/os_support.h index f6330d8c86..d4603632f7 100644 --- a/libavformat/os_support.h +++ b/libavformat/os_support.h @@ -29,7 +29,7 @@ #include "config.h" -#ifdef __MINGW32__ +#if defined(__MINGW32__) && !defined(__MINGW32CE__) # include # define lseek(f,p,w) _lseeki64((f), (p), (w)) #endif -- cgit v1.2.3