1config BR2_PACKAGE_MUTT 2 bool "mutt" 3 depends on BR2_USE_WCHAR 4 depends on BR2_USE_MMU # fork() 5 select BR2_PACKAGE_NCURSES 6 help 7 Mutt is a sophisticated text-based Mail User Agent (MUA) 8 9 http://www.mutt.org/ 10 11if BR2_PACKAGE_MUTT 12 13config BR2_PACKAGE_MUTT_IMAP 14 bool "imap" 15 help 16 IMAP support 17 18config BR2_PACKAGE_MUTT_POP3 19 bool "pop3" 20 help 21 POP3 support 22 23endif # BR2_PACKAGE_MUTT 24 25comment "mutt needs a toolchain w/ wchar" 26 depends on BR2_USE_MMU 27 depends on !BR2_USE_WCHAR 28