aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias P. Braendli <matthias.braendli@mpb.li>2019-11-15 14:39:17 +0100
committerMatthias P. Braendli <matthias.braendli@mpb.li>2019-11-15 14:39:17 +0100
commit86bc3fc5e0ed8cdf8db9bfa7f5488162022f0a85 (patch)
tree05d225ff9fdd12bfd9a14322036306e3f371cc6f
parent4f79f0eb5dfa446ea44668947efe8d8273ab86b1 (diff)
downloadODR-SourceCompanion-86bc3fc5e0ed8cdf8db9bfa7f5488162022f0a85.tar.gz
ODR-SourceCompanion-86bc3fc5e0ed8cdf8db9bfa7f5488162022f0a85.tar.bz2
ODR-SourceCompanion-86bc3fc5e0ed8cdf8db9bfa7f5488162022f0a85.zip
Remove check for DAB+ patched FDK-AAC
-rw-r--r--configure.ac13
1 files changed, 1 insertions, 12 deletions
diff --git a/configure.ac b/configure.ac
index c1b3938..37442e3 100644
--- a/configure.ac
+++ b/configure.ac
@@ -45,18 +45,7 @@ AC_LANG_POP([C++])
AC_CHECK_LIB(zmq, zmq_init, , AC_MSG_ERROR(ZeroMQ libzmq is required))
AC_CHECK_LIB(fdk-aac, aacEncOpen, , AC_MSG_ERROR(The FDK-AAC library is required))
-# We need to have the ODR fdk-aac, the upstream one doesn't support DAB+
-AC_MSG_CHECKING([for DAB+ support in FDK-AAC])
-AC_COMPILE_IFELSE( [AC_LANG_PROGRAM([[#include <fdk-aac/aacenc_lib.h>]],
- [[char dummy[TT_DABPLUS];]])],
- [
- AC_MSG_RESULT([yes])
- ],
- [
- AC_MSG_RESULT([no])
- AC_MSG_ERROR(["Your FDK-AAC does not support DAB+, make sure you have installed the ODR version!"])
- ]
- )
+# We do not need a DAB+-patched fdk-aac, because upstream fdk-aac can decode properly
AC_CHECK_LIB(curl, curl_easy_init)
have_curl=$ac_cv_lib_curl_curl_easy_init