Config.in 771 B

12345678910111213141516171819202122232425262728293031
  1. config 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. http://irssi.org/
  12. if BR2_PACKAGE_IRSSI
  13. config BR2_PACKAGE_IRSSI_PROXY
  14. bool "proxy module"
  15. help
  16. Build the irssi proxy module, which allows an IRC connection
  17. to be shared among multiple clients.
  18. config BR2_PACKAGE_IRSSI_TRUE_COLOR
  19. bool "true color support"
  20. help
  21. Build with true color support in terminal.
  22. endif
  23. comment "irssi needs a toolchain w/ wchar, threads"
  24. depends on BR2_USE_MMU
  25. depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS