Drop unimplemented weather code.

The weather code is just stubs at the moment, so I'm dropping it as it
adds no value.
This commit is contained in:
Brenden Matthews
2022-10-12 11:44:59 -05:00
committed by Brenden Matthews
parent f39b9720d2
commit 25e6598c90
10 changed files with 25 additions and 237 deletions

View File

@@ -238,11 +238,6 @@ option(BUILD_CURL "Enable if you want Curl support" false)
option(BUILD_RSS "Enable if you want RSS support" false)
option(BUILD_WEATHER_METAR "Enable METAR weather support" true)
if(BUILD_WEATHER_METAR OR BUILD_RSS)
set(BUILD_CURL true)
endif(BUILD_WEATHER_METAR OR BUILD_RSS)
option(BUILD_APCUPSD "Enable APCUPSD support" true)
option(BUILD_ICAL "Enable if you want iCalendar (RFC 5545) support" false)

View File

@@ -424,11 +424,6 @@ if(BUILD_RSS)
set(WANT_LIBXML2 true)
endif(BUILD_RSS)
if(BUILD_WEATHER_METAR)
set(WANT_CURL true)
set(BUILD_WEATHER true)
endif(BUILD_WEATHER_METAR)
if(BUILD_NVIDIA)
find_path(XNVCtrl_INCLUDE_PATH NVCtrl/NVCtrl.h ${INCLUDE_SEARCH_PATH})
find_library(XNVCtrl_LIB NAMES XNVCtrl)

View File

@@ -80,8 +80,6 @@
#cmakedefine BUILD_CURL 1
#cmakedefine BUILD_WEATHER_METAR 1
#cmakedefine BUILD_IMLIB2 1
#cmakedefine BUILD_MATH 1