From 83da389dcec530bc2dd88bcd82dc7a99f97fd5b2 Mon Sep 17 00:00:00 2001 From: greg Date: Fri, 8 Jan 2010 18:56:39 +0000 Subject: [PATCH] libass needs at least freetype 2.2.1 git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30244 b3059339-0415-0410-9bf9-f77b7e298cf2 --- configure | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/configure b/configure index de0f8e33a3..8ecae94b1c 100755 --- a/configure +++ b/configure @@ -6223,8 +6223,8 @@ if test "$_ass" = auto ; then cat > $TMPC << EOF #include #include FT_FREETYPE_H -#if ((FREETYPE_MAJOR < 2) || (FREETYPE_MINOR < 1) || ((FREETYPE_MINOR == 1) && (FREETYPE_PATCH < 8))) -#error "Need FreeType 2.1.8 or newer" +#if ((FREETYPE_MAJOR < 2) || (FREETYPE_MINOR < 2) || ((FREETYPE_MINOR == 2) && (FREETYPE_PATCH < 1))) +#error "Need FreeType 2.2.1 or newer" #endif int main(void) { return 0; } EOF @@ -6232,7 +6232,7 @@ EOF cc_check $($_freetypeconfig --cflags) $($_freetypeconfig --libs) && _ass=yes if test "$_ass" = no ; then ass_internal=no - _res_comment="FreeType >= 2.1.8 needed" + _res_comment="FreeType >= 2.2.1 needed" elif test "$ass_internal" = no ; then _res_comment="external" extra_ldflags="$extra_ldflags -lass"