From b9655fc75813fe452998cd41162bcac5dbceba25 Mon Sep 17 00:00:00 2001 From: Ben Noordhuis Date: Thu, 4 Apr 2013 01:59:36 +0200 Subject: 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. --- common.gypi | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'common.gypi') diff --git a/common.gypi b/common.gypi index 9ecfc4d2a..3b08a7f8a 100644 --- a/common.gypi +++ b/common.gypi @@ -17,7 +17,9 @@ # Enable V8's post-mortem debugging only on unix flavors. 'conditions': [ - ['OS != "win"', { + ['OS == "win"', { + 'v8_postmortem_support': 'false' + }, { 'v8_postmortem_support': 'true' }] ], -- cgit v1.2.3