[Ffmpeg-cvslog] CVS: ffmpeg/libavformat os_support.c,1.7,1.8
Diego Biurrun CVS
diego
Mon Jan 23 01:58:01 CET 2006
Update of /cvsroot/ffmpeg/ffmpeg/libavformat
In directory mail:/var2/tmp/cvs-serv19414/libavformat
Modified Files:
os_support.c
Log Message:
Skip all includes for WinCE, instead of falling through to the #else case.
Index: os_support.c
===================================================================
RCS file: /cvsroot/ffmpeg/ffmpeg/libavformat/os_support.c,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -d -r1.7 -r1.8
--- os_support.c 22 Jan 2006 18:34:16 -0000 1.7
+++ os_support.c 23 Jan 2006 00:57:59 -0000 1.8
@@ -18,7 +18,9 @@
*/
#include "config.h"
#include "avformat.h"
-#if defined(CONFIG_WIN32) && !defined(CONFIG_WINCE)
+#if defined(CONFIG_WINCE)
+/* Skip includes on WinCE. */
+#elif defined(CONFIG_WIN32)
#include <sys/types.h>
#include <sys/timeb.h>
#elif defined(CONFIG_OS2)
More information about the ffmpeg-cvslog
mailing list