[Mplayer-cvslog] CVS: main/libmpdemux mf.c,1.8,1.9

Sascha Sommer CVS faust3 at mplayerhq.hu
Fri Apr 25 12:20:46 CEST 2003


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

Modified Files:
	mf.c 
Log Message:
enable mf support on mingw32

Index: mf.c
===================================================================
RCS file: /cvsroot/mplayer/main/libmpdemux/mf.c,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- mf.c	4 Apr 2003 20:32:21 -0000	1.8
+++ mf.c	25 Apr 2003 10:20:15 -0000	1.9
@@ -13,6 +13,8 @@
 
 #ifdef HAVE_GLOB
 #include <glob.h>
+#else
+#include "../osdep/glob.h"
 #endif
 
 #include "mp_msg.h"
@@ -27,7 +29,7 @@
 char * mf_type = NULL; //"jpg";
 
 mf_t* open_mf(char * filename){
-#ifdef HAVE_GLOB
+#if defined(HAVE_GLOB) || defined(__MINGW32__)
  glob_t        gg;
  struct stat   fs;
  int           i;



More information about the MPlayer-cvslog mailing list