mirror of
https://gitlab.gnome.org/GNOME/libxml2
synced 2025-03-28 21:33:13 +00:00
meson: Don't always assume PThreads when using threads
The libxml2 code has support for Windows threads as well, so use these instead on Windows when building threads support,
This commit is contained in:
parent
64685e9812
commit
a24b08bf40
@ -324,7 +324,7 @@ endif
|
||||
### threads
|
||||
if want_threads
|
||||
threads_dep = dependency('threads')
|
||||
config_h.set10('HAVE_PTHREAD_H', true)
|
||||
config_h.set10(sys_windows ? 'HAVE_WIN32_THREADS' : 'HAVE_PTHREAD_H', true)
|
||||
xml_deps += threads_dep
|
||||
else
|
||||
threads_dep = dependency('', required: false)
|
||||
|
Loading…
x
Reference in New Issue
Block a user