summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Stransky <stransky@redhat.com>2020-06-01 14:11:14 +0200
committerMartin Stransky <stransky@redhat.com>2020-06-01 14:11:14 +0200
commitf82b7171e21328c3077c7bab512332e4bd5c6da9 (patch)
tree26e07b8378d4c5d4e5b7acdfa7d4101f3b85796c
parentuploaded new cbindgen (diff)
downloadlibrewolf-fedora-ff-f82b7171e21328c3077c7bab512332e4bd5c6da9.tar.gz
librewolf-fedora-ff-f82b7171e21328c3077c7bab512332e4bd5c6da9.tar.bz2
librewolf-fedora-ff-f82b7171e21328c3077c7bab512332e4bd5c6da9.zip
nss build fix
-rw-r--r--firefox.spec3
1 files changed, 3 insertions, 0 deletions
diff --git a/firefox.spec b/firefox.spec
index 1b59f4a..824ef6f 100644
--- a/firefox.spec
+++ b/firefox.spec
@@ -607,6 +607,9 @@ MOZ_OPT_FLAGS="$MOZ_OPT_FLAGS -fsanitize=address -Dxmalloc=myxmalloc"
MOZ_LINK_FLAGS="$MOZ_LINK_FLAGS -fsanitize=address -ldl"
%endif
+# We don't wantfirefox to use CK_GCM_PARAMS_V3 in nss
+MOZ_OPT_FLAGS="$MOZ_OPT_FLAGS -DNSS_PKCS11_3_0_STRICT"
+
%if !%{build_with_clang}
echo "export CFLAGS=\"$MOZ_OPT_FLAGS\"" >> .mozconfig
echo "export CXXFLAGS=\"$MOZ_OPT_FLAGS\"" >> .mozconfig
bgstack15