# HG changeset patch # User diego # Date 1276771365 0 # Node ID 6e2c9a628fbaf891a677762e136bd9516daa1408 # Parent 1edec80a4ad708f397ee0b341cd1c9750f297b90 Simplify fribidi check - console output is not necessary. diff -r 1edec80a4ad7 -r 6e2c9a628fba configure --- a/configure Thu Jun 17 10:17:37 2010 +0000 +++ b/configure Thu Jun 17 10:42:45 2010 +0000 @@ -6445,16 +6445,13 @@ _ld_tmp="" if test "$_fribidi" = auto ; then cat > $TMPC << EOF -#include #include /* workaround for fribidi 0.10.4 and below */ #define FRIBIDI_CHARSET_UTF8 FRIBIDI_CHAR_SET_UTF8 #include 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