From f70dccdce10f599be288431da166b5b09a53135c Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Mon, 3 Nov 2008 16:48:12 +0100 Subject: configure.ac: separate the "aac" and "mp4" decoder tests MPD used to have a copy of the mp4ff library. Since that has been removed, AAC suport was disabled when there was no libmp4ff. Separate the libmp4ff test, and enable AAC support no matter if libmp4ff is available. --- src/decoder_list.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'src/decoder_list.c') diff --git a/src/decoder_list.c b/src/decoder_list.c index 68c053c2a..edd147f54 100644 --- a/src/decoder_list.c +++ b/src/decoder_list.c @@ -50,9 +50,11 @@ static const struct decoder_plugin *const decoder_plugins[] = { &audiofilePlugin, #endif #ifdef HAVE_FAAD - &mp4Plugin, &aacPlugin, #endif +#ifdef HAVE_MP4 + &mp4Plugin, +#endif #ifdef HAVE_MPCDEC &mpcPlugin, #endif -- cgit v1.2.3