summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorgreg <greg@b3059339-0415-0410-9bf9-f77b7e298cf2>2010-01-08 18:56:39 +0000
committergreg <greg@b3059339-0415-0410-9bf9-f77b7e298cf2>2010-01-08 18:56:39 +0000
commit83da389dcec530bc2dd88bcd82dc7a99f97fd5b2 (patch)
treedfb0283573ac203995282568095086c7226c8eac
parentbb31a48a51fbd3bc38400bbeff575b0f8cfb6983 (diff)
downloadmpv-83da389dcec530bc2dd88bcd82dc7a99f97fd5b2.tar.bz2
mpv-83da389dcec530bc2dd88bcd82dc7a99f97fd5b2.tar.xz
libass needs at least freetype 2.2.1
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30244 b3059339-0415-0410-9bf9-f77b7e298cf2
-rwxr-xr-xconfigure6
1 files 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 <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"