xref: /OK3568_Linux_fs/buildroot/package/tmux/Config.in (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1config BR2_PACKAGE_TMUX
2	bool "tmux"
3	depends on BR2_USE_MMU # fork()
4	depends on BR2_USE_WCHAR # mbtowc()
5	depends on BR2_ENABLE_LOCALE # runtime
6	select BR2_PACKAGE_LIBEVENT
7	select BR2_PACKAGE_NCURSES
8	help
9	  tmux is a terminal multiplexer, it enables a number of
10	  terminals (or windows) to be accessed and controlled from a
11	  single terminal.
12
13	  NOTE: tmux needs a working UTF-8 locale (BR2_GENERATE_LOCALE)
14
15	  https://tmux.github.io/
16
17comment "tmux needs a toolchain w/ wchar, locale"
18	depends on BR2_USE_MMU
19	depends on !BR2_USE_WCHAR || !BR2_ENABLE_LOCALE
20