From 83459c6eb2c75388c4ade8721abd3fb64e1b9b93 Mon Sep 17 00:00:00 2001 From: Bruno Lopes Date: Fri, 2 Jan 2026 17:11:06 -0300 Subject: [PATCH] meson: Let's check for libunwind.h This is the header we use after all. And it is also available on the MacOS*.SDK too. --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 59a6a3e717..c0a384b5b1 100644 --- a/meson.build +++ b/meson.build @@ -725,7 +725,7 @@ libunwind = ( get_option('libunwind') ? dependency('libunwind', version: '>=1.1.0', required: false) : no_dep ) -have_unwind = libunwind.found() or cc.has_header('unwind.h', required: false) +have_unwind = libunwind.found() or cc.has_header('libunwind.h', required: false) conf.set('HAVE_LIBUNWIND', have_unwind ? 1 : false) ## Check for backtrace() API