diff options
Diffstat (limited to 'third_party/libxml/libxml.gyp')
-rw-r--r-- | third_party/libxml/libxml.gyp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/third_party/libxml/libxml.gyp b/third_party/libxml/libxml.gyp index 105ab87..621bc98 100644 --- a/third_party/libxml/libxml.gyp +++ b/third_party/libxml/libxml.gyp @@ -189,6 +189,10 @@ ['OS=="mac" or OS=="android"', {'defines': ['_REENTRANT']}], ['OS=="win"', { 'product_name': 'libxml2', + # Disable unimportant 'unused variable' warning, and + # signed/unsigned comparison warning. The signed/unsigned (4101) + # is fixed upstream and can be removed eventually. + 'msvs_disabled_warnings': [ 4018, 4101 ], }, { # else: OS!="win" 'product_name': 'xml2', }], |