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:
Chun-wei Fan 2024-07-01 15:47:29 +08:00
parent 64685e9812
commit a24b08bf40

View File

@ -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)