mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-09-10 00:04:06 -09:00
Buildroot commite1050a3a50bumped the package which includes upstream commit https://git.openwrt.org/?p=project/ustream-ssl.git;a=commit;h=956fba242ac0a4bcfe3db103d4d1f41545c924fb that adds the usage of SSL_trace causing a build error when OpenSSL was built without ssl-trace support: /home/autobuild/autobuild/instance-10/output-1/build/ustream-ssl-5a81c108d20e24724ed847cc4be033f2a74e6635/ustream-openssl.c: In function '__ustream_ssl_set_debug': /home/autobuild/autobuild/instance-10/output-1/build/ustream-ssl-5a81c108d20e24724ed847cc4be033f2a74e6635/ustream-openssl.c:490:44: error: 'SSL_trace' undeclared (first use in this function); did you mean 'SSL_write'? 490 | SSL_CTX_set_msg_callback(ctx->ssl, SSL_trace); Fixes: https://autobuild.buildroot.net/results/17c/17c88282c32f2edfa0991e0e10cb45013c947be9/ Signed-off-by: Bernd Kuhls <bernd@kuhls.net> Signed-off-by: Arnout Vandecappelle <arnout@rnout.be> (cherry picked from commit88882b21f2) Signed-off-by: Thomas Perale <thomas.perale@mind.be>
16 lines
520 B
Plaintext
16 lines
520 B
Plaintext
config BR2_PACKAGE_USTREAM_SSL
|
|
bool "ustream-ssl"
|
|
depends on !BR2_STATIC_LIBS # libubox
|
|
depends on BR2_TOOLCHAIN_HAS_SYNC_4 # libubox -> json-c
|
|
select BR2_PACKAGE_LIBUBOX
|
|
select BR2_PACKAGE_OPENSSL if !BR2_PACKAGE_MBEDTLS
|
|
select BR2_PACKAGE_LIBOPENSSL_ENABLE_SSL_TRACE if BR2_PACKAGE_LIBOPENSSL
|
|
help
|
|
ustream SSL wrapper
|
|
|
|
https://git.openwrt.org/?p=project/ustream-ssl.git;a=summary
|
|
|
|
comment "ustream-ssl needs a toolchain w/ dynamic library"
|
|
depends on BR2_STATIC_LIBS
|
|
depends on BR2_TOOLCHAIN_HAS_SYNC_4
|