f93cd820d1
The latest version bump to 2.27 introduced a bug in the configure script which occurs when OpenSSL support is missing: http://lists.busybox.net/pipermail/buildroot/2016-December/179397.html This patch makes OpenSSL mandatory following the upstream advice: http://www.dovecot.org/list/dovecot/2016-December/106346.html "Nobody really should be building without OpenSSL nowadays anyway" Fixes http://autobuild.buildroot.net/results/85f/85f2f176c108ab36520f02d975f27c27cddce84b/ [Peter: drop legacy handling] Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
42 lines
1.1 KiB
Plaintext
42 lines
1.1 KiB
Plaintext
config BR2_PACKAGE_DOVECOT
|
|
bool "dovecot"
|
|
depends on !BR2_STATIC_LIBS
|
|
depends on BR2_USE_MMU # fork()
|
|
select BR2_PACKAGE_OPENSSL
|
|
select BR2_PACKAGE_ZLIB
|
|
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_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
|