mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-08-08 00:20:38 -09:00
librelp unconditionally calls the (deprecated) ENGINE_* logic in libopenssl resulting in a build failure when !BR2_PACKAGE_LIBOPENSSL_ENGINES since commit623d3bbe43: tcp.c: In function 'relpTcpExitTLS_ossl': tcp.c:1992:17: error: implicit declaration of function 'ENGINE_cleanup'; did you mean 'EVP_PBE_cleanup'? [-Wimplicit-function-declaration] 1992 | ENGINE_cleanup(); | ^~~~~~~~~~~~~~ | EVP_PBE_cleanup Fixes:623d3bbe43- http://autobuild.buildroot.org/results/68a1e94e077d8d57690a2543e557ba3f2974b03e Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
12 lines
319 B
Plaintext
12 lines
319 B
Plaintext
config BR2_PACKAGE_LIBRELP
|
|
bool "librelp"
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS
|
|
select BR2_PACKAGE_LIBOPENSSL_ENGINES if BR2_PACKAGE_LIBOPENSSL
|
|
help
|
|
Reliable Event Logging Protocol library
|
|
|
|
https://www.rsyslog.com/librelp/
|
|
|
|
comment "librelp needs a toolchain w/ threads"
|
|
depends on !BR2_TOOLCHAIN_HAS_THREADS
|