fix mesa build for new versions of meson

This commit is contained in:
nakst 2021-12-27 08:46:53 +00:00
parent 86bbaa7a59
commit 97830c84bf
1 changed files with 0 additions and 3 deletions

View File

@ -44,7 +44,6 @@ libosmesa = static_library(
c_args : [c_vis_args], c_args : [c_vis_args],
cpp_args : cpp_vis_args, cpp_args : cpp_vis_args,
link_args : [ld_args_gc_sections, osmesa_link_args], link_args : [ld_args_gc_sections, osmesa_link_args],
vs_module_defs : osmesa_def,
include_directories : [ include_directories : [
inc_include, inc_src, inc_gallium, inc_gallium_aux, inc_gallium_winsys, inc_include, inc_src, inc_gallium, inc_gallium_aux, inc_gallium_winsys,
inc_gallium_drivers, inc_gallium_drivers,
@ -59,8 +58,6 @@ libosmesa = static_library(
driver_swrast, driver_swr, driver_swrast, driver_swr,
], ],
name_prefix : host_machine.system() == 'windows' ? '' : 'lib', # otherwise mingw will create libosmesa.dll name_prefix : host_machine.system() == 'windows' ? '' : 'lib', # otherwise mingw will create libosmesa.dll
soversion : host_machine.system() == 'windows' ? '' : '8',
version : '8.0.0',
install : true, install : true,
) )