summaryrefslogtreecommitdiff
path: root/util
diff options
context:
space:
mode:
authorSimon McVittie <smcv@debian.org>2022-07-18 10:01:38 +0100
committerSimon McVittie <smcv@debian.org>2022-07-18 10:01:38 +0100
commit179c27b1d7505cec2132dea21868fe2c9205044f (patch)
treea52d26997c107e3f1876fe39696588e18945c63f /util
parentda5450e7292091acd9dabc1600fb651467261a3b (diff)
downloadcairo-179c27b1d7505cec2132dea21868fe2c9205044f.tar.gz
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>
Diffstat (limited to 'util')
-rw-r--r--util/cairo-script/meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/util/cairo-script/meson.build b/util/cairo-script/meson.build
index 653c19d33..51e0ce7cd 100644
--- a/util/cairo-script/meson.build
+++ b/util/cairo-script/meson.build
@@ -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,