[MPlayer-cvslog] r30244 - trunk/configure

greg subversion at mplayerhq.hu
Fri Jan 8 19:56:39 CET 2010


Author: greg
Date: Fri Jan  8 19:56:39 2010
New Revision: 30244

Log:
libass needs at least freetype 2.2.1

Modified:
   trunk/configure

Modified: trunk/configure
==============================================================================
--- trunk/configure	Fri Jan  8 19:44:34 2010	(r30243)
+++ trunk/configure	Fri Jan  8 19:56:39 2010	(r30244)
@@ -6223,8 +6223,8 @@ if test "$_ass" = auto ; then
     cat > $TMPC << EOF
 #include <ft2build.h>
 #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"


More information about the MPlayer-cvslog mailing list