Commit 04511d53 authored by Philip Gladstone's avatar Philip Gladstone

Add checking for the existience of freetype2

Originally committed as revision 1575 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent ae2d2d6c
...@@ -549,6 +549,19 @@ if $cc -o $TMPE $TMPC -lImlib2 2> /dev/null ; then ...@@ -549,6 +549,19 @@ if $cc -o $TMPE $TMPC -lImlib2 2> /dev/null ; then
imlib2=yes imlib2=yes
fi fi
cat > $TMPC << EOF
#include <ft2build.h>
int main( void ) { return (int) FT_Init_FreeType(0); }
EOF
freetype2=no
which freetype-config > /dev/null
if test $? -eq 0; then
if $cc -o $TMPE $TMPC `freetype-config --cflags` `freetype-config --libs` 2> /dev/null ; then
freetype2=yes
fi
fi
if test x"$1" = x"-h" -o x"$1" = x"--help" ; then if test x"$1" = x"-h" -o x"$1" = x"--help" ; then
cat << EOF cat << EOF
...@@ -623,6 +636,7 @@ echo "risky / patent encumbered codecs $risky" ...@@ -623,6 +636,7 @@ echo "risky / patent encumbered codecs $risky"
if test "$vhook" = "yes" ; then if test "$vhook" = "yes" ; then
echo "Imlib2 support $imlib2" echo "Imlib2 support $imlib2"
echo "freetype support $freetype2"
fi fi
echo "Creating config.mak and config.h" echo "Creating config.mak and config.h"
...@@ -702,6 +716,9 @@ fi ...@@ -702,6 +716,9 @@ fi
if test "$imlib2" = "yes" ; then if test "$imlib2" = "yes" ; then
echo "HAVE_IMLIB2=yes" >> config.mak echo "HAVE_IMLIB2=yes" >> config.mak
fi fi
if test "$freetype2" = "yes" ; then
echo "HAVE_FREETYPE2=yes" >> config.mak
fi
if test "$have_lrintf" = "yes" ; then if test "$have_lrintf" = "yes" ; then
echo "#define HAVE_LRINTF 1" >> $TMPH echo "#define HAVE_LRINTF 1" >> $TMPH
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