Browse Source

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

Originally committed as revision 19425 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.6
İsmail Dönmez Diego Biurrun 16 years ago
parent
commit
b504ce57ed
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavformat/os_support.h

+ 1
- 1
libavformat/os_support.h View File

@@ -29,7 +29,7 @@

#include "config.h"

#ifdef __MINGW32__
#if defined(__MINGW32__) && !defined(__MINGW32CE__)
# include <fcntl.h>
# define lseek(f,p,w) _lseeki64((f), (p), (w))
#endif


Loading…
Cancel
Save