diff options
author | Max Kellermann <max@duempel.org> | 2009-10-13 16:32:10 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2009-10-13 16:32:10 +0200 |
commit | f122e6d45618789741e36804b16a056d1e18818f (patch) | |
tree | 201c14e355280eb21e545b4f111d89792d8092b8 /Makefile.am | |
parent | 8391ac4cc8048671cfcf2a29f74729ebc0346318 (diff) | |
download | mpd-f122e6d45618789741e36804b16a056d1e18818f.tar.gz mpd-f122e6d45618789741e36804b16a056d1e18818f.tar.xz mpd-f122e6d45618789741e36804b16a056d1e18818f.zip |
playlist: added plugin for last.fm radio
This plugin will replace the last.fm input plugin, once the playlist
API is integrated into MPD.
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Makefile.am b/Makefile.am index e844b9b72..03f0da990 100644 --- a/Makefile.am +++ b/Makefile.am @@ -140,6 +140,7 @@ mpd_headers = \ src/playlist_list.h \ src/playlist/m3u_playlist_plugin.h \ src/playlist/xspf_playlist_plugin.h \ + src/playlist/lastfm_playlist_plugin.h \ src/poison.h \ src/riff.h \ src/aiff.h \ @@ -654,6 +655,10 @@ PLAYLIST_SRC = \ src/playlist/xspf_playlist_plugin.c \ src/playlist_list.c +if ENABLE_LASTFM +PLAYLIST_SRC += src/playlist/lastfm_playlist_plugin.c +endif + # # Filter plugins |