Config.in 691 B

12345678910111213141516171819
  1. config BR2_PACKAGE_MC
  2. bool "mc"
  3. depends on BR2_USE_WCHAR # libglib2
  4. depends on BR2_TOOLCHAIN_HAS_THREADS # libglib2
  5. depends on BR2_USE_MMU # libglib2, slang
  6. select BR2_PACKAGE_LIBGLIB2
  7. # mc prefers slang, but can use ncurses too
  8. select BR2_PACKAGE_SLANG if !BR2_PACKAGE_NCURSES
  9. help
  10. GNU Midnight Commander is a visual file manager, licensed
  11. under GNU General Public License. It can use either SLang
  12. (preferred) or ncurses for screen handling; if neither is
  13. enabled SLang will be automatically chosen.
  14. https://www.midnight-commander.org
  15. comment "mc needs a toolchain w/ threads, wchar"
  16. depends on !BR2_TOOLCHAIN_HAS_THREADS || !BR2_USE_WCHAR
  17. depends on BR2_USE_MMU