2014-01-25 00:15:14 +01:00
|
|
|
config BR2_PACKAGE_TMUX
|
|
|
|
bool "tmux"
|
2014-05-02 13:09:22 +02:00
|
|
|
depends on BR2_USE_MMU # fork()
|
2016-06-20 06:46:11 +02:00
|
|
|
depends on BR2_USE_WCHAR # mbtowc()
|
|
|
|
depends on BR2_ENABLE_LOCALE # runtime
|
2014-01-25 00:15:14 +01:00
|
|
|
select BR2_PACKAGE_LIBEVENT
|
|
|
|
select BR2_PACKAGE_NCURSES
|
|
|
|
help
|
2016-06-20 06:46:11 +02:00
|
|
|
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)
|
2014-01-25 00:15:14 +01:00
|
|
|
|
2016-02-20 04:24:59 +01:00
|
|
|
https://tmux.github.io/
|
2016-06-20 06:46:11 +02:00
|
|
|
|
|
|
|
comment "tmux needs a toolchain w/ wchar, locale"
|
|
|
|
depends on BR2_USE_MMU
|
|
|
|
depends on !BR2_USE_WCHAR || !BR2_ENABLE_LOCALE
|