From: Andre Noll Date: Tue, 2 Dec 2008 17:01:49 +0000 (+0100) Subject: configure.ac: Fix $filter_cmdline_objs and $audiod_cmdline_objs. X-Git-Tag: v0.3.4~88 X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=commitdiff_plain;h=06fa3ceff711948699e330b6f341fc02b386f5e2;hp=e06c60040db60f45f6e0bb3095e8dac21420f126 configure.ac: Fix $filter_cmdline_objs and $audiod_cmdline_objs. A previous patch added the new mp3dec_filter_cmdline object at the wrong place. --- diff --git a/configure.ac b/configure.ac index 4eb8c543..f62a2038 100644 --- a/configure.ac +++ b/configure.ac @@ -366,8 +366,6 @@ 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_cmdline_objs="$filter_cmdline_objs mp3dec_filter.cmdline" - audiod_cmdline_objs="$audiod_cmdline_objs mp3dec_filter.cmdline" all_errlist_objs="$all_errlist_objs aac_common aacdec_filter aac_afh" filter_errlist_objs="$filter_errlist_objs aacdec_filter aac_common" afh_errlist_objs="$afh_errlist_objs aac_common aac_afh" @@ -414,6 +412,8 @@ AC_CHECK_LIB([mad], [mad_stream_init], [], [ ]) if test "$have_mad" = "yes"; then AC_DEFINE(HAVE_MAD, 1, define to 1 if you want to build the mp3dec filter) + filter_cmdline_objs="$filter_cmdline_objs mp3dec_filter.cmdline" + audiod_cmdline_objs="$audiod_cmdline_objs mp3dec_filter.cmdline" all_errlist_objs="$all_errlist_objs mp3dec_filter" filter_errlist_objs="$filter_errlist_objs mp3dec_filter" audiod_errlist_objs="$audiod_errlist_objs mp3dec_filter"