Files
buildroot/package/cannelloni/Config.in
Yegor Yefremov 68c8ff2c95 package/cannelloni: bump to version 2.0.0
For change log, see:

https://github.com/mguentner/cannelloni/releases/tag/v2.0.0

Bump GCC to at least GCC 8 due to the C++20 requirement.

Add TCP protocol to the package's description.

This release also raise cmake version requirement to 3.15, which fixes
build failures with host-cmake >= 4.x.

Fixes:
https://autobuild.buildroot.org/results/87d5ab39a84c51f340875ae365d4f39439e81645/

Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com>
[Julien: add a commit log comment about fixes with host-cmake 4]
Signed-off-by: Julien Olivain <ju.o@free.fr>
2025-06-15 22:48:23 +02:00

18 lines
635 B
Plaintext

config BR2_PACKAGE_CANNELLONI
bool "cannelloni"
depends on BR2_TOOLCHAIN_GCC_AT_LEAST_8 # C++20
depends on BR2_INSTALL_LIBSTDCPP
depends on BR2_USE_MMU # lksctp-tools
depends on BR2_TOOLCHAIN_HAS_THREADS # lksctp-tools
depends on !BR2_STATIC_LIBS # lksctp-tools
help
A SocketCAN over Ethernet tunnel. The tunnel supports TCP,
UDP and SCTP protocols.
https://github.com/mguentner/cannelloni
comment "cannelloni needs a toolchain w/ C++, threads, dynamic library, gcc >= 8"
depends on !BR2_INSTALL_LIBSTDCPP || BR2_STATIC_LIBS || \
!BR2_TOOLCHAIN_GCC_AT_LEAST_8 || !BR2_TOOLCHAIN_HAS_THREADS
depends on BR2_USE_MMU