summaryrefslogtreecommitdiff
path: root/wscript
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2011-07-31 18:19:37 -0700
committerRyan Dahl <ry@tinyclouds.org>2011-07-31 18:19:37 -0700
commitf0f941a59e42a22771583da55d78e454a58eb051 (patch)
tree9004583eca719294ed3757763993dcdaef0c86cc /wscript
parentbaa6a925c2fe297555880345224a60e3c55ee421 (diff)
downloadnode-f0f941a59e42a22771583da55d78e454a58eb051.tar.gz
link to rpcrt4 and ole32 on win32
Diffstat (limited to 'wscript')
-rw-r--r--wscript4
1 files changed, 4 insertions, 0 deletions
diff --git a/wscript b/wscript
index 6d0c108d9..68a80e227 100644
--- a/wscript
+++ b/wscript
@@ -493,6 +493,10 @@ def configure(conf):
if sys.platform.startswith("win32"):
conf.env.append_value('LIB', 'ws2_32')
conf.env.append_value('LIB', 'winmm')
+ # remove the next two lines when this issue is fixed:
+ # https://github.com/joyent/libuv/issues/118
+ conf.env.append_value('LIB', 'rpcrt4')
+ conf.env.append_value('LIB', 'ole32')
conf.env.append_value('CPPFLAGS', '-Wno-unused-parameter');
conf.env.append_value('CPPFLAGS', '-D_FORTIFY_SOURCE=2');