Mercurial > audlegacy-plugins
comparison configure.ac @ 2027:46bfefacb8b7
Removed some curl leftovers.
author | Eugene Paskevich <eugene@raptor.kiev.ua> |
---|---|
date | Fri, 12 Oct 2007 13:07:05 +0300 |
parents | 361ee83691e9 |
children | 6e4ad45c21d6 |
comparison
equal
deleted
inserted
replaced
2026:0d557822c971 | 2027:46bfefacb8b7 |
---|---|
1258 esac | 1258 esac |
1259 | 1259 |
1260 dnl *** Scrobbler *** | 1260 dnl *** Scrobbler *** |
1261 | 1261 |
1262 scrobbler="yes" | 1262 scrobbler="yes" |
1263 have_lastfm="no" | |
1263 | 1264 |
1264 dnl libcurl check | 1265 dnl libcurl check |
1265 | 1266 |
1266 my_cv_curl_vers=NONE | 1267 my_cv_curl_vers=NONE |
1267 dnl check is the plain-text version of the required version | 1268 dnl check is the plain-text version of the required version |
1268 check="7.9.7" | 1269 check="7.9.7" |
1269 dnl check_hex must be UPPERCASE if any hex letters are present | 1270 dnl check_hex must be UPPERCASE if any hex letters are present |
1270 check_hex="070907" | 1271 check_hex="070907" |
1271 | 1272 |
1272 have_curl="no" | 1273 PKG_CHECK_MODULES(CURL, [libcurl >= 7.9.7], [], [scrobbler="no"]) |
1273 have_lastfm="no" | 1274 AC_SUBST(CURL_CFLAGS) |
1274 PKG_CHECK_MODULES(CURL, [libcurl >= 7.9.7], | 1275 AC_SUBST(CURL_LIBS) |
1275 [ | |
1276 have_curl="yes" | |
1277 ], [scrobbler="no"]) | |
1278 | 1276 |
1279 if test "x$scrobbler" = "xyes"; then | 1277 if test "x$scrobbler" = "xyes"; then |
1280 GENERAL_PLUGINS="$GENERAL_PLUGINS scrobbler" | 1278 GENERAL_PLUGINS="$GENERAL_PLUGINS scrobbler" |
1281 TRANSPORT_PLUGINS="$TRANSPORT_PLUGINS lastfm" | 1279 TRANSPORT_PLUGINS="$TRANSPORT_PLUGINS lastfm" |
1282 have_lastfm="yes" | 1280 have_lastfm="yes" |
1283 fi | 1281 fi |
1284 | |
1285 AC_SUBST(CURL_CFLAGS) | |
1286 AC_SUBST(CURL_LIBS) | |
1287 | 1282 |
1288 dnl *** End of Scrobbler checks *** | 1283 dnl *** End of Scrobbler checks *** |
1289 | 1284 |
1290 dnl *** neon http plugin *** | 1285 dnl *** neon http plugin *** |
1291 | 1286 |
1671 echo " RootVis plugin: $have_rootvis" | 1666 echo " RootVis plugin: $have_rootvis" |
1672 echo | 1667 echo |
1673 echo " Transport" | 1668 echo " Transport" |
1674 echo " ---------" | 1669 echo " ---------" |
1675 echo " stdio transport: yes" | 1670 echo " stdio transport: yes" |
1676 echo " curl-based http/https: $have_curl" | |
1677 echo " neon-based http/https: $have_neon" | 1671 echo " neon-based http/https: $have_neon" |
1678 echo " libmms-based mms: $have_mms" | 1672 echo " libmms-based mms: $have_mms" |
1679 echo " lastfm transport: $have_lastfm" | 1673 echo " lastfm transport: $have_lastfm" |
1680 echo | 1674 echo |
1681 echo " Container" | 1675 echo " Container" |