mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-09-27 04:20:38 -09:00
Needed for domoticz >= 2025.1:
b30d9e9436
Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
14 lines
409 B
Plaintext
14 lines
409 B
Plaintext
config BR2_PACKAGE_JWT_CPP
|
|
bool "jwt-cpp"
|
|
depends on BR2_INSTALL_LIBSTDCPP
|
|
depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_8 # C++11
|
|
select BR2_PACKAGE_OPENSSL
|
|
help
|
|
A header only library for creating and validating json web
|
|
tokens in c++
|
|
|
|
https://thalhammer.github.io/jwt-cpp/
|
|
|
|
comment "jwt-cpp needs a toolchain w/ C++, gcc >= 4.8"
|
|
depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_GCC_AT_LEAST_4_8
|