Commit 30f35ab0 authored by Måns Rullgård's avatar Måns Rullgård

don't skip freetype2 check on beos

Originally committed as revision 7921 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent ec1e9c44
...@@ -1653,13 +1653,11 @@ fi ...@@ -1653,13 +1653,11 @@ fi
# FreeType check # FreeType check
freetype2=no freetype2=no
if test "x$targetos" != "xBeOS"; then if freetype-config --version >/dev/null 2>&1; then
if freetype-config --version >/dev/null 2>&1; then
temp_cflags `freetype-config --cflags` temp_cflags `freetype-config --cflags`
temp_extralibs `freetype-config --libs` temp_extralibs `freetype-config --libs`
check_lib ft2build.h FT_Init_FreeType && enable freetype2 check_lib ft2build.h FT_Init_FreeType && enable freetype2
restore_flags restore_flags
fi
fi fi
########################################## ##########################################
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment