mirror of
https://github.com/Llewellynvdm/conky.git
synced 2024-12-26 20:31:17 +00:00
Need to enable curl for RSS.
This commit is contained in:
parent
25e6598c90
commit
1954893eaf
@ -238,6 +238,11 @@ option(BUILD_CURL "Enable if you want Curl support" false)
|
|||||||
|
|
||||||
option(BUILD_RSS "Enable if you want RSS support" false)
|
option(BUILD_RSS "Enable if you want RSS support" false)
|
||||||
|
|
||||||
|
if(BUILD_RSS)
|
||||||
|
# if RSS is enabled, curl is required
|
||||||
|
set(BUILD_CURL true)
|
||||||
|
endif(BUILD_RSS)
|
||||||
|
|
||||||
option(BUILD_APCUPSD "Enable APCUPSD support" true)
|
option(BUILD_APCUPSD "Enable APCUPSD support" true)
|
||||||
|
|
||||||
option(BUILD_ICAL "Enable if you want iCalendar (RFC 5545) support" false)
|
option(BUILD_ICAL "Enable if you want iCalendar (RFC 5545) support" false)
|
||||||
|
@ -37,7 +37,7 @@
|
|||||||
|
|
||||||
/*
|
/*
|
||||||
* The following code is the conky curl thread lib, which can be re-used to
|
* The following code is the conky curl thread lib, which can be re-used to
|
||||||
* create any curl-based object (see weather and rss). Below is an
|
* create any curl-based object (see rss). Below is an
|
||||||
* implementation of a curl-only object ($curl) which can also be used as an
|
* implementation of a curl-only object ($curl) which can also be used as an
|
||||||
* example.
|
* example.
|
||||||
*/
|
*/
|
||||||
|
Loading…
Reference in New Issue
Block a user