[MPlayer-cvslog] r31457 - trunk/configure

diego subversion at mplayerhq.hu
Thu Jun 17 12:42:45 CEST 2010


Author: diego
Date: Thu Jun 17 12:42:45 2010
New Revision: 31457

Log:
Simplify fribidi check - console output is not necessary.

Modified:
   trunk/configure

Modified: trunk/configure
==============================================================================
--- trunk/configure	Thu Jun 17 12:17:37 2010	(r31456)
+++ trunk/configure	Thu Jun 17 12:42:45 2010	(r31457)
@@ -6445,16 +6445,13 @@ _inc_tmp=""
 _ld_tmp=""
 if test "$_fribidi" = auto ; then
     cat > $TMPC << EOF
-#include <stdio.h>
 #include <stdlib.h>
 /* workaround for fribidi 0.10.4 and below */
 #define FRIBIDI_CHARSET_UTF8 FRIBIDI_CHAR_SET_UTF8
 #include <fribidi/fribidi.h>
 int main(void) {
-    if (fribidi_parse_charset("UTF-8") != FRIBIDI_CHAR_SET_UTF8) {
-       printf("Fribidi headers are not consistents with the library!\n");
+    if (fribidi_parse_charset("UTF-8") != FRIBIDI_CHAR_SET_UTF8)
        exit(1);
-    }
     return 0;
 }
 EOF


More information about the MPlayer-cvslog mailing list