aboutsummaryrefslogtreecommitdiffstats
path: root/src/InputRegistry.cxx
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2013-04-17 21:46:16 +0200
committerMax Kellermann <max@duempel.org>2013-04-17 21:46:16 +0200
commit2df2a989af3296b1d6c7bc829ad3139e290ee474 (patch)
treef2c354c257b17c53caaad79bce050c4cea1a6c86 /src/InputRegistry.cxx
parent4a800b311f5dfde74956edb29dee99998ba1ced1 (diff)
downloadmpd-2df2a989af3296b1d6c7bc829ad3139e290ee474.tar.gz
mpd-2df2a989af3296b1d6c7bc829ad3139e290ee474.tar.xz
mpd-2df2a989af3296b1d6c7bc829ad3139e290ee474.zip
input/soup: plugin removed
This plugin is cumbersome to support, now that MPD is migrating away from GLib and the GLib event loop. It has no practical advantages over the CURL plugin. Soup requires the bloated GType library.
Diffstat (limited to 'src/InputRegistry.cxx')
-rw-r--r--src/InputRegistry.cxx7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/InputRegistry.cxx b/src/InputRegistry.cxx
index 342720d2a..75a106c24 100644
--- a/src/InputRegistry.cxx
+++ b/src/InputRegistry.cxx
@@ -29,10 +29,6 @@
#include "input/CurlInputPlugin.hxx"
#endif
-#ifdef ENABLE_SOUP
-#include "input/SoupInputPlugin.hxx"
-#endif
-
#ifdef HAVE_FFMPEG
#include "input/FfmpegInputPlugin.hxx"
#endif
@@ -59,9 +55,6 @@ const struct input_plugin *const input_plugins[] = {
#ifdef ENABLE_CURL
&input_plugin_curl,
#endif
-#ifdef ENABLE_SOUP
- &input_plugin_soup,
-#endif
#ifdef HAVE_FFMPEG
&input_plugin_ffmpeg,
#endif