Config.in 956 B

12345678910111213141516171819202122232425262728293031323334
  1. config 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. This package installs only a few vital termcap entries
  7. http://www.gnu.org/software/ncurses/
  8. if BR2_PACKAGE_NCURSES
  9. config BR2_PACKAGE_NCURSES_WCHAR
  10. bool "enable wide char support"
  11. depends on BR2_USE_WCHAR
  12. help
  13. Enable wide char & UTF-8 support in ncurses libraries
  14. config BR2_PACKAGE_NCURSES_TARGET_PROGS
  15. bool "ncurses programs"
  16. help
  17. Include ncurses programs in target (clear, reset, tput, ...)
  18. config BR2_PACKAGE_NCURSES_ADDITIONAL_TERMINFO
  19. string "additional terminfo files to install"
  20. help
  21. Whitespace separated list of terminfo files to install on the
  22. target. A small number of vital terminfo files are always
  23. installed. This list is in addition to the vital ones.
  24. The terminfo filenames should have the single letter path
  25. prefix. e.g. t/tmux.
  26. endif