changeset 7162:c672c79cb396

fixed faad detection. without this it detects my older version of the library witch isn't compatible with current ad_faad.c
author alex
date Fri, 30 Aug 2002 11:28:43 +0000
parents 13bc391fc19c
children a193df8b275b
files configure
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/configure	Fri Aug 30 11:20:51 2002 +0000
+++ b/configure	Fri Aug 30 11:28:43 2002 +0000
@@ -3339,7 +3339,7 @@
   _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