mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-08-01 21:23:51 -09:00
Fixes https://autobuild.buildroot.net/results/bf23e75461877a4ca3a189626f30cf8cde24de36/ Jose unconditionally builds a shared library since v11 with: commit b72f8cad002edc87286dd1f2331c359158c512e8 Author: Rosen Penev <rosenp@gmail.com> Date: Tue May 30 12:18:30 2023 +0300 jose: build library only as shared (#119) Needed because of constructor usage in library. So add a dependency on BR2_SHARED_LIBS. Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
16 lines
439 B
Plaintext
16 lines
439 B
Plaintext
config BR2_PACKAGE_JOSE
|
|
bool "jose"
|
|
depends on BR2_SHARED_LIBS # builds .so
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS
|
|
select BR2_PACKAGE_ZLIB
|
|
select BR2_PACKAGE_JANSSON
|
|
select BR2_PACKAGE_OPENSSL
|
|
help
|
|
C-language implementation of Javascript Object Signing and
|
|
Encryption.
|
|
|
|
https://github.com/latchset/jose
|
|
|
|
comment "jose needs a toolchain w/ shared libraries, threads"
|
|
depends on !BR2_SHARED_LIBS || !BR2_TOOLCHAIN_HAS_THREADS
|