[cairo-commit] util/cairo-trace

GitLab Mirror gitlab-mirror at kemper.freedesktop.org
Mon Aug 31 15:48:15 UTC 2020


 util/cairo-trace/meson.build |    4 ++++
 1 file changed, 4 insertions(+)

New commits:
commit b87e53dc1cc4dd33fa391f3ee8db02394b44a742
Author: Ting-Wei Lan <lantw at src.gnome.org>
Date:   Mon Aug 31 23:14:19 2020 +0800

    meson: Fix undefined reference when bfd library is installed
    
    Add the missing file which is necessary when symbol lookup is enabled.

diff --git a/util/cairo-trace/meson.build b/util/cairo-trace/meson.build
index 20f2b87d6..e836f98cf 100644
--- a/util/cairo-trace/meson.build
+++ b/util/cairo-trace/meson.build
@@ -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,


More information about the cairo-commit mailing list