xref: /OK3568_Linux_fs/buildroot/package/rsh-redone/Config.in (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1*4882a593Smuzhiyunconfig BR2_PACKAGE_RSH_REDONE
2*4882a593Smuzhiyun	bool "rsh-redone"
3*4882a593Smuzhiyun	help
4*4882a593Smuzhiyun	  Rsh-redone is a reimplementation of the remote shell clients
5*4882a593Smuzhiyun	  and servers. It is written from the ground up to avoid the
6*4882a593Smuzhiyun	  bugs found in the standard clients and servers. It also
7*4882a593Smuzhiyun	  fully supports IPv6.
8*4882a593Smuzhiyun
9*4882a593Smuzhiyun	  http://packages.debian.org/source/sid/rsh-redone
10*4882a593Smuzhiyun
11*4882a593Smuzhiyunif BR2_PACKAGE_RSH_REDONE
12*4882a593Smuzhiyun
13*4882a593Smuzhiyunconfig BR2_PACKAGE_RSH_REDONE_RLOGIN
14*4882a593Smuzhiyun	bool "rlogin"
15*4882a593Smuzhiyun
16*4882a593Smuzhiyunconfig BR2_PACKAGE_RSH_REDONE_RLOGIND
17*4882a593Smuzhiyun	bool "rlogind"
18*4882a593Smuzhiyun	depends on !BR2_STATIC_LIBS
19*4882a593Smuzhiyun	depends on BR2_ENABLE_LOCALE && BR2_USE_WCHAR
20*4882a593Smuzhiyun	depends on !BR2_TOOLCHAIN_USES_MUSL
21*4882a593Smuzhiyun	depends on BR2_USE_MMU # linux-pam
22*4882a593Smuzhiyun	select BR2_PACKAGE_LINUX_PAM
23*4882a593Smuzhiyun
24*4882a593Smuzhiyuncomment "rlogind needs a uClibc or glibc toolchain w/ wchar, locale, dynamic library"
25*4882a593Smuzhiyun	depends on !(BR2_ENABLE_LOCALE && BR2_USE_WCHAR) \
26*4882a593Smuzhiyun		|| BR2_STATIC_LIBS || BR2_TOOLCHAIN_USES_MUSL
27*4882a593Smuzhiyun
28*4882a593Smuzhiyunconfig BR2_PACKAGE_RSH_REDONE_RSH
29*4882a593Smuzhiyun	bool "rsh"
30*4882a593Smuzhiyun
31*4882a593Smuzhiyunconfig BR2_PACKAGE_RSH_REDONE_RSHD
32*4882a593Smuzhiyun	bool "rshd"
33*4882a593Smuzhiyun	depends on BR2_ENABLE_LOCALE && BR2_USE_WCHAR
34*4882a593Smuzhiyun	depends on !BR2_STATIC_LIBS
35*4882a593Smuzhiyun	depends on BR2_USE_MMU # linux-pam
36*4882a593Smuzhiyun	select BR2_PACKAGE_LINUX_PAM
37*4882a593Smuzhiyun
38*4882a593Smuzhiyuncomment "rshd needs a toolchain w/ wchar, locale, dynamic library"
39*4882a593Smuzhiyun	depends on !(BR2_ENABLE_LOCALE && BR2_USE_WCHAR) \
40*4882a593Smuzhiyun		|| BR2_STATIC_LIBS
41*4882a593Smuzhiyun
42*4882a593Smuzhiyunendif
43