Config.in 993 B

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