# HG changeset patch # User Eugene Paskevich # Date 1192183625 -10800 # Node ID 46bfefacb8b79988932918a771172763823965b5 # Parent 0d557822c9716a15c0a670f52a50c38e46e4c127 Removed some curl leftovers. diff -r 0d557822c971 -r 46bfefacb8b7 configure.ac --- a/configure.ac Fri Oct 12 02:41:51 2007 +0200 +++ b/configure.ac Fri Oct 12 13:07:05 2007 +0300 @@ -1260,6 +1260,7 @@ dnl *** Scrobbler *** scrobbler="yes" +have_lastfm="no" dnl libcurl check @@ -1269,12 +1270,9 @@ dnl check_hex must be UPPERCASE if any hex letters are present check_hex="070907" -have_curl="no" -have_lastfm="no" -PKG_CHECK_MODULES(CURL, [libcurl >= 7.9.7], -[ - have_curl="yes" -], [scrobbler="no"]) +PKG_CHECK_MODULES(CURL, [libcurl >= 7.9.7], [], [scrobbler="no"]) +AC_SUBST(CURL_CFLAGS) +AC_SUBST(CURL_LIBS) if test "x$scrobbler" = "xyes"; then GENERAL_PLUGINS="$GENERAL_PLUGINS scrobbler" @@ -1282,9 +1280,6 @@ have_lastfm="yes" fi -AC_SUBST(CURL_CFLAGS) -AC_SUBST(CURL_LIBS) - dnl *** End of Scrobbler checks *** dnl *** neon http plugin *** @@ -1673,7 +1668,6 @@ echo " Transport" echo " ---------" echo " stdio transport: yes" -echo " curl-based http/https: $have_curl" echo " neon-based http/https: $have_neon" echo " libmms-based mms: $have_mms" echo " lastfm transport: $have_lastfm"