xref: /OK3568_Linux_fs/buildroot/package/exim/Config.in (revision 4882a59341e53eb6f0b4789bf948001014eff981)
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_PCRE
9	select BR2_PACKAGE_BERKELEYDB
10	help
11	  Exim is a message transfer agent (MTA) developed at the
12	  University of Cambridge for use on Unix systems connected to
13	  the Internet.
14
15	  http://www.exim.org/
16
17if BR2_PACKAGE_EXIM
18
19config BR2_PACKAGE_EXIM_CUSTOM_CONFIG_FILE
20	string "Custom configuration file"
21	help
22	  By default, when this option is left empty, Buildroot
23	  generates a configuration file for exim with reasonable
24	  settings.
25
26	  If you want to override the configuration file generated by
27	  Buildroot with a customized file, set here the path to your
28	  configuration file with this option.
29
30	  This file shall comply with the syntax defined in the exim
31	  documentation (http://www.exim.org/docs.html).
32	  Buildroot will generate a configuration file composed of the
33	  content of the file you provide plus the toolchain-related
34	  settings needed for cross-compilation.
35
36endif
37