From b504ce57ed18d2f0a6ace22c645cd5657315b521 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C4=B0smail=20D=C3=B6nmez?= Date: Mon, 13 Jul 2009 17:16:36 +0000 Subject: [PATCH] =?UTF-8?q?Only=20#define=20lseek=20to=20=5Flseeki64=20on?= =?UTF-8?q?=20MinGW,=20not=20MinGW=20CE.=20This=20fixes=20compilation=20on?= =?UTF-8?q?=20WinCE,=20which=20does=20not=20support=20=5Flseeki64.=20patch?= =?UTF-8?q?=20by=20Ismail=20D=C3=B6nmez,=20ismail=20namtrac=20org?= 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(-) 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