1
0
mirror of https://github.com/mpv-player/mpv synced 2024-12-28 18:12:22 +00:00

Fix for the faad2 compilation test which needs config.h to be present. Patch by Bernd Ernesti <mplayer@lists.veego.de>.

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@10863 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
mosu 2003-09-12 21:59:40 +00:00
parent cfb890259e
commit b692eed5eb

11
configure vendored
View File

@ -4309,6 +4309,13 @@ EOF
else
_inc_faad="-I`pwd`/libfaad2"
_faad=yes
# the faad check needs a config.h file
if test -f "config.h" ; then
_rm_config_h=no
else
_rm_config_h=yes
echo "" > config.h
fi
# internal faad: check if our dear gcc is able to compile it...
echo "$_cc -c -O4 $_march $_mcpu -pipe -ffast-math -fomit-frame-pointer $CFLAGS $_inc_faad $_inc_extra `pwd`/libfaad2/cfft.c -o $TMPO" >> "$TMPLOG"
if ( $_cc -c -O4 $_march $_mcpu -pipe -ffast-math -fomit-frame-pointer $CFLAGS $_inc_faad $_inc_extra "`pwd`/libfaad2/cfft.c" -o "$TMPO" ) >> "$TMPLOG" 2>&1 ; then
@ -4317,6 +4324,10 @@ else
_faad=no
echores "no (broken gcc)"
fi
# remove a temporarily config.h, which was needed for the faad compile check
if test "$_rm_config_h" = yes; then
rm config.h
fi
fi
fi