diff options
author | Max Kellermann <max@duempel.org> | 2013-07-26 12:09:17 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2013-07-26 12:52:51 +0200 |
commit | 1fcf35ad3b10c241b8b5266c46a5fe99ce2c57d9 (patch) | |
tree | a9bd895a18a34d83512ed6568e7ea730938c5987 /Makefile.am | |
parent | c8054e569ae64f7d84940f9c7cb7ef3e642b1e0c (diff) | |
download | mpd-1fcf35ad3b10c241b8b5266c46a5fe99ce2c57d9.tar.gz mpd-1fcf35ad3b10c241b8b5266c46a5fe99ce2c57d9.tar.xz mpd-1fcf35ad3b10c241b8b5266c46a5fe99ce2c57d9.zip |
tag_rva2: convert to C++
Diffstat (limited to '')
-rw-r--r-- | Makefile.am | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/Makefile.am b/Makefile.am index aad7352dd..563c5f6eb 100644 --- a/Makefile.am +++ b/Makefile.am @@ -93,7 +93,6 @@ mpd_headers = \ src/tag_table.h \ src/tag_ape.h \ src/tag_id3.h \ - src/tag_rva2.h \ src/Timer.hxx \ src/mpd_error.h @@ -441,7 +440,7 @@ libtag_a_SOURCES =\ if HAVE_ID3TAG libtag_a_SOURCES += \ src/tag_id3.c \ - src/tag_rva2.c \ + src/TagRva2.cxx src/TagRva2.hxx \ src/riff.c src/aiff.c endif @@ -1189,11 +1188,11 @@ if HAVE_ID3TAG test_dump_rva2_LDADD = \ $(ID3TAG_LIBS) \ $(GLIB_LIBS) -test_dump_rva2_SOURCES = test/dump_rva2.c \ +test_dump_rva2_SOURCES = test/dump_rva2.cxx \ src/riff.c src/aiff.c \ src/tag_handler.c \ src/tag_id3.c \ - src/tag_rva2.c + src/TagRva2.cxx endif test_run_filter_LDADD = \ |