forked from danielrh/berkelium
-
Notifications
You must be signed in to change notification settings - Fork 48
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Separate disabling of warnings as errors on Linux out of the volatile…
… malloc patch so it will get applied independently. Fixes build on Debian wheezy, which has an nss library that causes deprecation warnings but not a new enough glibc to require the volatile malloc patch.
- Loading branch information
Showing
2 changed files
with
21 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
Index: build/common.gypi | ||
=================================================================== | ||
--- build/common.gypi (revision 70801) | ||
+++ build/common.gypi (working copy) | ||
@@ -568,7 +568,6 @@ | ||
'cflags!': [ | ||
'-Wall', | ||
'-Wextra', | ||
- '-Werror', | ||
], | ||
}], | ||
[ 'OS=="win"', { | ||
@@ -846,7 +845,7 @@ | ||
# there is some 4.4 test infrastructure in place and existing | ||
# aliasing issues have been fixed. | ||
'no_strict_aliasing%': 1, | ||
- 'conditions': [['OS=="linux"', {'werror%': '-Werror',}], | ||
+ 'conditions': [['OS=="linux"', {'werror%': '',}], | ||
['OS=="freebsd"', {'werror%': '',}], | ||
['OS=="openbsd"', {'werror%': '',}], | ||
], |