summaryrefslogtreecommitdiff
path: root/deps/openssl/openssl.gyp
diff options
context:
space:
mode:
authorBen Noordhuis <info@bnoordhuis.nl>2012-09-12 17:57:15 +0200
committerBen Noordhuis <info@bnoordhuis.nl>2012-09-12 17:57:22 +0200
commitd3fa0dcb89d986f267b2394d347ef30f6a03dc56 (patch)
treef3f56bb4ea037c8e462b646f2301b5929f3716a9 /deps/openssl/openssl.gyp
parent4b8721aad098b75a2b2e9b6db8067ce8d1ad52a8 (diff)
downloadandroid-node-v8-d3fa0dcb89d986f267b2394d347ef30f6a03dc56.tar.gz
android-node-v8-d3fa0dcb89d986f267b2394d347ef30f6a03dc56.tar.bz2
android-node-v8-d3fa0dcb89d986f267b2394d347ef30f6a03dc56.zip
openssl: disable harmless compiler warnings
Compile with -Wno-missing-field-initializers and -Wno-old-style-declaration. The warnings are harmless but they clutter the build output a great deal.
Diffstat (limited to 'deps/openssl/openssl.gyp')
-rw-r--r--deps/openssl/openssl.gyp4
1 files changed, 4 insertions, 0 deletions
diff --git a/deps/openssl/openssl.gyp b/deps/openssl/openssl.gyp
index 16fc04e2ac..c0bf410fa4 100644
--- a/deps/openssl/openssl.gyp
+++ b/deps/openssl/openssl.gyp
@@ -676,6 +676,10 @@
'OPENSSLDIR="/etc/ssl"',
'TERMIOS',
],
+ 'cflags': [
+ '-Wno-missing-field-initializers',
+ '-Wno-old-style-declaration',
+ ],
}],
['OS=="solaris"', {
'defines': ['__EXTENSIONS__'],