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.
This commit is contained in:
Ben Noordhuis 2012-09-12 17:57:15 +02:00
parent 4b8721aad0
commit d3fa0dcb89

View File

@ -676,6 +676,10 @@
'OPENSSLDIR="/etc/ssl"',
'TERMIOS',
],
'cflags': [
'-Wno-missing-field-initializers',
'-Wno-old-style-declaration',
],
}],
['OS=="solaris"', {
'defines': ['__EXTENSIONS__'],