1config 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 10 http://www.vim.org/ 11 12if BR2_PACKAGE_VIM 13 14config BR2_PACKAGE_VIM_RUNTIME 15 bool "install runtime" 16 default y 17 help 18 Install VIM runtime (syntax highlighing + macros). 19 This option adds about 11MB of data to /usr/share/ 20 21endif 22 23comment "vim needs a toolchain w/ wchar" 24 depends on !BR2_USE_WCHAR 25 depends on BR2_USE_MMU 26 depends on BR2_PACKAGE_BUSYBOX_SHOW_OTHERS 27