diff options
author | Avuton Olrich <avuton@gmail.com> | 2009-03-05 23:17:00 -0800 |
---|---|---|
committer | Avuton Olrich <avuton@gmail.com> | 2009-03-05 23:17:00 -0800 |
commit | 7cd9dbd5742886aa3ead1f8e482a88c96ea389ed (patch) | |
tree | f0068ef0f4518f7ba52626aa86c73eef01c8dfc3 /configure.ac | |
parent | cd52258211dc4ddcf5e0ae3036ae6b1af9f31440 (diff) | |
download | mpd-7cd9dbd5742886aa3ead1f8e482a88c96ea389ed.tar.gz mpd-7cd9dbd5742886aa3ead1f8e482a88c96ea389ed.tar.xz mpd-7cd9dbd5742886aa3ead1f8e482a88c96ea389ed.zip |
configure: make all tests the same, when possible.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index a3d929bcf..b17d28c43 100644 --- a/configure.ac +++ b/configure.ac @@ -1459,13 +1459,13 @@ else echo " last.fm radio support .........disabled" fi -if test x$enable_curl != xno; then +if test x$enable_curl = xyes; then echo " libcurl support (streaming) ...enabled" else echo " libcurl support (streaming) ...disabled" fi -if test x$enable_mms != xno; then +if test x$enable_mms = xyes; then echo " libmms support ................enabled" else echo " libmms support ................disabled" |