summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authoralex <alex@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-08-30 11:28:43 +0000
committeralex <alex@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-08-30 11:28:43 +0000
commit76513aa134f1e2660e42ebdefd2ae15d1debb79f (patch)
tree2c44adb5457a8b38bca7accb800c37e38ab00ec8 /configure
parentbaab7aa3fd6a22bf842b5dd519136286e803fd54 (diff)
downloadmpv-76513aa134f1e2660e42ebdefd2ae15d1debb79f.tar.bz2
mpv-76513aa134f1e2660e42ebdefd2ae15d1debb79f.tar.xz
fixed faad detection. without this it detects my older version of the library witch isn't compatible with current ad_faad.c
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@7163 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure b/configure
index 37455ef981..dae3a7ea0f 100755
--- a/configure
+++ b/configure
@@ -3339,7 +3339,7 @@ if test "$_faad" = auto ; then
_faad=no
cat > $TMPC << EOF
#include <faad.h>
-int main(void) { faacDecHandle testhand; testhand = faacDecOpen(); return 0; }
+int main(void) { faacDecHandle testhand; faacDecFrameInfo testinfo; testhand = faacDecOpen(); return 0; }
EOF
cc_check -lfaad -lm && _faad=yes
fi