mirror of
https://git.yoctoproject.org/poky
synced 2026-02-08 09:46:38 +01:00
vim: add option to disable NLS support
- Some distributions with UTF-8 locale have problem when National Language Support is enabled. Add there an option to disable it. (From OE-Core rev: da630d6d81a396c3e1635fbd7b8103df47ed2732) Signed-off-by: Andrej Valek <andrej.valek@siemens.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
ecf8795519
commit
4e2da1699e
@@ -54,11 +54,12 @@ do_compile() {
|
||||
autotools_do_compile
|
||||
}
|
||||
|
||||
#Available PACKAGECONFIG options are gtkgui, acl, x11, tiny
|
||||
#Available PACKAGECONFIG options are gtkgui, acl, x11, tiny selinux, elfutils, nls
|
||||
PACKAGECONFIG ??= ""
|
||||
PACKAGECONFIG += " \
|
||||
${@bb.utils.filter('DISTRO_FEATURES', 'acl selinux', d)} \
|
||||
${@bb.utils.contains('DISTRO_FEATURES', 'x11', 'x11 gtkgui', '', d)} \
|
||||
nls \
|
||||
"
|
||||
|
||||
PACKAGECONFIG[gtkgui] = "--enable-gui=gtk3,--enable-gui=no,gtk+3"
|
||||
@@ -67,6 +68,7 @@ PACKAGECONFIG[x11] = "--with-x,--without-x,xt,"
|
||||
PACKAGECONFIG[tiny] = "--with-features=tiny,--with-features=big,,"
|
||||
PACKAGECONFIG[selinux] = "--enable-selinux,--disable-selinux,libselinux,"
|
||||
PACKAGECONFIG[elfutils] = "--enable-elf-check,,elfutils,"
|
||||
PACKAGECONFIG[nls] = "--enable-nls,--disable-nls,,"
|
||||
|
||||
EXTRA_OECONF = " \
|
||||
--disable-gpm \
|
||||
|
||||
Reference in New Issue
Block a user