mirror of
https://git.busybox.net/buildroot.git
synced 2024-11-24 05:53:30 +08:00
4bcc4f3e6d
Fixes: http://autobuild.buildroot.net/results/259/25910726158f4b2cbd9ceb60c170f4b2d0b546ef/ http://autobuild.buildroot.net/results/94a/94ab8ba783a67529a62d4994ab8c62c8656a05e6/ http://autobuild.buildroot.net/results/1e5/1e59f273e0f31646065a1323a2e231c17babfe59/ Cc: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Baruch Siach <baruch@tkos.co.il> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
18 lines
648 B
Plaintext
18 lines
648 B
Plaintext
config BR2_PACKAGE_LKSCTP_TOOLS
|
|
bool "lksctp-tools"
|
|
depends on BR2_USE_MMU # fork()
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS
|
|
depends on !BR2_STATIC_LIBS # dlopen()
|
|
help
|
|
The lksctp-tools project provides a Linux user space library
|
|
for SCTP (libsctp) including C language header files
|
|
(netinet/sctp.h) for accessing SCTP specific application
|
|
programming interfaces not provided by the standard sockets,
|
|
and also some helper utilities around SCTP.
|
|
|
|
http://lksctp.sourceforge.net/
|
|
|
|
comment "lksctp-tools needs a toolchain w/ threads, dynamic library"
|
|
depends on BR2_USE_MMU
|
|
depends on !BR2_TOOLCHAIN_HAS_THREADS || BR2_STATIC_LIBS
|