2004-10-09 08:13:40 +02:00
|
|
|
config BR2_PACKAGE_GETTEXT
|
2004-12-24 10:23:11 +01:00
|
|
|
bool "gettext"
|
2010-05-14 09:46:21 +02:00
|
|
|
depends on BR2_NEEDS_GETTEXT
|
2010-05-25 23:38:44 +02:00
|
|
|
depends on BR2_USE_WCHAR
|
2004-10-09 08:13:40 +02:00
|
|
|
help
|
2007-01-10 07:05:18 +01:00
|
|
|
The GNU `gettext' utilities are a set of tools that provide a
|
|
|
|
framework to help other GNU packages produce multi-lingual
|
2004-12-24 10:23:11 +01:00
|
|
|
messages.
|
2004-10-09 08:13:40 +02:00
|
|
|
|
2012-09-16 14:57:50 +02:00
|
|
|
Only the libintl library will be installed in the
|
2012-09-16 14:57:48 +02:00
|
|
|
target. The full gettext suite, including tools, will be
|
|
|
|
installed in the staging directory.
|
|
|
|
|
2004-12-24 10:23:11 +01:00
|
|
|
http://www.gnu.org/software/gettext/
|
2006-01-25 18:47:03 +01:00
|
|
|
|
2012-09-16 14:57:50 +02:00
|
|
|
config BR2_PACKAGE_GETTEXT_TOOLS
|
|
|
|
bool "Install gettext tools"
|
|
|
|
depends on BR2_PACKAGE_GETTEXT
|
2012-12-13 11:02:57 +01:00
|
|
|
depends on BR2_USE_MMU # fork()
|
|
|
|
depends on BR2_LARGEFILE
|
|
|
|
select BR2_PACKAGE_LIBICONV if !BR2_ENABLE_LOCALE
|
2012-09-16 14:57:50 +02:00
|
|
|
help
|
|
|
|
This option allows to install the complete gettext suite in
|
|
|
|
the target filesystem. This is typically not useful for
|
|
|
|
correct operation of programs.
|
|
|
|
|
2010-05-25 23:38:44 +02:00
|
|
|
comment "gettext requires a toolchain with WCHAR support"
|
|
|
|
depends on BR2_NEEDS_GETTEXT && !BR2_USE_WCHAR
|