2008-03-06 19:12:45 +01:00
|
|
|
config BR2_PACKAGE_ICU
|
|
|
|
bool "icu"
|
2009-01-27 16:02:22 +01:00
|
|
|
depends on BR2_INSTALL_LIBSTDCPP
|
2009-01-27 16:02:29 +01:00
|
|
|
depends on BR2_USE_WCHAR
|
2013-10-08 03:08:21 +02:00
|
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS
|
2014-02-20 14:32:45 +01:00
|
|
|
# icu does some funky things by generating by itself an ELF
|
|
|
|
# file, and it cannot easily be changed to generate FLAT
|
|
|
|
# format.
|
|
|
|
depends on !BR2_BINFMT_FLAT
|
2014-08-17 21:29:41 +02:00
|
|
|
depends on BR2_ARCH_HAS_ATOMICS
|
2008-03-06 19:12:45 +01:00
|
|
|
help
|
|
|
|
International Components for Unicode.
|
2009-01-27 16:02:22 +01:00
|
|
|
|
2010-12-22 13:04:05 +01:00
|
|
|
http://site.icu-project.org/
|
2009-01-27 16:02:25 +01:00
|
|
|
|
2014-05-13 18:10:18 +02:00
|
|
|
if BR2_PACKAGE_ICU
|
|
|
|
|
|
|
|
config BR2_PACKAGE_ICU_CUSTOM_DATA_PATH
|
|
|
|
string "Path to custom data library file"
|
|
|
|
help
|
|
|
|
This option allows to define the path to a custom data
|
|
|
|
library generated with
|
|
|
|
http://apps.icu-project.org/datacustom/ICUData51.html. Leave
|
|
|
|
empty to not use this functionality.
|
|
|
|
|
|
|
|
endif
|
|
|
|
|
2014-08-17 21:29:41 +02:00
|
|
|
comment "icu needs a toolchain w/ C++, wchar, threads"
|
2014-02-20 14:32:45 +01:00
|
|
|
depends on !BR2_BINFMT_FLAT
|
2014-08-17 21:29:41 +02:00
|
|
|
depends on BR2_ARCH_HAS_ATOMICS
|
2013-10-08 03:08:21 +02:00
|
|
|
depends on !BR2_INSTALL_LIBSTDCPP || !BR2_USE_WCHAR || \
|
2014-08-17 21:29:41 +02:00
|
|
|
!BR2_TOOLCHAIN_HAS_THREADS
|