diff options
author | Ross Burton <ross@burtonini.com> | 2022-01-27 11:44:45 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2022-02-01 07:31:18 +0000 |
commit | a8c9104ac4d621c34bd53ea93d8a4bf068fa60fa (patch) | |
tree | b726e9a06586a1b914c3ac606f5980cb07594f90 | |
parent | 1adbf5ba2727f0023f31720e0ac7bcb2e67f039b (diff) | |
download | poky-a8c9104ac4d621c34bd53ea93d8a4bf068fa60fa.tar.gz |
openssl: export OPENSSL_MODULES in the wrapper
OpenSSL 3 added the concept of provider modules which are loaded from
disk. The load path is hard-coded into the library and needs to be
relocated when running natively, so add OPENSSL_MODULES to the wrapper.
(From OE-Core rev: 160ac2f136cb8df829c803848c7c47d707a908ff)
Signed-off-by: Ross Burton <ross.burton@arm.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-connectivity/openssl/openssl_3.0.1.bb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/meta/recipes-connectivity/openssl/openssl_3.0.1.bb b/meta/recipes-connectivity/openssl/openssl_3.0.1.bb index 7727ec43e8..e97c986b39 100644 --- a/meta/recipes-connectivity/openssl/openssl_3.0.1.bb +++ b/meta/recipes-connectivity/openssl/openssl_3.0.1.bb | |||
@@ -160,7 +160,8 @@ do_install:append:class-native () { | |||
160 | OPENSSL_CONF=${libdir}/ssl-3/openssl.cnf \ | 160 | OPENSSL_CONF=${libdir}/ssl-3/openssl.cnf \ |
161 | SSL_CERT_DIR=${libdir}/ssl-3/certs \ | 161 | SSL_CERT_DIR=${libdir}/ssl-3/certs \ |
162 | SSL_CERT_FILE=${libdir}/ssl-3/cert.pem \ | 162 | SSL_CERT_FILE=${libdir}/ssl-3/cert.pem \ |
163 | OPENSSL_ENGINES=${libdir}/engines-3 | 163 | OPENSSL_ENGINES=${libdir}/engines-3 \ |
164 | OPENSSL_MODULES=${libdir}/ossl-modules | ||
164 | } | 165 | } |
165 | 166 | ||
166 | do_install:append:class-nativesdk () { | 167 | do_install:append:class-nativesdk () { |