1config 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 9 Linux/UNIX- like systems, written with security primarily in 10 mind. Dovecot is an excellent choice for both small and large 11 installations. It's fast, simple to set up, requires no 12 special administration and it uses very little memory. 13 14 http://www.dovecot.org 15 16if BR2_PACKAGE_DOVECOT 17 18config BR2_PACKAGE_DOVECOT_MYSQL 19 bool "mysql support" 20 depends on BR2_INSTALL_LIBSTDCPP # mysql 21 depends on BR2_TOOLCHAIN_HAS_THREADS # mysql 22 select BR2_PACKAGE_MYSQL 23 help 24 Enable MySQL support. 25 26comment "mysql support needs a toolchain w/ C++, threads" 27 depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HAS_THREADS 28 29config BR2_PACKAGE_DOVECOT_SQLITE 30 bool "sqlite support" 31 select BR2_PACKAGE_SQLITE 32 help 33 Enable SQLite support. 34 35source package/dovecot-pigeonhole/Config.in 36 37endif # BR2_PACKAGE_DOVECOT 38 39comment "dovecot needs a toolchain w/ dynamic library" 40 depends on BR2_USE_MMU 41 depends on BR2_STATIC_LIBS 42