]> rtime.felk.cvut.cz Git - coffee/buildroot.git/blob - package/erlang/Config.in
Rename BR2_PREFER_STATIC_LIB to BR2_STATIC_LIBS
[coffee/buildroot.git] / package / erlang / Config.in
1 comment "erlang needs a toolchain w/ threads, shared library"
2         depends on !BR2_TOOLCHAIN_HAS_THREADS && BR2_STATIC_LIBS
3
4 config BR2_PACKAGE_ERLANG
5         bool "erlang"
6         depends on BR2_USE_MMU # fork()
7         depends on BR2_TOOLCHAIN_HAS_THREADS
8         depends on !BR2_STATIC_LIBS
9         help
10           Erlang is a programming language used to build massively scalable
11           soft real-time systems with requirements on high availability.
12           Some of its uses are in telecoms, banking, e-commerce, computer
13           telephony and instant messaging. Erlang's runtime system has
14           built-in support for concurrency, distribution and fault tolerance.
15
16           http://www.erlang.org
17
18 if BR2_PACKAGE_ERLANG
19
20 config BR2_PACKAGE_ERLANG_SMP
21         bool "enable SMP support"
22         help
23           Erlang provides both a UP and an SMP emulator. The UP emulator
24           is always built, and this option enables compilation of the SMP
25           emulator. The choice of which emulator to use is made at runtime.
26           If you do not need SMP support, turning this option off reduces
27           compile time and the size of the Erlang installation.
28
29 config BR2_PACKAGE_ERLANG_MEGACO
30         bool "install megaco application"
31         help
32           The Megaco application is a framework for building applications
33           on top of the Megaco/H.248 protocol. It is approximately 14MB in
34           size so if you do not need it then it is recommended not to
35           enable it.
36
37 endif # BR2_PACKAGE_ERLANG