29 lines
1.1 KiB
Diff
29 lines
1.1 KiB
Diff
|
|
From fe771abc365ba0cb62dd1726f1aa5274f1807876 Mon Sep 17 00:00:00 2001
|
||
|
|
From: Jiabo Feng <fengjiabo1@huawei.com>
|
||
|
|
Date: Sat, 30 Mar 2024 16:24:45 +0800
|
||
|
|
Subject: [PATCH] disable keyring option
|
||
|
|
|
||
|
|
Due to the default prohibition of some syscall(e.g. add_key) in the Docker compilation environment, the testcases in test-crypto-secret.c cannot pass.
|
||
|
|
|
||
|
|
Signed-off-by: Jiabo Feng <fengjiabo1@huawei.com>
|
||
|
|
---
|
||
|
|
meson_options.txt | 2 +-
|
||
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
||
|
|
|
||
|
|
diff --git a/meson_options.txt b/meson_options.txt
|
||
|
|
index c9baeda639..cf9706c411 100644
|
||
|
|
--- a/meson_options.txt
|
||
|
|
+++ b/meson_options.txt
|
||
|
|
@@ -121,7 +121,7 @@ option('avx512f', type: 'feature', value: 'disabled',
|
||
|
|
description: 'AVX512F optimizations')
|
||
|
|
option('avx512bw', type: 'feature', value: 'auto',
|
||
|
|
description: 'AVX512BW optimizations')
|
||
|
|
-option('keyring', type: 'feature', value: 'auto',
|
||
|
|
+option('keyring', type: 'feature', value: 'disabled',
|
||
|
|
description: 'Linux keyring support')
|
||
|
|
option('libkeyutils', type: 'feature', value: 'auto',
|
||
|
|
description: 'Linux keyutils support')
|
||
|
|
--
|
||
|
|
2.41.0.windows.1
|
||
|
|
|