Blame view

buildroot/buildroot-2016.08.1/package/dovecot/Config.in 1.21 KB
6b13f685e   김민수   BSP 최초 추가
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
  config BR2_PACKAGE_DOVECOT
  	bool "dovecot"
  	depends on !BR2_STATIC_LIBS
  	depends on BR2_USE_MMU # fork()
  	help
  	  Dovecot is an open source IMAP and POP3 email server for Linux/UNIX-
  	  like systems, written with security primarily in mind. Dovecot is an
  	  excellent choice for both small and large installations. It's fast,
  	  simple to set up, requires no special administration and it uses very
  	  little memory.
  
  	  http://www.dovecot.org
  
  if BR2_PACKAGE_DOVECOT
  
  config BR2_PACKAGE_DOVECOT_MYSQL
  	bool "mysql support"
  	select BR2_PACKAGE_MYSQL
  	depends on BR2_INSTALL_LIBSTDCPP # mysql
  	depends on BR2_TOOLCHAIN_HAS_THREADS # mysql
  	help
  	  Enable MySQL support.
  
  comment "mysql support needs a toolchain w/ C++, threads"
  	depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HAS_THREADS
  
  config BR2_PACKAGE_DOVECOT_OPENSSL
  	bool "openssl support"
  	select BR2_PACKAGE_OPENSSL
  	select BR2_PACKAGE_ZLIB
  	help
  	  Enable OpenSSL support.
  
  config BR2_PACKAGE_DOVECOT_SQLITE
  	bool "sqlite support"
  	select BR2_PACKAGE_SQLITE
  	help
  	  Enable SQLite support.
  
  source package/dovecot-pigeonhole/Config.in
  
  endif # BR2_PACKAGE_DOVECOT
  
  comment "dovecot needs a toolchain w/ dynamic library"
  	depends on BR2_USE_MMU
  	depends on BR2_STATIC_LIBS