Skip to content

Commit

Permalink
Bug 1549847 - Ignore sqlite compilation warnings. r=mt
Browse files Browse the repository at this point in the history
Differential Revision: https://phabricator.services.mozilla.com/D43200

--HG--
extra : moz-landing-system : lando
  • Loading branch information
eoger committed Aug 23, 2019
1 parent 0eac87f commit a8313a6
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
2 changes: 2 additions & 0 deletions lib/sqlite/Makefile
Expand Up @@ -45,6 +45,8 @@ include $(CORE_DEPTH)/coreconf/rules.mk
# (7) Execute "local" rules. (OPTIONAL). #
#######################################################################

WARNING_CFLAGS = $(NULL)

export:: private_export

ifeq (WINNT,$(OS_ARCH))
Expand Down
10 changes: 9 additions & 1 deletion lib/sqlite/sqlite.gyp
Expand Up @@ -40,7 +40,15 @@
'target_defaults': {
'defines': [
'SQLITE_THREADSAFE=1'
]
],
'cflags': [
'-w',
],
'xcode_settings': {
'OTHER_CFLAGS': [
'-w',
],
},
},
'variables': {
'module': 'nss'
Expand Down

0 comments on commit a8313a6

Please sign in to comment.