From 3f402fb93a7d7a5e7d8428c09d37d8fe71338d09 Mon Sep 17 00:00:00 2001 From: "sgjesse@chromium.org" Date: Fri, 6 Mar 2009 12:56:04 +0000 Subject: [PATCH] Add libraries winmm and ws2_32 when building shared library on Windows. BUG=261 Review URL: http://codereview.chromium.org/40217 git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@1439 ce2b1a6d-e550-0410-aec6-3dcde31c8c00 --- SConstruct | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/SConstruct b/SConstruct index d9dbda0..64e6963 100644 --- a/SConstruct +++ b/SConstruct @@ -132,7 +132,8 @@ V8_EXTRA_FLAGS = { 'WARNINGFLAGS': ['/W3', '/WX', '/wd4355', '/wd4800'] }, 'library:shared': { - 'CPPDEFINES': ['BUILDING_V8_SHARED'] + 'CPPDEFINES': ['BUILDING_V8_SHARED'], + 'LIBS': ['winmm', 'ws2_32'] }, 'arch:arm': { 'CPPDEFINES': ['ARM'], -- 2.7.4