a35b7c4e91
This patch fixes compilation error in case of a missing locale in toolchain. Fixes: http://autobuild.buildroot.net/results/a0fc33a4ed90844f9529acc76a6ba183fe253771/ http://autobuild.buildroot.net/results/3ff839e894f0b8f9c2e3af9629d45e8efc09aecd/ http://autobuild.buildroot.net/results/5e11117048d965bc1fc44c738bb51f11164304af/ Signed-off-by: Angelo Compagnucci <angelo.compagnucci@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
19 lines
599 B
Plaintext
19 lines
599 B
Plaintext
config BR2_PACKAGE_MONO_ARCH_SUPPORTS
|
|
bool
|
|
default y if (BR2_arm || BR2_armeb || BR2_i386 || BR2_mips || \
|
|
BR2_mipsel || BR2_powerpc || BR2_sparc || BR2_x86_64)
|
|
|
|
config BR2_PACKAGE_MONO
|
|
bool "mono"
|
|
depends on BR2_PACKAGE_MONO_ARCH_SUPPORTS
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS
|
|
select BR2_PACKAGE_LIBICONV if !BR2_ENABLE_LOCALE
|
|
help
|
|
An open source, cross-platform, implementation of C#
|
|
and the CLR that is binary compatible with Microsoft.NET.
|
|
|
|
http://download.mono-project.com/sources/mono/
|
|
|
|
comment "mono needs a toolchain w/ threads"
|
|
depends on !BR2_TOOLCHAIN_HAS_THREADS
|