diff options
author | Max Kellermann <max@duempel.org> | 2013-07-28 20:25:45 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2013-07-28 20:25:45 +0200 |
commit | dd5ba062cc03d0de7fa2b46f16817f8c7c2b112e (patch) | |
tree | 3bf0273d15ce6a4a2b62ba344e80bbb4a3617e40 /Makefile.am | |
parent | ba161ec572b98d3bcf9f735ff122133319fe896a (diff) | |
download | mpd-dd5ba062cc03d0de7fa2b46f16817f8c7c2b112e.tar.gz mpd-dd5ba062cc03d0de7fa2b46f16817f8c7c2b112e.tar.xz mpd-dd5ba062cc03d0de7fa2b46f16817f8c7c2b112e.zip |
tag_id3: convert to C++
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/Makefile.am b/Makefile.am index 5df5a1113..464fa8b92 100644 --- a/Makefile.am +++ b/Makefile.am @@ -86,7 +86,6 @@ mpd_headers = \ src/tag_internal.h \ src/tag_table.h \ src/tag_ape.h \ - src/tag_id3.h \ src/Timer.hxx \ src/mpd_error.h @@ -435,7 +434,7 @@ libtag_a_SOURCES =\ if HAVE_ID3TAG libtag_a_SOURCES += \ - src/tag_id3.c \ + src/TagId3.cxx src/TagId3.hxx \ src/TagRva2.cxx src/TagRva2.hxx \ src/riff.c src/aiff.c endif @@ -1204,7 +1203,7 @@ test_dump_rva2_LDADD = \ test_dump_rva2_SOURCES = test/dump_rva2.cxx \ src/riff.c src/aiff.c \ src/tag_handler.c \ - src/tag_id3.c \ + src/TagId3.cxx \ src/TagRva2.cxx endif |