From b80199e5dc8297b9c3ae353e6edf3834ff83148e Mon Sep 17 00:00:00 2001 From: faust3 Date: Fri, 25 Apr 2003 10:20:15 +0000 Subject: enable mf support on mingw32 git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@9985 b3059339-0415-0410-9bf9-f77b7e298cf2 --- libmpdemux/mf.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/libmpdemux/mf.c b/libmpdemux/mf.c index 18ec48e623..a033557777 100644 --- a/libmpdemux/mf.c +++ b/libmpdemux/mf.c @@ -13,6 +13,8 @@ #ifdef HAVE_GLOB #include +#else +#include "../osdep/glob.h" #endif #include "mp_msg.h" @@ -27,7 +29,7 @@ float mf_fps = 25.0; 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; -- cgit v1.2.3