summaryrefslogtreecommitdiff
path: root/common.gypi
diff options
context:
space:
mode:
authorBen Noordhuis <info@bnoordhuis.nl>2013-04-04 01:59:36 +0200
committerBen Noordhuis <info@bnoordhuis.nl>2013-04-04 02:00:56 +0200
commitb9655fc75813fe452998cd41162bcac5dbceba25 (patch)
tree289c79eed9812734e87dd6d172e7441bfffc8962 /common.gypi
parentd8852aa9e8bf692f9259993c5f3749aa831e5165 (diff)
downloadnodejs-b9655fc75813fe452998cd41162bcac5dbceba25.tar.gz
nodejs-b9655fc75813fe452998cd41162bcac5dbceba25.tar.bz2
nodejs-b9655fc75813fe452998cd41162bcac5dbceba25.zip
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.
Diffstat (limited to 'common.gypi')
-rw-r--r--common.gypi4
1 files changed, 3 insertions, 1 deletions
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'
}]
],