diff options
author | Max Kellermann <max@duempel.org> | 2009-09-24 21:40:07 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2009-09-24 21:40:07 +0200 |
commit | 47ab2ad6f375e9f3afe2efe6a1da70ce98cec52b (patch) | |
tree | af5cb2093c27a475244645f862acac68070c1990 /src/input_stream.c | |
parent | 06d5d4b03ec446b9eb7a7351c32ef2fdca29d3c8 (diff) | |
download | mpd-47ab2ad6f375e9f3afe2efe6a1da70ce98cec52b.tar.gz mpd-47ab2ad6f375e9f3afe2efe6a1da70ce98cec52b.tar.xz mpd-47ab2ad6f375e9f3afe2efe6a1da70ce98cec52b.zip |
configure.ac: rename HAVE_CURL to ENABLE_CURL
Diffstat (limited to 'src/input_stream.c')
-rw-r--r-- | src/input_stream.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/input_stream.c b/src/input_stream.c index 69dc644a2..6c07da98f 100644 --- a/src/input_stream.c +++ b/src/input_stream.c @@ -27,7 +27,7 @@ #include "input/archive_input_plugin.h" #endif -#ifdef HAVE_CURL +#ifdef ENABLE_CURL #include "input/curl_input_plugin.h" #endif @@ -46,7 +46,7 @@ static const struct input_plugin *const input_plugins[] = { #ifdef ENABLE_ARCHIVE &input_plugin_archive, #endif -#ifdef HAVE_CURL +#ifdef ENABLE_CURL &input_plugin_curl, #endif #ifdef ENABLE_LASTFM |