changeset 9984:84b64dece730

enable mf support on mingw32
author faust3
date Fri, 25 Apr 2003 10:20:15 +0000
parents 14c92818ab75
children 3d8b145a5470
files libmpdemux/mf.c
diffstat 1 files changed, 3 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/libmpdemux/mf.c	Fri Apr 25 10:00:18 2003 +0000
+++ b/libmpdemux/mf.c	Fri Apr 25 10:20:15 2003 +0000
@@ -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;