From e78a90ed983d98a2bc8364a16f33e6319e632058 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim-Philipp=20M=C3=BCller?= Date: Wed, 5 May 2021 00:15:16 +0100 Subject: [PATCH] meson: enable pthread tests if 'real pthread' is available Fixes #477 --- test/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/meson.build b/test/meson.build index 73bb0d2d9..b7bda2333 100644 --- a/test/meson.build +++ b/test/meson.build @@ -517,7 +517,7 @@ build_any2ppm = false has_multipage_surfaces = false add_fallback_resolution = false -if conf.get('HAVE_REAL_PTHREAD', 0) == 1 +if conf.get('CAIRO_HAS_REAL_PTHREAD', 0) == 1 test_sources += test_pthread_sources endif