mirror of
https://gitlab.freedesktop.org/cairo/cairo.git
synced 2026-05-08 04:28:02 +02:00
meson: Only link cairo-script-interpreter with liblzo
The rest of cairo (and therefore most external packages that depend on cairo) doesn't make any use of liblzo. Signed-off-by: Simon McVittie <smcv@debian.org>
This commit is contained in:
parent
da5450e729
commit
179c27b1d7
2 changed files with 1 additions and 2 deletions
|
|
@ -206,7 +206,6 @@ endif
|
|||
|
||||
lzo_dep = dependency('lzo2', required: false)
|
||||
if lzo_dep.found()
|
||||
deps += [lzo_dep]
|
||||
conf.set('HAVE_LZO', 1)
|
||||
endif
|
||||
|
||||
|
|
|
|||
|
|
@ -27,7 +27,7 @@ csi_trace_sources = [
|
|||
libcairoscript = library('cairo-script-interpreter',
|
||||
cairoscript_interpreter_sources,
|
||||
include_directories: [incbase],
|
||||
dependencies: deps + [libcairo_dep],
|
||||
dependencies: deps + [libcairo_dep, lzo_dep],
|
||||
soversion: cairo_version_sonum,
|
||||
version: cairo_libversion,
|
||||
install: true,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue