Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(280)

Unified Diff: SConstruct

Issue 27085: Add socket support to platform code.... (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: Created 11 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | src/platform.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: SConstruct
===================================================================
--- SConstruct (revision 1344)
+++ SConstruct (working copy)
@@ -156,12 +156,12 @@
'LIBS': ['pthread'],
},
'os:win32': {
- 'LIBS': ['winmm'],
+ 'LIBS': ['winmm', 'ws2_32'],
},
},
'msvc': {
'all': {
- 'LIBS': ['winmm']
+ 'LIBS': ['winmm', 'ws2_32']
}
}
}
@@ -219,7 +219,7 @@
'LIBS': ['execinfo', 'pthread']
},
'os:win32': {
- 'LIBS': ['winmm']
+ 'LIBS': ['winmm', 'ws2_32']
},
'wordsize:64': {
'CCFLAGS': ['-m32'],
@@ -229,7 +229,7 @@
'msvc': {
'all': {
'CPPDEFINES': ['_HAS_EXCEPTIONS=0'],
- 'LIBS': ['winmm']
+ 'LIBS': ['winmm', 'ws2_32']
},
'library:shared': {
'CPPDEFINES': ['USING_V8_SHARED']
@@ -257,7 +257,7 @@
'LIBS': ['execinfo', 'pthread']
},
'os:win32': {
- 'LIBS': ['winmm']
+ 'LIBS': ['winmm', 'ws2_32']
},
'wordsize:64': {
'CCFLAGS': ['-m32'],
@@ -274,7 +274,7 @@
'all': {
'CCFLAGS': ['/nologo'],
'LINKFLAGS': ['/nologo'],
- 'LIBS': ['winmm']
+ 'LIBS': ['winmm', 'ws2_32']
},
'library:shared': {
'CPPDEFINES': ['USING_V8_SHARED']
@@ -321,12 +321,12 @@
'LIBS': ['pthread'],
},
'os:win32': {
- 'LIBS': ['winmm'],
+ 'LIBS': ['winmm', 'ws2_32'],
},
},
'msvc': {
'all': {
- 'LIBS': ['winmm']
+ 'LIBS': ['winmm', 'ws2_32']
}
}
}
« no previous file with comments | « no previous file | src/platform.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698