diff options
author | Max Kellermann <max@duempel.org> | 2014-12-08 18:38:03 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2014-12-08 22:33:50 +0100 |
commit | 0f1b1bb44d7dfea657116ef7bf1c4d8fd5cbce24 (patch) | |
tree | 946c6e8d78ef9f0de6828428bdcfbbe69b61f1a2 /src/playlist | |
parent | 16f870aa4129e560b4f6cf4a4e4521ee4621e707 (diff) |
configure.ac: add option to disable CUE
Diffstat (limited to 'src/playlist')
-rw-r--r-- | src/playlist/PlaylistRegistry.cxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/playlist/PlaylistRegistry.cxx b/src/playlist/PlaylistRegistry.cxx index d7bc3600a..ad0afa628 100644 --- a/src/playlist/PlaylistRegistry.cxx +++ b/src/playlist/PlaylistRegistry.cxx @@ -57,8 +57,10 @@ const struct playlist_plugin *const playlist_plugins[] = { #ifdef ENABLE_SOUNDCLOUD &soundcloud_playlist_plugin, #endif +#ifdef ENABLE_CUE &cue_playlist_plugin, &embcue_playlist_plugin, +#endif nullptr }; |