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