First draft of the aac audio format handler
[paraslash.git] / configure.ac
index 91cd28425e78e81fe88d4d1486bdf94ff32d48e2..897209020d91794d53d8a7f74561825128553c66 100644 (file)
@@ -233,8 +233,10 @@ AC_CHECK_HEADER(neaacdec.h, [], have_faad=no)
 AC_CHECK_LIB([faad], [NeAACDecOpen], [], have_faad=no)
 if test "$have_faad" = "yes"; then
        AC_DEFINE(HAVE_FAAD, 1, define to 1 if you want to build the aacdec filter)
-       filter_errlist_objs="$filter_errlist_objs aacdec"
-       audiod_errlist_objs="$audiod_errlist_objs aacdec"
+       filter_errlist_objs="$filter_errlist_objs aacdec aac_common"
+       audiod_errlist_objs="$audiod_errlist_objs aacdec aac_common"
+       server_errlist_objs="$server_errlist_objs aac_afh aac_common"
+       server_ldflags="$server_ldflags $faad_libs -lfaad"
        filter_ldflags="$filter_ldflags $faad_libs -lfaad"
        audiod_ldflags="$audiod_ldflags $faad_libs -lfaad"
        AC_SUBST(faad_cppflags)