mirror of
https://gitlab.freedesktop.org/cairo/cairo.git
synced 2026-05-04 23:28:07 +02:00
meson: Fix undefined reference when bfd library is installed
Add the missing file which is necessary when symbol lookup is enabled.
This commit is contained in:
parent
2f39018c2c
commit
b87e53dc1c
1 changed files with 4 additions and 0 deletions
|
|
@ -2,6 +2,10 @@ cairo_trace_sources = [
|
|||
'trace.c',
|
||||
]
|
||||
|
||||
if conf.get('CAIRO_HAS_SYMBOL_LOOKUP', 0) == 1
|
||||
cairo_trace_sources += ['lookup-symbol.c']
|
||||
endif
|
||||
|
||||
shared_lib_ext = libcairo.full_path().split('.')[-1]
|
||||
|
||||
libcairotrace = library('cairo-trace', cairo_trace_sources,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue