Config.in 1.2 KB

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