1
0
mirror of https://git.code.sf.net/p/linux-ima/ima-evm-utils synced 2025-07-01 21:31:14 +02:00

Build OpenSSL without engine support

Fix COMPILE_SSL to build for the proper architecture, link with the
appropriate library, and set up library path for evmctl.

Compile OpenSSL with "no-engine" and "no-dynamic-engine" support.

Signed-off-by: Mimi Zohar <zohar@linux.ibm.com>
This commit is contained in:
Mimi Zohar
2022-09-07 21:38:28 -04:00
parent abf7b5e236
commit 297d01bdb6
5 changed files with 22 additions and 5 deletions

View File

@ -2983,8 +2983,10 @@ int main(int argc, char *argv[])
#if CONFIG_IMA_EVM_ENGINE
case 139: /* --engine e */
imaevm_params.eng = setup_engine(optarg);
if (!imaevm_params.eng)
if (!imaevm_params.eng) {
log_info("setup_engine failed\n");
goto error;
}
break;
#endif
case 140: /* --xattr-user */