kumquat-buildroot/package/irssi/Config.in
Peter Korsgaard d1e2d290d9 irssi: bump version to version 1.0.2
Notice that this fixes a security issue:

CWE-416 (use after free condition during netjoin processing). No CVE
assigned yet:

https://irssi.org/security/irssi_sa_2017_03.txt

But the 0.8.x series is not believed to be vulnerable to this specific
issue.  From the advisory:

Affected versions
-----------------

Irssi up to and including 1.0.1

We believe Irssi 0.8.21 and prior are not affected since a different
code path causes the netjoins to be flushed prior to reaching the use
after free condition.

Openssl is no longer optional, so select it and drop the enable/disable
handling.

Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
2017-03-15 11:50:05 +01:00

32 lines
771 B
Plaintext

config BR2_PACKAGE_IRSSI
bool "irssi"
select BR2_PACKAGE_LIBGLIB2
select BR2_PACKAGE_NCURSES
select BR2_PACKAGE_OPENSSL
depends on BR2_USE_WCHAR # libglib2
depends on BR2_TOOLCHAIN_HAS_THREADS # libglib2
depends on BR2_USE_MMU # fork()
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