xref: /OK3568_Linux_fs/buildroot/package/ncurses/Config.in (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1config BR2_PACKAGE_NCURSES
2	bool "ncurses"
3	help
4	  The Ncurses (new curses) library is a free software
5	  emulation of curses in System V Release 4.0, and more.
6
7	  This package installs only a few vital termcap entries
8
9	  http://www.gnu.org/software/ncurses/
10
11if BR2_PACKAGE_NCURSES
12
13config BR2_PACKAGE_NCURSES_STATIC
14	bool "Enable static"
15	default y if BR2_STATIC_LIBS
16
17config BR2_PACKAGE_NCURSES_WCHAR
18	bool "enable wide char support"
19	depends on BR2_USE_WCHAR
20	help
21	  Enable wide char & UTF-8 support in ncurses libraries
22
23config BR2_PACKAGE_NCURSES_TARGET_PROGS
24	bool "ncurses programs"
25	help
26	  Include ncurses programs in target (clear, reset, tput, ...)
27
28config BR2_PACKAGE_NCURSES_ADDITIONAL_TERMINFO
29	string "additional terminfo files to install"
30	help
31	  Whitespace separated list of terminfo files to install on the
32	  target. A small number of vital terminfo files are always
33	  installed. This list is in addition to the vital ones.
34
35	  The terminfo filenames should have the single letter path
36	  prefix. e.g. t/tmux.
37
38endif
39