Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIgor Zinkovsky <igorzi@microsoft.com>2011-12-16 00:36:05 +0400
committerIgor Zinkovsky <igorzi@microsoft.com>2011-12-16 06:01:22 +0400
commit500c8f45f529cda33abbe86db67bb44d58567384 (patch)
tree9d26b3047f611c28b36302a8f712d86985960011 /node.gyp
parent88cc688731eae791861db0c0dc68a1a9b41916b5 (diff)
Remove platform files, and use uv platform api
Diffstat (limited to 'node.gyp')
-rw-r--r--node.gyp8
1 files changed, 0 insertions, 8 deletions
diff --git a/node.gyp b/node.gyp
index 60f36174572..d519324c1be 100644
--- a/node.gyp
+++ b/node.gyp
@@ -109,7 +109,6 @@
'src/node_string.h',
'src/node_version.h',
'src/pipe_wrap.h',
- 'src/platform.h',
'src/req_wrap.h',
'src/stream_wrap.h',
'src/v8_typed_array.h',
@@ -152,9 +151,6 @@
[ 'OS=="win"', {
'sources': [
- 'src/platform_win32.cc',
- # headers to make for a more pleasant IDE experience
- 'src/platform_win32.h',
'tools/msvs/res/node.rc',
],
'defines': [
@@ -172,25 +168,21 @@
]
}],
[ 'OS=="mac"', {
- 'sources': [ 'src/platform_darwin.cc' ],
'libraries': [ '-framework Carbon' ],
}],
[ 'OS=="linux"', {
- 'sources': [ 'src/platform_linux.cc' ],
'libraries': [
'-ldl',
'-lutil' # needed for openpty
],
}],
[ 'OS=="freebsd"', {
- 'sources': [ 'src/platform_freebsd.cc' ],
'libraries': [
'-lutil',
'-lkvm',
],
}],
[ 'OS=="solaris"', {
- 'sources': [ 'src/platform_sunos.cc' ],
'libraries': [
'-lkstat',
],