00bb3db576
This commit switches to use the new gettext logic, which involves: - using TARGET_NLS_DEPENDENCIES instead of hand-encoded dependencies on gettext/host-gettext - dropping BR2_PACKAGE_GETTEXT selection Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Reviewed-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
21 lines
613 B
Plaintext
21 lines
613 B
Plaintext
config BR2_PACKAGE_LIBGLIB2
|
|
bool "libglib2"
|
|
depends on BR2_USE_WCHAR # gettext
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS
|
|
depends on BR2_USE_MMU # fork()
|
|
select BR2_PACKAGE_LIBICONV if !BR2_ENABLE_LOCALE
|
|
select BR2_PACKAGE_LIBFFI
|
|
select BR2_PACKAGE_PCRE
|
|
select BR2_PACKAGE_PCRE_UCP
|
|
select BR2_PACKAGE_UTIL_LINUX
|
|
select BR2_PACKAGE_UTIL_LINUX_LIBMOUNT
|
|
select BR2_PACKAGE_ZLIB
|
|
help
|
|
Low-level core library that forms the basis of GTK+ and GNOME.
|
|
|
|
http://www.gtk.org/
|
|
|
|
comment "libglib2 needs a toolchain w/ wchar, threads"
|
|
depends on BR2_USE_MMU
|
|
depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS
|