From c8fd0f2a7fefd8ce0d0a1690586541929013544c Mon Sep 17 00:00:00 2001
From: diego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>
Date: Thu, 17 Jun 2010 10:42:45 +0000
Subject: [PATCH] configure: Simplify fribidi check - console output is not
 necessary

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31457 b3059339-0415-0410-9bf9-f77b7e298cf2
---
 configure | 5 +----
 1 file changed, 1 insertion(+), 4 deletions(-)

diff --git a/configure b/configure
index 2648bbd126..60a7b2d219 100755
--- a/configure
+++ b/configure
@@ -6156,16 +6156,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