[Mplayer-cvslog] CVS: main/libmpdemux demux_mov.c,1.96,1.97

Diego Biurrun CVS diego at mplayerhq.hu
Mon Apr 21 01:15:55 CEST 2003


Update of /cvsroot/mplayer/main/libmpdemux
In directory mail:/var/tmp.root/cvs-serv16798/libmpdemux

Modified Files:
	demux_mov.c 
Log Message:
Avoid including a header file twice to prevent Cygwin gcc 2.95.3-10 from
crashing.  Also Fixes compilation with --disable-streaming on Cygwin gcc
3.2 where the include appears to be needed.


Index: demux_mov.c
===================================================================
RCS file: /cvsroot/mplayer/main/libmpdemux/demux_mov.c,v
retrieving revision 1.96
retrieving revision 1.97
diff -u -r1.96 -r1.97
--- demux_mov.c	15 Mar 2003 10:52:30 -0000	1.96
+++ demux_mov.c	20 Apr 2003 23:15:27 -0000	1.97
@@ -44,8 +44,7 @@
 #include <zlib.h>
 #endif
 
-// inclusion of fcntl.h cause cygwin gcc crash
-#ifndef __CYGWIN__
+#ifndef _FCNTL_H
 #include <fcntl.h>
 #endif
 



More information about the MPlayer-cvslog mailing list