Bug 1346305 - Unbreak --enable-warnings-as-errors on FreeBSD after bug 1343557. r?keeler draft
authorJan Beich <jbeich@FreeBSD.org>
Fri, 10 Mar 2017 18:02:44 +0000 (2017-03-10)
changeset 496853 bf516c5d6985586297215ad862557d44058f3d43
parent 496768 a8d497b09753c91783b68c5805c64f34a2f39629
child 548719 642cf133add7f8b54a75b81cb7d46869fb1cf5a6
push id48712
push userbmo:jbeich@FreeBSD.org
push dateFri, 10 Mar 2017 19:13:15 +0000 (2017-03-10)
reviewerskeeler
bugs1346305, 1343557
milestone55.0a1
Bug 1346305 - Unbreak --enable-warnings-as-errors on FreeBSD after bug 1343557. r?keeler MozReview-Commit-ID: 3gZCXTK1GJI
security/pkix/test/gtest/moz.build
--- a/security/pkix/test/gtest/moz.build
+++ b/security/pkix/test/gtest/moz.build
@@ -49,16 +49,17 @@ if CONFIG['GNU_CXX']:
   CXXFLAGS += [
     '-Wno-error=shadow',
     '-Wno-old-style-cast',
   ]
   if CONFIG['CLANG_CXX']:
     CXXFLAGS += [
       '-Wno-exit-time-destructors',
       '-Wno-global-constructors',
+      '-Wno-thread-safety',
       '-Wno-used-but-marked-unused',
     ]
 elif CONFIG['_MSC_VER']:
   CXXFLAGS += [
     '-wd4350', # behavior change: 'std::_Wrap_alloc<std::allocator<_Ty>>::...
     '-wd4275', # non dll-interface class used as base for dll-interface class
     '-wd4548', # Expression before comma has no effect
     '-wd4625', # copy constructor could not be generated.