Browse Source

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.
v0.9.2-release
Ben Noordhuis 12 years ago
parent
commit
d3fa0dcb89
  1. 4
      deps/openssl/openssl.gyp

4
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__'],

Loading…
Cancel
Save