Skip to content
This repository has been archived by the owner on Oct 15, 2020. It is now read-only.

Commit

Permalink
build: fix build break from merge
Browse files Browse the repository at this point in the history
  • Loading branch information
jackhorton committed Nov 18, 2017
1 parent 2515ee1 commit b517f11
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
8 changes: 7 additions & 1 deletion node.gyp
Original file line number Diff line number Diff line change
Expand Up @@ -378,7 +378,13 @@
'NODE_PLATFORM="win32"',
'_UNICODE=1',
],
'libraries': [ '-lpsapi.lib' ]
'libraries': [ '-lpsapi.lib' ],
'conditions': [
# this is only necessary for chakra on windows because chakra is dynamically linked on windows
[ 'node_engine=="chakracore"', {
'libraries': [ '-ldbghelp.lib' ],
}],
],
}, { # POSIX
'defines': [ '__POSIX__' ],
'sources': [ 'src/backtrace_posix.cc' ],
Expand Down
2 changes: 2 additions & 0 deletions src/node_trace_events.cc
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
#include "node_internals.h"
#include "tracing/agent.h"

#include <unordered_set>

namespace node {

using v8::Context;
Expand Down

0 comments on commit b517f11

Please sign in to comment.