Skip to content

Commit c19dc51

Browse files
committed
Drop ICINGA2_WITH_COMPAT
refs #6307
1 parent 099cc5d commit c19dc51

File tree

4 files changed

+0
-10
lines changed

4 files changed

+0
-10
lines changed

CMakeLists.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ endif()
1616
option(ICINGA2_WITH_MYSQL "Build the MySQL IDO module" ON)
1717
option(ICINGA2_WITH_PGSQL "Build the PostgreSQL IDO module" ON)
1818
option(ICINGA2_WITH_CHECKER "Build the checker module" ON)
19-
option(ICINGA2_WITH_COMPAT "Build the compat module" ON)
2019
option(ICINGA2_WITH_LIVESTATUS "Build the Livestatus module" ON)
2120
option(ICINGA2_WITH_NOTIFICATION "Build the notification module" ON)
2221
option(ICINGA2_WITH_PERFDATA "Build the perfdata module" ON)

doc/21-development.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2240,7 +2240,6 @@ Also see `CMakeLists.txt` for details.
22402240
#### Features
22412241

22422242
* `ICINGA2_WITH_CHECKER`: Determines whether the checker module is built; defaults to `ON`
2243-
* `ICINGA2_WITH_COMPAT`: Determines whether the compat module is built; defaults to `ON`
22442243
* `ICINGA2_WITH_LIVESTATUS`: Determines whether the Livestatus module is built; defaults to `ON`
22452244
* `ICINGA2_WITH_NOTIFICATION`: Determines whether the notification module is built; defaults to `ON`
22462245
* `ICINGA2_WITH_PERFDATA`: Determines whether the perfdata module is built; defaults to `ON`

icinga-app/CMakeLists.txt

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,6 @@ if(ICINGA2_WITH_CHECKER)
2525
list(APPEND icinga_app_SOURCES $<TARGET_OBJECTS:checker>)
2626
endif()
2727

28-
if(ICINGA2_WITH_COMPAT)
29-
list(APPEND icinga_app_SOURCES $<TARGET_OBJECTS:compat>)
30-
endif()
31-
3228
if(ICINGA2_WITH_MYSQL OR ICINGA2_WITH_PGSQL)
3329
list(APPEND icinga_app_SOURCES $<TARGET_OBJECTS:db_ido>)
3430
endif()

lib/CMakeLists.txt

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,6 @@ if(ICINGA2_WITH_CHECKER)
1111
add_subdirectory(checker)
1212
endif()
1313

14-
if(ICINGA2_WITH_COMPAT)
15-
add_subdirectory(compat)
16-
endif()
17-
1814
if(ICINGA2_WITH_MYSQL OR ICINGA2_WITH_PGSQL)
1915
add_subdirectory(db_ido)
2016
endif()

0 commit comments

Comments
 (0)