diff options
author | Avuton Olrich <avuton@gmail.com> | 2006-07-16 17:49:15 +0000 |
---|---|---|
committer | Avuton Olrich <avuton@gmail.com> | 2006-07-16 17:49:15 +0000 |
commit | 2001db8c18bcd949f189f324f297a0204515be07 (patch) | |
tree | 87da92edee5ba8f5c2cf7028fc88b6317ebed6bd /src/inputPlugins/mp3_plugin.c | |
parent | 939b40c45cce142e3e1127678088f5ded5ec3582 (diff) | |
download | mpd-2001db8c18bcd949f189f324f297a0204515be07.tar.gz mpd-2001db8c18bcd949f189f324f297a0204515be07.tar.xz mpd-2001db8c18bcd949f189f324f297a0204515be07.zip |
Remove hosted libid3tag & libmad
git-svn-id: https://svn.musicpd.org/mpd/trunk@4369 09075e82-0dd4-0310-85a5-a0d7c8717e4f
Diffstat (limited to '')
-rw-r--r-- | src/inputPlugins/mp3_plugin.c | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/src/inputPlugins/mp3_plugin.c b/src/inputPlugins/mp3_plugin.c index fcae642a2..f40a3fdac 100644 --- a/src/inputPlugins/mp3_plugin.c +++ b/src/inputPlugins/mp3_plugin.c @@ -21,18 +21,12 @@ #ifdef HAVE_MAD #include "../pcm_utils.h" -#ifdef USE_MPD_MAD -#include "../libmad/mad.h" -#else #include <mad.h> -#endif + #ifdef HAVE_ID3TAG -#ifdef USE_MPD_ID3TAG -#include "../libid3tag/id3tag.h" -#else #include <id3tag.h> #endif -#endif + #include "../log.h" #include "../utils.h" #include "../replayGain.h" |