Config.in 1.1 KB

12345678910111213141516171819202122232425
  1. config BR2_PACKAGE_NETCAT_OPENBSD
  2. bool "netcat-openbsd"
  3. depends on BR2_PACKAGE_LIBBSD_ARCH_SUPPORTS
  4. depends on BR2_TOOLCHAIN_HAS_THREADS
  5. depends on BR2_TOOLCHAIN_USES_GLIBC
  6. depends on BR2_PACKAGE_BUSYBOX_SHOW_OTHERS
  7. select BR2_PACKAGE_LIBBSD
  8. help
  9. A simple Unix utility which reads and writes data across network
  10. connections using TCP or UDP protocol. It is designed to be a
  11. reliable "back-end" tool that can be used directly or easily driven
  12. by other programs and scripts. At the same time it is a feature-rich
  13. network debugging and exploration tool, since it can create almost
  14. any kind of connection you would need and has several interesting
  15. built-in capabilities.
  16. This package contains the OpenBSD rewrite of netcat, including
  17. support for IPv6, proxies, and Unix sockets.
  18. https://packages.debian.org/sid/netcat-openbsd
  19. comment "netcat-openbsd needs a glibc toolchain w/ threads"
  20. depends on BR2_PACKAGE_LIBBSD_ARCH_SUPPORTS
  21. depends on !BR2_TOOLCHAIN_HAS_THREADS || !BR2_TOOLCHAIN_USES_GLIBC
  22. depends on BR2_PACKAGE_BUSYBOX_SHOW_OTHERS