There is no child process support for windows yet

pull/22966/head
Bert Belder 2010-11-25 01:11:14 +01:00
parent 6d1af51de6
commit b4510d57dc
2 changed files with 6 additions and 0 deletions

View File

@ -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__

View File

@ -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