Add check for faad2 (faad1 was detected, too, but we don't want that)

Original commit message from CVS:
Add check for faad2 (faad1 was detected, too, but we don't want that)
This commit is contained in:
Ronald S. Bultje 2003-11-29 22:43:23 +00:00
parent b169b0a68f
commit 689af6c8be

View file

@ -781,6 +781,15 @@ dnl **** Free AAC Decoder (FAAD) ****
translit(dnm, m, l) AM_CONDITIONAL(USE_FAAD, true)
GST_CHECK_FEATURE(FAAD, [AAC decoder plug-in], faad, [
GST_CHECK_LIBHEADER(FAAD, faad, faacDecOpen, -lm, faad.h, FAAD_LIBS="-lfaad -lm")
AC_MSG_CHECKING([Checking for FAAD >= 2])
AC_TRY_COMPILE([
#include <faad.h>
#if !defined(FAAD2_VERSION)
#error Not faad2
#endif
], [ return 0; ],
[ HAVE_FAAD="yes" && AC_MSG_RESULT(yes)],
[ HAVE_FAAD="no" && AC_MSG_RESULT(no)])
AS_SCRUB_INCLUDE(FAAD_CFLAGS)
AC_SUBST(FAAD_LIBS)
])