mirror of https://github.com/nodejs/node.git
There is no child process support for windows yet
parent
6d1af51de6
commit
b4510d57dc
|
@ -1,3 +1,5 @@
|
|||
#ifdef __POSIX__
|
||||
|
||||
// Copyright 2009 Ryan Dahl <ry@tinyclouds.org>
|
||||
#include <node_child_process.h>
|
||||
#include <node.h>
|
||||
|
@ -378,3 +380,5 @@ int ChildProcess::Kill(int sig) {
|
|||
} // namespace node
|
||||
|
||||
NODE_MODULE(node_child_process, node::ChildProcess::Initialize);
|
||||
|
||||
#endif // __POSIX__
|
||||
|
|
|
@ -2,7 +2,9 @@
|
|||
NODE_EXT_LIST_START
|
||||
NODE_EXT_LIST_ITEM(node_buffer)
|
||||
NODE_EXT_LIST_ITEM(node_cares)
|
||||
#ifdef __POSIX__
|
||||
NODE_EXT_LIST_ITEM(node_child_process)
|
||||
#endif
|
||||
#ifdef HAVE_OPENSSL
|
||||
NODE_EXT_LIST_ITEM(node_crypto)
|
||||
#endif
|
||||
|
|
Loading…
Reference in New Issue