buildroot/package/tmux/Config.in
Ricardo Martincoski 1ce1d924f5 tmux: bump to version 2.2
- remove patch already upstream 0001-remove-use-of-sys-cdefs.h.patch
7b085136a7
- add new dependency on BR2_USE_WCHAR (version 2.2 uses mbtowc())
- add new dependency on locale support
- add note to help text about the need of a working UTF-8 locale
- also rewrap help text to 72 characters

Signed-off-by: Ricardo Martincoski <ricardo.martincoski@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
2016-07-01 11:12:49 +02:00

20 lines
569 B
Plaintext

config BR2_PACKAGE_TMUX
bool "tmux"
depends on BR2_USE_MMU # fork()
depends on BR2_USE_WCHAR # mbtowc()
depends on BR2_ENABLE_LOCALE # runtime
select BR2_PACKAGE_LIBEVENT
select BR2_PACKAGE_NCURSES
help
tmux is a terminal multiplexer, it enables a number of
terminals (or windows) to be accessed and controlled from a
single terminal.
NOTE: tmux needs a working UTF-8 locale (BR2_GENERATE_LOCALE)
https://tmux.github.io/
comment "tmux needs a toolchain w/ wchar, locale"
depends on BR2_USE_MMU
depends on !BR2_USE_WCHAR || !BR2_ENABLE_LOCALE