Need to enable curl for RSS.

This commit is contained in:
Brenden Matthews 2022-10-12 11:53:09 -05:00 committed by Brenden Matthews
parent 25e6598c90
commit 1954893eaf
2 changed files with 6 additions and 1 deletions

View File

@ -238,6 +238,11 @@ option(BUILD_CURL "Enable if you want Curl 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_ICAL "Enable if you want iCalendar (RFC 5545) support" false)

View File

@ -37,7 +37,7 @@
/*
* 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
* example.
*/