python-pyasn: bump to version 1.6.0b1
[buildroot-gz.git] / package / dovecot / Config.in
blobd1ff7bce916b251a20c54eb269e055352b5808f9
1 config BR2_PACKAGE_DOVECOT
2         bool "dovecot"
3         depends on !BR2_STATIC_LIBS
4         depends on BR2_USE_MMU # fork()
5         select BR2_PACKAGE_OPENSSL
6         select BR2_PACKAGE_ZLIB
7         help
8           Dovecot is an open source IMAP and POP3 email server for Linux/UNIX-
9           like systems, written with security primarily in mind. Dovecot is an
10           excellent choice for both small and large installations. It's fast,
11           simple to set up, requires no special administration and it uses very
12           little memory.
14           http://www.dovecot.org
16 if BR2_PACKAGE_DOVECOT
18 config BR2_PACKAGE_DOVECOT_MYSQL
19         bool "mysql support"
20         select BR2_PACKAGE_MYSQL
21         depends on BR2_INSTALL_LIBSTDCPP # mysql
22         depends on BR2_TOOLCHAIN_HAS_THREADS # mysql
23         help
24           Enable MySQL support.
26 comment "mysql support needs a toolchain w/ C++, threads"
27         depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HAS_THREADS
29 config BR2_PACKAGE_DOVECOT_SQLITE
30         bool "sqlite support"
31         select BR2_PACKAGE_SQLITE
32         help
33           Enable SQLite support.
35 source package/dovecot-pigeonhole/Config.in
37 endif # BR2_PACKAGE_DOVECOT
39 comment "dovecot needs a toolchain w/ dynamic library"
40         depends on BR2_USE_MMU
41         depends on BR2_STATIC_LIBS