build: fix windows build, disable postmortem

Always define v8_postmortem_support, even if the platform does not
support it. Commit d8852aa adds a rule that references it in node.gyp.

Fixes the Windows build.
archived-io.js-v0.10
Ben Noordhuis 2013-04-04 01:59:36 +02:00
parent d8852aa9e8
commit b9655fc758
1 changed files with 3 additions and 1 deletions

View File

@ -17,7 +17,9 @@
# Enable V8's post-mortem debugging only on unix flavors. # Enable V8's post-mortem debugging only on unix flavors.
'conditions': [ 'conditions': [
['OS != "win"', { ['OS == "win"', {
'v8_postmortem_support': 'false'
}, {
'v8_postmortem_support': 'true' 'v8_postmortem_support': 'true'
}] }]
], ],