1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
| | From e89a33daac982107421117ad95ae8443ef316079 Mon Sep 17 00:00:00 2001
Message-ID: <e89a33daac982107421117ad95ae8443ef316079.1714649801.git.cdo@mutix.org>
From: Christina O'Donnell <cdo@mutix.org>
Date: Thu, 2 May 2024 12:34:40 +0100
Subject: [PATCH] Define NSS_FIPS_DISABLED.
Disable FIPS as it depends on shlibsign which is non-deterministic.
---
nss/coreconf/config.mk | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/nss/coreconf/config.mk b/nss/coreconf/config.mk
index 741bbee..e02e5d2 100644
--- a/nss/coreconf/config.mk
+++ b/nss/coreconf/config.mk
@@ -215,7 +215,7 @@ endif
# NSS_NO_INIT_SUPPORT is always defined on platforms that don't support
# executing the startup tests at library load time.
ifndef NSS_FORCE_FIPS
-DEFINES += -DNSS_NO_INIT_SUPPORT
+DEFINES += -DNSS_NO_INIT_SUPPORT -DNSS_FIPS_DISABLED
endif
ifdef NSS_SEED_ONLY_DEV_URANDOM
base-commit: 490a62da7d23b579fab71a84e2107f414187738d
--
2.41.0
|