python-whoosh: bump to version 2.7.4
[buildroot-gz.git] / package / rsh-redone / Config.in
blob6a8aec0369f927c5aa386fc22cdbd9f9a58232a4
1 config BR2_PACKAGE_RSH_REDONE
2         bool "rsh-redone"
3         help
4           Rsh-redone is a reimplementation of the remote shell clients and
5           servers. It is written from the ground up to avoid the bugs found
6           in the standard clients and servers. It also fully supports IPv6.
8           http://packages.debian.org/source/sid/rsh-redone
10 if BR2_PACKAGE_RSH_REDONE
12 config BR2_PACKAGE_RSH_REDONE_RLOGIN
13         bool "rlogin"
15 config BR2_PACKAGE_RSH_REDONE_RLOGIND
16         bool "rlogind"
17         depends on !BR2_STATIC_LIBS
18         depends on BR2_ENABLE_LOCALE && BR2_USE_WCHAR
19         depends on !BR2_TOOLCHAIN_USES_MUSL # linux-pam
20         depends on BR2_USE_MMU # linux-pam
21         select BR2_PACKAGE_LINUX_PAM
23 comment "rlogind needs a uClibc or glibc toolchain w/ wchar, locale, dynamic library"
24         depends on !(BR2_ENABLE_LOCALE && BR2_USE_WCHAR) \
25                 || BR2_STATIC_LIBS || BR2_TOOLCHAIN_USES_MUSL
27 config BR2_PACKAGE_RSH_REDONE_RSH
28         bool "rsh"
30 config BR2_PACKAGE_RSH_REDONE_RSHD
31         bool "rshd"
32         depends on BR2_ENABLE_LOCALE && BR2_USE_WCHAR
33         depends on !BR2_STATIC_LIBS
34         depends on !BR2_TOOLCHAIN_USES_MUSL # linux-pam
35         depends on BR2_USE_MMU # linux-pam
36         select BR2_PACKAGE_LINUX_PAM
38 comment "rshd needs a uClibc or glibc toolchain w/ wchar, locale, dynamic library"
39         depends on !(BR2_ENABLE_LOCALE && BR2_USE_WCHAR) \
40                 || BR2_STATIC_LIBS || BR2_TOOLCHAIN_USES_MUSL
42 endif