1config BR2_PACKAGE_LIBEDIT 2 bool "libedit" 3 depends on BR2_USE_WCHAR 4 depends on BR2_USE_MMU # fork() 5 select BR2_PACKAGE_NCURSES 6 help 7 The editline library (from BSD) provides generic line editing 8 and history functions. It slightly resembles GNU readline. 9 10 The official homepage is at: 11 http://ftp.netbsd.org/pub/NetBSD/NetBSD-release-5-0/src/lib/libedit/ 12 13 Jess Thrysoee maintains an autotoolified package, which we use 14 in Buildroot as it makes it much simpler than using the 15 upstream sources which require pmake. 16 17 http://www.thrysoee.dk/editline 18 19comment "libedit needs a toolchain w/ wchar" 20 depends on BR2_USE_MMU 21 depends on !BR2_USE_WCHAR 22