mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-09-10 16:24:17 -09:00
sftp doesn't build with libressl >= 3.5.0 resulting in the following build failure since commit8b216927db: mac.c: In function 'init_mac': mac.c:189:3: warning: implicit declaration of function 'HMAC_CTX_init'; did you mean 'HMAC_CTX_new'? [-Wimplicit-function-declaration] 189 | HMAC_CTX_init(hmac_ctx); | ^~~~~~~~~~~~~ | HMAC_CTX_new mac.c: In function 'set_mac_key': mac.c:435:14: error: storage size of 'ctx' isn't known 435 | EVP_MD_CTX ctx; | ^~~ So force use of openssl for sftpd, as no feedback was received on https://github.com/proftpd/proftpd/pull/1481 Fixes: - http://autobuild.buildroot.org/results/a16ccd7cc78eb63de06a6d738fccc6b947da13e7 Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr> (cherry picked from commite7797603d2) Signed-off-by: Peter Korsgaard <peter@korsgaard.com>