Skip to content

Commit

Permalink
Silence VC++ warnings about use of badly-designed parts of the C libr…
Browse files Browse the repository at this point in the history
…ary.
  • Loading branch information
DrPizza authored and ry committed Aug 7, 2011
1 parent bcff53d commit 588ef72
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion tools/all.gyp
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,13 @@
'conditions': [
['OS == "win"', {
'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',
],
}]
],
Expand Down

0 comments on commit 588ef72

Please sign in to comment.