summaryrefslogtreecommitdiff
path: root/wscript
diff options
context:
space:
mode:
authorIgor Zinkovsky <igorzi@microsoft.com>2011-08-28 02:23:17 -0700
committerRyan Dahl <ry@tinyclouds.org>2011-08-30 01:36:10 -0700
commitbce41fac9458dd3dec844fc80c8144060e6a9f30 (patch)
treeb783c1e3c2c2eb198bf2ac5fbfbdea259a9d482f /wscript
parent1088638725aaa72b971cc6f822b9d0f11fbf68c4 (diff)
downloadnode-bce41fac9458dd3dec844fc80c8144060e6a9f30.tar.gz
Use new uv_fs_ apis
This will cause master to be unstable for a while as we replace existing eio calls with uv_fs calls.
Diffstat (limited to 'wscript')
-rw-r--r--wscript8
1 files changed, 0 insertions, 8 deletions
diff --git a/wscript b/wscript
index 44a207164..c9b171479 100644
--- a/wscript
+++ b/wscript
@@ -501,12 +501,6 @@ def configure(conf):
debug_env = conf.env.copy()
conf.set_env_name('Debug', debug_env)
- if (sys.platform.startswith("win32")):
- # Static pthread
- conf.env.append_value('LINKFLAGS', '../deps/pthread-win32/libpthreadGC2.a')
- debug_env.append_value('LINKFLAGS', '../deps/pthread-win32/libpthreadGC2d.a')
- conf.env.append_value('CPPFLAGS', "-DPTW32_STATIC_LIB")
-
# Configure debug variant
conf.setenv('Debug')
debug_env.set_variant('Debug')
@@ -641,7 +635,6 @@ def build_uv(bld):
uv.env.env = dict(os.environ)
uv.env.env['CC'] = sh_escape(bld.env['CC'][0])
uv.env.env['CXX'] = sh_escape(bld.env['CXX'][0])
- uv.env.env['CPPFLAGS'] = "-DPTW32_STATIC_LIB"
t = join(bld.srcnode.abspath(bld.env_of_name("Release")), uv.target)
bld.env_of_name('Release').append_value("LINKFLAGS_UV", t)
@@ -650,7 +643,6 @@ def build_uv(bld):
uv_debug = uv.clone("Debug")
uv_debug.rule = uv_cmd(bld, 'Debug')
uv_debug.env.env = dict(os.environ)
- uv_debug.env.env['CPPFLAGS'] = "-DPTW32_STATIC_LIB"
t = join(bld.srcnode.abspath(bld.env_of_name("Debug")), uv_debug.target)
bld.env_of_name('Debug').append_value("LINKFLAGS_UV", t)