File tree 4 files changed +0
-10
lines changed 4 files changed +0
-10
lines changed Original file line number Diff line number Diff line change @@ -16,7 +16,6 @@ endif()
16
16
option (ICINGA2_WITH_MYSQL "Build the MySQL IDO module" ON )
17
17
option (ICINGA2_WITH_PGSQL "Build the PostgreSQL IDO module" ON )
18
18
option (ICINGA2_WITH_CHECKER "Build the checker module" ON )
19
- option (ICINGA2_WITH_COMPAT "Build the compat module" ON )
20
19
option (ICINGA2_WITH_LIVESTATUS "Build the Livestatus module" ON )
21
20
option (ICINGA2_WITH_NOTIFICATION "Build the notification module" ON )
22
21
option (ICINGA2_WITH_PERFDATA "Build the perfdata module" ON )
Original file line number Diff line number Diff line change @@ -2240,7 +2240,6 @@ Also see `CMakeLists.txt` for details.
2240
2240
#### Features
2241
2241
2242
2242
* ` 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 `
2244
2243
* ` ICINGA2_WITH_LIVESTATUS ` : Determines whether the Livestatus module is built; defaults to ` ON `
2245
2244
* ` ICINGA2_WITH_NOTIFICATION ` : Determines whether the notification module is built; defaults to ` ON `
2246
2245
* ` ICINGA2_WITH_PERFDATA ` : Determines whether the perfdata module is built; defaults to ` ON `
Original file line number Diff line number Diff line change @@ -25,10 +25,6 @@ if(ICINGA2_WITH_CHECKER)
25
25
list (APPEND icinga_app_SOURCES $<TARGET_OBJECTS:checker>)
26
26
endif ()
27
27
28
- if (ICINGA2_WITH_COMPAT)
29
- list (APPEND icinga_app_SOURCES $<TARGET_OBJECTS:compat>)
30
- endif ()
31
-
32
28
if (ICINGA2_WITH_MYSQL OR ICINGA2_WITH_PGSQL)
33
29
list (APPEND icinga_app_SOURCES $<TARGET_OBJECTS:db_ido>)
34
30
endif ()
Original file line number Diff line number Diff line change @@ -11,10 +11,6 @@ if(ICINGA2_WITH_CHECKER)
11
11
add_subdirectory (checker)
12
12
endif ()
13
13
14
- if (ICINGA2_WITH_COMPAT)
15
- add_subdirectory (compat)
16
- endif ()
17
-
18
14
if (ICINGA2_WITH_MYSQL OR ICINGA2_WITH_PGSQL)
19
15
add_subdirectory (db_ido)
20
16
endif ()
You can’t perform that action at this time.
0 commit comments