From 04dfbb07ce79c5ae30fdd094c473df8aae9ee51e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alexander=20Aleksandrovi=C4=8D=20Klimov?= Date: Wed, 30 Oct 2019 10:10:21 +0100 Subject: [PATCH] Rename ICINGA2_WITH_REDIS to ICINGA2_WITH_ICINGADB --- CMakeLists.txt | 2 +- icinga-app/CMakeLists.txt | 2 +- lib/CMakeLists.txt | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 59e0533d5..d2d77926a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -20,7 +20,7 @@ option(ICINGA2_WITH_COMPAT "Build the compat module" ON) option(ICINGA2_WITH_LIVESTATUS "Build the Livestatus module" ON) option(ICINGA2_WITH_NOTIFICATION "Build the notification module" ON) option(ICINGA2_WITH_PERFDATA "Build the perfdata module" ON) -option(ICINGA2_WITH_REDIS "Build the redis module" ON) +option(ICINGA2_WITH_ICINGADB "Build the IcingaDB module" ON) option(ICINGA2_WITH_TESTS "Run unit tests" ON) option (USE_SYSTEMD diff --git a/icinga-app/CMakeLists.txt b/icinga-app/CMakeLists.txt index db8daae30..ef71ad999 100644 --- a/icinga-app/CMakeLists.txt +++ b/icinga-app/CMakeLists.txt @@ -53,7 +53,7 @@ if(ICINGA2_WITH_PERFDATA) list(APPEND icinga_app_SOURCES $) endif() -if(ICINGA2_WITH_REDIS) +if(ICINGA2_WITH_ICINGADB) list(APPEND icinga_app_SOURCES $) endif() diff --git a/lib/CMakeLists.txt b/lib/CMakeLists.txt index c3baa2755..aadbb39ad 100644 --- a/lib/CMakeLists.txt +++ b/lib/CMakeLists.txt @@ -53,7 +53,7 @@ if(ICINGA2_WITH_PERFDATA) add_subdirectory(perfdata) endif() -if(ICINGA2_WITH_REDIS) +if(ICINGA2_WITH_ICINGADB) add_subdirectory(icingadb) endif()