Config.in 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  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
  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. http://www.dovecot.org
  14. if BR2_PACKAGE_DOVECOT
  15. config BR2_PACKAGE_DOVECOT_MYSQL
  16. bool "mysql support"
  17. depends on BR2_INSTALL_LIBSTDCPP # mysql
  18. depends on BR2_TOOLCHAIN_HAS_THREADS # mysql
  19. select BR2_PACKAGE_MYSQL
  20. help
  21. Enable MySQL support.
  22. comment "mysql support needs a toolchain w/ C++, threads"
  23. depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HAS_THREADS
  24. config BR2_PACKAGE_DOVECOT_SQLITE
  25. bool "sqlite support"
  26. select BR2_PACKAGE_SQLITE
  27. help
  28. Enable SQLite support.
  29. source package/dovecot-pigeonhole/Config.in
  30. endif # BR2_PACKAGE_DOVECOT
  31. comment "dovecot needs a toolchain w/ dynamic library"
  32. depends on BR2_USE_MMU
  33. depends on BR2_STATIC_LIBS