mirror of
https://gitee.com/openharmony/third_party_mesa3d
synced 2024-11-27 01:20:36 +00:00
meson: Don't use expat on windows
It's not really needed, and there's no debian package for it so we're forced to fall back to wraps in mesa's CI. This can be problematic in itself. Reviewed-by: Eric Engestrom <eric.engestrom@intel.com>
This commit is contained in:
parent
656c038d01
commit
4441da0044
@ -1265,7 +1265,11 @@ if dep_thread.found() and host_machine.system() != 'windows'
|
||||
pre_args += '-DPTHREAD_SETAFFINITY_IN_NP_HEADER'
|
||||
endif
|
||||
endif
|
||||
dep_expat = dependency('expat', fallback : ['expat', 'expat_dep'])
|
||||
if host_machine.system() != 'windows'
|
||||
dep_expat = dependency('expat', fallback : ['expat', 'expat_dep'])
|
||||
else
|
||||
dep_expat = null_dep
|
||||
endif
|
||||
# this only exists on linux so either this is linux and it will be found, or
|
||||
# it's not linux and wont
|
||||
dep_m = cc.find_library('m', required : false)
|
||||
|
Loading…
Reference in New Issue
Block a user