summaryrefslogtreecommitdiffstats
path: root/configure.ac
diff options
context:
space:
mode:
authorChristophe Fergeau <teuf@gnome.org>2003-12-09 15:23:08 +0000
committerChristophe Fergeau <teuf@gnome.org>2003-12-09 15:23:08 +0000
commite37e791edd749e23a32570e1574ccc0b16bdc50d (patch)
treece71309bad52bc05d48d5e39f81408219d2a0172 /configure.ac
parent26492d2076f4832e0a8bc9d9655a871e45eef4b8 (diff)
Committed fix for #128893 (properly detect too old libfaad installations)
Original commit message from CVS: Committed fix for #128893 (properly detect too old libfaad installations)
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 68734b8f..f380cf09 100644
--- a/configure.ac
+++ b/configure.ac
@@ -800,7 +800,7 @@ GST_CHECK_FEATURE(FAAD, [AAC decoder plug-in], faad, [
AC_MSG_CHECKING([Checking for FAAD >= 2])
AC_TRY_COMPILE([
#include <faad.h>
-#if !defined(FAAD2_VERSION)
+#if !defined(FAAD2_VERSION) || !defined(FAAD_FMT_DOUBLE)
#error Not faad2
#endif
], [ return 0; ],