2cfa86a548
Needed for compatibility with OpenSSL 3.x which was added in version 25:f11a9f2d3a
Added dependency to wchar due to upstream commitbd0865ff86
Removed all patches. Added new patch to fix build with defconfig bootlin-x86-64-uclibc. CVE-2021-29221 does not need to be ignored anymore, the latest broken version was 23.2.3. Removed ERLANG_REMOVE_SSL_DEPS hook, bug was fixed upstream:f03feee7e3
Updated ERLANG_RUN_AUTOCONF due to upstream commitd277599a42 (diff-9d7b6b593fbd689e1f48ba5964dc3bcc87c51e8e1aab5ff496a4e5ba3a248775R1233)
Signed-off-by: Bernd Kuhls <bernd@kuhls.net> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
52 lines
1.7 KiB
Plaintext
52 lines
1.7 KiB
Plaintext
config BR2_PACKAGE_HOST_ERLANG_ARCH_SUPPORTS
|
|
bool
|
|
default y if BR2_HOSTARCH = "x86_64"
|
|
default y if BR2_HOSTARCH = "x86"
|
|
|
|
config BR2_PACKAGE_ERLANG_ARCH_SUPPORTS
|
|
bool
|
|
# see HOWTO/INSTALL.md for Erlang's supported platforms
|
|
# when using its native atomic ops implementation or gcc's
|
|
# __atomic_* builtins
|
|
default y if BR2_i386 || BR2_x86_64 || BR2_powerpc || \
|
|
BR2_sparc_v9 || BR2_arm || BR2_aarch64 || BR2_mipsel || \
|
|
BR2_RISCV_64
|
|
# erlang needs host-erlang
|
|
depends on BR2_PACKAGE_HOST_ERLANG_ARCH_SUPPORTS
|
|
|
|
comment "erlang needs a toolchain w/ dynamic library, threads, wchar"
|
|
depends on BR2_USE_MMU # fork()
|
|
depends on BR2_PACKAGE_ERLANG_ARCH_SUPPORTS
|
|
depends on BR2_STATIC_LIBS || !BR2_TOOLCHAIN_HAS_THREADS \
|
|
|| !BR2_USE_WCHAR
|
|
|
|
config BR2_PACKAGE_ERLANG
|
|
bool "erlang"
|
|
depends on BR2_USE_MMU # fork()
|
|
depends on BR2_USE_WCHAR
|
|
depends on !BR2_STATIC_LIBS
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS
|
|
depends on BR2_PACKAGE_ERLANG_ARCH_SUPPORTS
|
|
select BR2_PACKAGE_ZLIB
|
|
help
|
|
Erlang is a programming language used to build massively
|
|
scalable soft real-time systems with requirements on high
|
|
availability. Some of its uses are in telecoms, banking,
|
|
e-commerce, computer telephony and instant messaging.
|
|
Erlang's runtime system has built-in support for
|
|
concurrency, distribution and fault tolerance.
|
|
|
|
http://www.erlang.org
|
|
|
|
if BR2_PACKAGE_ERLANG
|
|
|
|
config BR2_PACKAGE_ERLANG_MEGACO
|
|
bool "install megaco application"
|
|
help
|
|
The Megaco application is a framework for building
|
|
applications on top of the Megaco/H.248 protocol. It is
|
|
approximately 14MB in size so if you do not need it then
|
|
it is recommended not to enable it.
|
|
|
|
endif # BR2_PACKAGE_ERLANG
|