[Mplayer-cvslog] CVS: 0_90/libmpdemux demux_mov.c,1.95,1.96

Diego Biurrun CVS diego at mplayerhq.hu
Tue Apr 29 03:29:20 CEST 2003


Update of /cvsroot/mplayer/0_90/libmpdemux
In directory mail:/var/tmp.root/cvs-serv24846/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.  Ported from main.


Index: demux_mov.c
===================================================================
RCS file: /cvsroot/mplayer/0_90/libmpdemux/demux_mov.c,v
retrieving revision 1.95
retrieving revision 1.96
diff -u -r1.95 -r1.96
--- demux_mov.c	17 Mar 2003 00:54:10 -0000	1.95
+++ demux_mov.c	29 Apr 2003 01:29:18 -0000	1.96
@@ -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