Config.in 565 B

1234567891011121314151617181920212223242526
  1. config BR2_PACKAGE_VIM
  2. bool "vim"
  3. depends on BR2_USE_MMU # uses fork()
  4. depends on BR2_USE_WCHAR
  5. depends on BR2_PACKAGE_BUSYBOX_SHOW_OTHERS
  6. select BR2_PACKAGE_NCURSES
  7. help
  8. VIM Text editor
  9. http://www.vim.org/
  10. if BR2_PACKAGE_VIM
  11. config BR2_PACKAGE_VIM_RUNTIME
  12. bool "install runtime"
  13. default y
  14. help
  15. Install VIM runtime (syntax highlighing + macros).
  16. This option adds about 11MB of data to /usr/share/
  17. endif
  18. comment "vim needs a toolchain w/ wchar"
  19. depends on !BR2_USE_WCHAR
  20. depends on BR2_USE_MMU
  21. depends on BR2_PACKAGE_BUSYBOX_SHOW_OTHERS