mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-08-01 21:23:51 -09:00
libp11 unconditionally calls the (deprecated) ENGINE_* logic in libopenssl resulting in a build failure when !BR2_PACKAGE_LIBOPENSSL_ENGINES since commit623d3bbe43: eng_front.c:25:2: error: #error did not get engine.h 25 | #error did not get engine.h | ^~~~~ Fixes:623d3bbe43- http://autobuild.buildroot.org/results/b03cc27a60f9e6794b3341517196fbf8dc3ec2d4 Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Signed-off-by: Arnout Vandecappelle <arnout@mind.be>
16 lines
469 B
Plaintext
16 lines
469 B
Plaintext
config BR2_PACKAGE_LIBP11
|
|
bool "libp11"
|
|
depends on !BR2_STATIC_LIBS # dlopen
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS
|
|
select BR2_PACKAGE_LIBOPENSSL_ENGINES
|
|
select BR2_PACKAGE_OPENSSL
|
|
select BR2_PACKAGE_OPENSSL_FORCE_LIBOPENSSL
|
|
help
|
|
OpenSSL engine for PKCS#11 modules. Part of the OpenSC
|
|
project.
|
|
|
|
https://github.com/OpenSC/OpenSC/wiki
|
|
|
|
comment "libp11 needs a toolchain w/ dynamic library, threads"
|
|
depends on BR2_STATIC_LIBS || !BR2_TOOLCHAIN_HAS_THREADS
|