Config.in 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. config BR2_PACKAGE_RSH_REDONE
  2. bool "rsh-redone"
  3. help
  4. Rsh-redone is a reimplementation of the remote shell clients
  5. and servers. It is written from the ground up to avoid the
  6. bugs found in the standard clients and servers. It also
  7. fully supports IPv6.
  8. http://packages.debian.org/source/sid/rsh-redone
  9. if BR2_PACKAGE_RSH_REDONE
  10. config BR2_PACKAGE_RSH_REDONE_RLOGIN
  11. bool "rlogin"
  12. config BR2_PACKAGE_RSH_REDONE_RLOGIND
  13. bool "rlogind"
  14. depends on !BR2_STATIC_LIBS
  15. depends on BR2_ENABLE_LOCALE && BR2_USE_WCHAR
  16. depends on !BR2_TOOLCHAIN_USES_MUSL
  17. depends on BR2_USE_MMU # linux-pam
  18. depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 # linux-pam
  19. select BR2_PACKAGE_LINUX_PAM
  20. comment "rlogind needs a uClibc or glibc toolchain w/ wchar, locale, dynamic library, gcc >= 4.9"
  21. depends on !(BR2_ENABLE_LOCALE && BR2_USE_WCHAR) \
  22. || BR2_STATIC_LIBS || BR2_TOOLCHAIN_USES_MUSL || \
  23. !BR2_TOOLCHAIN_GCC_AT_LEAST_4_9
  24. config BR2_PACKAGE_RSH_REDONE_RSH
  25. bool "rsh"
  26. config BR2_PACKAGE_RSH_REDONE_RSHD
  27. bool "rshd"
  28. depends on BR2_ENABLE_LOCALE && BR2_USE_WCHAR
  29. depends on !BR2_STATIC_LIBS
  30. depends on BR2_USE_MMU # linux-pam
  31. depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 # linux-pam
  32. select BR2_PACKAGE_LINUX_PAM
  33. comment "rshd needs a toolchain w/ wchar, locale, dynamic library, gcc >= 4.9"
  34. depends on !(BR2_ENABLE_LOCALE && BR2_USE_WCHAR) \
  35. || BR2_STATIC_LIBS || !BR2_TOOLCHAIN_GCC_AT_LEAST_4_9
  36. endif