Browse Source

Silence VC++ warnings about use of badly-designed parts of the C library.

v0.7.4-release
Peter Bright 13 years ago
committed by Ryan Dahl
parent
commit
588ef72ce0
  1. 8
      tools/all.gyp

8
tools/all.gyp

@ -33,7 +33,13 @@
'conditions': [ 'conditions': [
['OS == "win"', { ['OS == "win"', {
'defines': [ 'defines': [
'WIN32' 'WIN32',
# we don't really want VC++ warning us about
# how dangerous C functions are...
'_CRT_SECURE_NO_DEPRECATE',
# ... or that C implementations shouldn't use
# POSIX names
'_CRT_NONSTDC_NO_DEPRECATE',
], ],
}] }]
], ],

Loading…
Cancel
Save