changeset 30202:96e5d03cda1d

libass needs at least freetype 2.2.1
author greg
date Fri, 08 Jan 2010 18:56:39 +0000
parents 786d035899d2
children 3888e3862fe0
files configure
diffstat 1 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/configure	Fri Jan 08 18:44:34 2010 +0000
+++ b/configure	Fri Jan 08 18:56:39 2010 +0000
@@ -6223,8 +6223,8 @@
     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 @@
     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"