[Mesa-dev] [PATCH 5/5] gallium/osmesa: link with winsock2 library on Windows
Charmaine Lee
charmainel at vmware.com
Fri Apr 13 22:11:06 UTC 2018
For the series, Reviewed-by: Charmaine Lee <charmainel at vmware.com>
________________________________________
From: Brian Paul <brianp at vmware.com>
Sent: Friday, April 13, 2018 2:35:37 PM
To: mesa-dev at lists.freedesktop.org
Cc: Charmaine Lee; Neha Bhende
Subject: [PATCH 5/5] gallium/osmesa: link with winsock2 library on Windows
To fix the MSVC build. The build broke because we started to compile
the ddebug code on Windows after the mtypes.h changes. Building ddebug
caused us to also use the u_network.c code for the first time.
---
src/gallium/targets/osmesa/SConscript | 3 +++
1 file changed, 3 insertions(+)
diff --git a/src/gallium/targets/osmesa/SConscript b/src/gallium/targets/osmesa/SConscript
index f49f1fe..3df5c50 100644
--- a/src/gallium/targets/osmesa/SConscript
+++ b/src/gallium/targets/osmesa/SConscript
@@ -39,6 +39,9 @@ if env['platform'] == 'windows':
sources += ['osmesa.mingw.def']
else:
sources += ['osmesa.def']
+ # Link with winsock2 library
+ env.Append(LIBS = ['ws2_32'])
+
gallium_osmesa = env.SharedLibrary(
target ='osmesa',
--
2.7.4
More information about the mesa-dev
mailing list