Config.in 1.1 KB

123456789101112131415161718192021222324252627282930313233343536
  1. comment "exim needs a toolchain w/ threads"
  2. depends on !BR2_TOOLCHAIN_HAS_THREADS
  3. config BR2_PACKAGE_EXIM
  4. bool "exim"
  5. depends on BR2_USE_MMU # fork()
  6. depends on BR2_TOOLCHAIN_HAS_THREADS
  7. select BR2_PACKAGE_PCRE2
  8. select BR2_PACKAGE_BERKELEYDB
  9. help
  10. Exim is a message transfer agent (MTA) developed at the
  11. University of Cambridge for use on Unix systems connected to
  12. the Internet.
  13. http://www.exim.org/
  14. if BR2_PACKAGE_EXIM
  15. config BR2_PACKAGE_EXIM_CUSTOM_CONFIG_FILE
  16. string "Custom configuration file"
  17. help
  18. By default, when this option is left empty, Buildroot
  19. generates a configuration file for exim with reasonable
  20. settings.
  21. If you want to override the configuration file generated by
  22. Buildroot with a customized file, set here the path to your
  23. configuration file with this option.
  24. This file shall comply with the syntax defined in the exim
  25. documentation (http://www.exim.org/docs.html).
  26. Buildroot will generate a configuration file composed of the
  27. content of the file you provide plus the toolchain-related
  28. settings needed for cross-compilation.
  29. endif