blob: d38494ff7ec953ff2ec7775068241467cf08468c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
choice
prompt "Select SSL Library"
default ZABBIX_OPENSSL
config ZABBIX_GNUTLS
bool "GnuTLS"
config ZABBIX_NOSSL
bool "NoSSL"
config ZABBIX_OPENSSL
bool "OpenSSL"
endchoice
menu "Modify features for non-core variants"
config ZABBIX_CURL
bool "cURL support (default SSL)"
default y
depends on !ZABBIX_GNUTLS && !ZABBIX_NOSSL
config ZABBIX_CURL_GNUTLS
bool "cURL support (GnuTLS)"
default n
depends on !ZABBIX_CURL
config ZABBIX_LDAP
bool "LDAP support"
depends on ZABBIX_OPENSSL
default y
config ZABBIX_NETSNMP
bool "NetSNMP support (OpenSSL)"
depends on ZABBIX_OPENSSL
default y
endmenu
|