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