1config BR2_PACKAGE_IRSSI 2 bool "irssi" 3 depends on BR2_USE_WCHAR # libglib2 4 depends on BR2_TOOLCHAIN_HAS_THREADS # libglib2 5 depends on BR2_USE_MMU # fork() 6 select BR2_PACKAGE_LIBGLIB2 7 select BR2_PACKAGE_NCURSES 8 select BR2_PACKAGE_OPENSSL 9 help 10 Irssi is a terminal based IRC client for UNIX systems. 11 12 http://irssi.org/ 13 14if BR2_PACKAGE_IRSSI 15 16config BR2_PACKAGE_IRSSI_PROXY 17 bool "proxy module" 18 help 19 Build the irssi proxy module, which allows an IRC connection 20 to be shared among multiple clients. 21 22config BR2_PACKAGE_IRSSI_TRUE_COLOR 23 bool "true color support" 24 help 25 Build with true color support in terminal. 26 27endif 28 29comment "irssi needs a toolchain w/ wchar, threads" 30 depends on BR2_USE_MMU 31 depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS 32