diff options
author | JustOff <Off.Just.Off@gmail.com> | 2018-06-06 15:41:35 +0300 |
---|---|---|
committer | wolfbeast <mcwerewolf@gmail.com> | 2018-06-06 15:24:07 +0200 |
commit | 6603359347ef42b4cee2890a27b4e1321e4decf5 (patch) | |
tree | cfbbf49df3acc7d02a9d6f6f25a77b3f5dda0a08 /security/certverifier/moz.build | |
parent | 6f84242a3526c6889950b43d29f1c47d05b918b2 (diff) | |
download | UXP-6603359347ef42b4cee2890a27b4e1321e4decf5.tar UXP-6603359347ef42b4cee2890a27b4e1321e4decf5.tar.gz UXP-6603359347ef42b4cee2890a27b4e1321e4decf5.tar.lz UXP-6603359347ef42b4cee2890a27b4e1321e4decf5.tar.xz UXP-6603359347ef42b4cee2890a27b4e1321e4decf5.zip |
Request NSS to use DBM as the storage file format
Diffstat (limited to 'security/certverifier/moz.build')
-rw-r--r-- | security/certverifier/moz.build | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/security/certverifier/moz.build b/security/certverifier/moz.build index 70f049340..97cff1f7d 100644 --- a/security/certverifier/moz.build +++ b/security/certverifier/moz.build @@ -68,6 +68,11 @@ if CONFIG['_MSC_VER']: # class copy constructor is inaccessible or deleted '-wd4626', # assignment operator could not be generated because a base # class assignment operator is inaccessible or deleted + '-wd4628', # digraphs not supported with -Ze (nsThreadUtils.h includes + # what would be the digraph "<:" in the expression + # "mozilla::EnableIf<::detail::...". Since we don't want it + # interpreted as a digraph anyway, we can disable the + # warning.) '-wd4640', # construction of local static object is not thread-safe '-wd4710', # 'function': function not inlined '-wd4711', # function 'function' selected for inline expansion |