summaryrefslogtreecommitdiffstats
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
commitd04fb4dc6cf97b54418d8c7b1b20cc92c3f06e4b (patch)
tree33a2399ecc6262419a93126bc21fea7d25399334
parent5f9d5da7b833299467c77f04854e43bfbf0e562d (diff)
downloadgst-plugins-bad-d04fb4dc6cf97b54418d8c7b1b20cc92c3f06e4b.tar.gz
gst-plugins-bad-d04fb4dc6cf97b54418d8c7b1b20cc92c3f06e4b.tar.bz2
gst-plugins-bad-d04fb4dc6cf97b54418d8c7b1b20cc92c3f06e4b.zip
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)
-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; ],