diff -Naur MPlayer-1.0pre7.orig/configure MPlayer-1.0pre7/configure --- MPlayer-1.0pre7.orig/configure Tue Jun 21 00:16:14 2005 +++ MPlayer-1.0pre7/configure Tue Jun 21 00:19:52 2005 @@ -5012,9 +5012,13 @@ cat > $TMPC << EOF #include #include +/* workaround for fribidi 0.10.4 and below */ +#if defined(FRIBIDI_CHARSET_UTF8) && !defined(FRIBIDI_CHAR_SET_UTF8) +#define FRIBIDI_CHAR_SET_UTF8 FRIBIDI_CHARSET_UTF8 +#endif int main() { - if(fribidi_parse_charset("UTF-8") != FRIBIDI_CHARSET_UTF8) { + if(fribidi_parse_charset("UTF-8") != FRIBIDI_CHAR_SET_UTF8) { printf("Fribidi headers are not consistents with the library!\n"); exit(1); }