summaryrefslogtreecommitdiffstats
path: root/rules/openldap.in
blob: b967d1dff0155ccd5e81392baf31b53bd97c8be1 (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
38
39
40
41
42
43
44
45
46
47
48
49
## SECTION=networking

menuconfig OPENLDAP
	tristate
	prompt "openldap                      "
	select ZLIB
	select LIBC_RESOLV
	select LIBC_PTHREAD
	select OPENSSL		if OPENLDAP_TLS_OPENSSL
	select GNUTLS		if OPENLDAP_TLS_GNUTLS
	help
	  OpenLDAP Software is an open source implementation of the Lightweight
	  Directory Access Protocol. The suite includes:

	    - slapd: stand-alone LDAP daemon (server)
	    - libraries implementing the LDAP protocol, and
	    - utilities, tools, and sample clients.

if OPENLDAP

config OPENLDAP_SLAPD
	bool
	prompt "slapd support"
	help
	  Enable/disable building and installation of slapd (the server).

choice
	prompt "TLS/SSL support               "

	config OPENLDAP_TLS_DISABLED
		bool "disabled"

	config OPENLDAP_TLS_OPENSSL
		bool "openssl"

	config OPENLDAP_TLS_GNUTLS
		depends on BROKEN
		bool "gnutls"

endchoice

config OPENLDAP_INSTALL_UTILITIES
	bool
	prompt "install utilities"
	help
	  Installs various utilities: ldapadd, ldapcompare, ldapdelete, ldapexop,
	  ldapmodify, ldapmodrdn, ldappasswd, ldapsearch, ldapurl, ldapwhoami.

endif