diff options
author | Max Kellermann <max@duempel.org> | 2013-04-17 21:46:16 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2013-04-17 21:46:16 +0200 |
commit | 2df2a989af3296b1d6c7bc829ad3139e290ee474 (patch) | |
tree | f2c354c257b17c53caaad79bce050c4cea1a6c86 /configure.ac | |
parent | 4a800b311f5dfde74956edb29dee99998ba1ced1 (diff) | |
download | mpd-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 'configure.ac')
-rw-r--r-- | configure.ac | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/configure.ac b/configure.ac index 253f25764..27a6d5f07 100644 --- a/configure.ac +++ b/configure.ac @@ -190,11 +190,6 @@ AC_ARG_ENABLE(curl, [enable support for libcurl HTTP streaming (default: auto)]),, [enable_curl=auto]) -AC_ARG_ENABLE(soup, - AS_HELP_STRING([--enable-soup], - [enable support for libsoup HTTP streaming (default: auto)]),, - [enable_soup=auto]) - AC_ARG_ENABLE(debug, AS_HELP_STRING([--enable-debug], [enable debugging (default: disabled)]),, @@ -711,14 +706,6 @@ if test x$enable_curl = xyes; then fi AM_CONDITIONAL(ENABLE_CURL, test x$enable_curl = xyes) -dnl ----------------------------------- SOUP ---------------------------------- -MPD_AUTO_PKG(soup, SOUP, [libsoup-2.4], - [libsoup HTTP streaming], [libsoup not found]) -if test x$enable_soup = xyes; then - AC_DEFINE(ENABLE_SOUP, 1, [Define when libsoup is used for HTTP streaming]) -fi -AM_CONDITIONAL(ENABLE_SOUP, test x$enable_soup = xyes) - dnl --------------------------------- Last.FM --------------------------------- if test x$enable_lastfm = xyes; then if test x$enable_curl != xyes; then @@ -1664,7 +1651,6 @@ results(lastfm,[Last.FM]) results(soundcloud,[Soundcloud]) printf '\n\t' results(mms,[MMS]) -results(soup, [SOUP]) printf '\n\n##########################################\n\n' |