From a24b08bf401c52cbeab85970f8d53f04f3b63c6f Mon Sep 17 00:00:00 2001 From: Chun-wei Fan Date: Mon, 1 Jul 2024 15:47:29 +0800 Subject: [PATCH] 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, --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 3a45341a..4cb4dd3f 100644 --- a/meson.build +++ b/meson.build @@ -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)