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