2014-10-05 21:48:02 +02:00
|
|
|
config BR2_PACKAGE_NETCAT_OPENBSD
|
|
|
|
bool "netcat-openbsd"
|
|
|
|
depends on BR2_PACKAGE_LIBBSD_ARCH_SUPPORTS
|
2021-02-01 18:51:13 +01:00
|
|
|
depends on !BR2_STATIC_LIBS # libbsd
|
2014-10-05 21:48:02 +02:00
|
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS
|
|
|
|
depends on BR2_TOOLCHAIN_USES_GLIBC
|
2016-07-04 15:46:56 +02:00
|
|
|
depends on BR2_PACKAGE_BUSYBOX_SHOW_OTHERS
|
2017-11-28 16:44:37 +01:00
|
|
|
depends on BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_12
|
2017-04-22 19:18:00 +02:00
|
|
|
select BR2_PACKAGE_LIBBSD
|
2014-10-05 21:48:02 +02:00
|
|
|
help
|
2017-12-18 09:21:05 +01:00
|
|
|
A simple Unix utility which reads and writes data across
|
|
|
|
network connections using TCP or UDP protocol. It is
|
|
|
|
designed to be a reliable "back-end" tool that can be used
|
|
|
|
directly or easily driven by other programs and scripts. At
|
|
|
|
the same time it is a feature-rich network debugging and
|
|
|
|
exploration tool, since it can create almost any kind of
|
|
|
|
connection you would need and has several interesting
|
2014-10-25 20:29:31 +02:00
|
|
|
built-in capabilities.
|
2014-10-05 21:48:02 +02:00
|
|
|
|
2017-12-18 09:21:05 +01:00
|
|
|
This package contains the OpenBSD rewrite of netcat,
|
|
|
|
including support for IPv6, proxies, and Unix sockets.
|
2014-10-05 21:48:02 +02:00
|
|
|
|
2014-10-25 20:29:31 +02:00
|
|
|
https://packages.debian.org/sid/netcat-openbsd
|
2014-10-05 21:48:02 +02:00
|
|
|
|
2021-02-01 18:51:13 +01:00
|
|
|
comment "netcat-openbsd needs a glibc toolchain w/ dynamic library, threads, headers >= 3.12"
|
2014-10-25 08:20:44 +02:00
|
|
|
depends on BR2_PACKAGE_LIBBSD_ARCH_SUPPORTS
|
2021-02-01 18:51:13 +01:00
|
|
|
depends on BR2_STATIC_LIBS || !BR2_TOOLCHAIN_HAS_THREADS || \
|
|
|
|
!BR2_TOOLCHAIN_USES_GLIBC || \
|
2017-11-28 16:44:37 +01:00
|
|
|
!BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_12
|
2016-07-04 15:46:56 +02:00
|
|
|
depends on BR2_PACKAGE_BUSYBOX_SHOW_OTHERS
|