0
0
mirror of https://github.com/mpv-player/mpv.git synced 2024-09-20 12:02:23 +02:00

extended FAAD detection

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@5227 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
alex 2002-03-20 17:53:44 +00:00
parent b0547e7f67
commit d5f292cbea

2
configure vendored
View File

@ -2511,7 +2511,7 @@ if test "$_faad" = auto ; then
_faad=no
cat > $TMPC << EOF
#include <faad.h>
int main(void) { return 0; }
int main(void) { faacDecHandle testhand; testhand = faacDecOpen(); return 0; }
EOF
cc_check -lfaad -lm && _faad=yes
fi