gallium: Include winsock lib as a dependency for Windows
The gallium aux lib includes code that calls socket APIs. On Windows, these APIs come from ws2_32.lib/dll (winsock2), so make sure consumers link against that lib. Reviewed-by: Francisco Jerez <currojerez@riseup.net> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/7680>
This commit is contained in:
@@ -506,7 +506,7 @@ libgallium = static_library(
|
||||
cpp_args : [cpp_msvc_compat_args],
|
||||
gnu_symbol_visibility : 'hidden',
|
||||
dependencies : [
|
||||
dep_libdrm, dep_llvm, dep_dl, dep_m, dep_thread, dep_lmsensors,
|
||||
dep_libdrm, dep_llvm, dep_dl, dep_m, dep_thread, dep_lmsensors, dep_ws2_32,
|
||||
idep_nir, idep_nir_headers, idep_mesautil,
|
||||
],
|
||||
build_by_default : false
|
||||
|
||||
Reference in New Issue
Block a user