meson: Ensure unwind.h is interpreted as non mandatory
Following d0ca8bb9
It is not a required dependency.
This commit is contained in:
parent
e03ac3a9ee
commit
bb56770ed6
1 changed files with 1 additions and 1 deletions
|
|
@ -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')
|
||||
have_unwind = libunwind.found() or cc.has_header('unwind.h', required: false)
|
||||
conf.set('HAVE_LIBUNWIND', have_unwind ? 1 : false)
|
||||
|
||||
## Check for backtrace() API
|
||||
|
|
|
|||
Loading…
Reference in a new issue