diff options
author | Max Kellermann <max@duempel.org> | 2008-10-14 11:10:47 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2008-10-14 11:10:47 +0200 |
commit | a52a9fc1fc2b385dd66edd45f602ac337399cc83 (patch) | |
tree | 68ffeb4b6a2c689519ea38ca87782f935eb7b29d /src/Makefile.am | |
parent | 308bc230b241757088668d65aafcea4575a52e9c (diff) | |
download | mpd-a52a9fc1fc2b385dd66edd45f602ac337399cc83.tar.gz mpd-a52a9fc1fc2b385dd66edd45f602ac337399cc83.tar.xz mpd-a52a9fc1fc2b385dd66edd45f602ac337399cc83.zip |
playlist: moved code to playlist_save.c
playlist_print_song() and playlist_print_uri() handle charset
conversion and (optional) music directory prefixing.
Diffstat (limited to '')
-rw-r--r-- | src/Makefile.am | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index 538e8549e..ca6f8f5ab 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -85,6 +85,7 @@ mpd_headers = \ player_control.h \ playerData.h \ playlist.h \ + playlist_save.h \ replayGain.h \ ringbuf.h \ signal_check.h \ @@ -163,6 +164,7 @@ mpd_SOURCES = \ player_control.c \ playerData.c \ playlist.c \ + playlist_save.c \ replayGain.c \ ringbuf.c \ sig_handlers.c \ |