summaryrefslogtreecommitdiffstats
path: root/admin/zabbix/Config.in
blob: 8f3e3faafb9809f8f8f9f4e89e7ac31d0c61684a (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
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

choice
	prompt "Select SSL Library"

	default ZABBIX_OPENSSL

	config ZABBIX_GNUTLS
		bool "GnuTLS"

	config ZABBIX_NOSSL
		bool "NoSSL"

	config ZABBIX_OPENSSL
		bool "OpenSSL"
endchoice