File tree Expand file tree Collapse file tree 3 files changed +9
-0
lines changed Expand file tree Collapse file tree 3 files changed +9
-0
lines changed Original file line number Diff line number Diff line change 8
8
'node_use_dtrace' : 'false' ,
9
9
'node_use_openssl%' : 'true' ,
10
10
'node_use_system_openssl%' : 'false' ,
11
+ 'node_use_isolates%' : 'true' ,
11
12
'library_files' : [
12
13
'src/node.js' ,
13
14
'lib/_debugger.js' ,
94
95
'src/v8_typed_array.cc' ,
95
96
'src/udp_wrap.cc' ,
96
97
# headers to make for a more pleasant IDE experience
98
+ 'src/ngx-queue.h' ,
97
99
'src/handle_wrap.h' ,
98
100
'src/node.h' ,
99
101
'src/node_vars.h' ,
Original file line number Diff line number Diff line change 7
7
#ifndef _NGX_QUEUE_H_INCLUDED_
8
8
#define _NGX_QUEUE_H_INCLUDED_
9
9
10
+ #ifdef _WIN32
11
+ # include <stddef.h>
12
+ #endif
10
13
11
14
typedef struct ngx_queue_s ngx_queue_t ;
12
15
Original file line number Diff line number Diff line change 9
9
#include < uv.h>
10
10
#include < http_parser.h>
11
11
12
+ #if defined(_MSC_VER)
13
+ # define PATH_MAX MAX_PATH
14
+ #endif
15
+
12
16
#ifndef PATH_MAX
13
17
# define PATH_MAX 4096
14
18
#endif
You can’t perform that action at this time.
0 commit comments