From d3fa0dcb89d986f267b2394d347ef30f6a03dc56 Mon Sep 17 00:00:00 2001 From: Ben Noordhuis Date: Wed, 12 Sep 2012 17:57:15 +0200 Subject: 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. --- deps/openssl/openssl.gyp | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'deps/openssl/openssl.gyp') 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__'], -- cgit v1.2.3