aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSertonix <sertonix@posteo.net>2024-07-28 02:10:48 +0200
committerSertonix <sertonix@posteo.net>2024-07-28 02:10:48 +0200
commita1f26161cf68e7a74fc83f0a605d16732637b5d7 (patch)
treef24d1d3c230e17dbcfb92c3e83eaf96d4ac12c73
parentd91789cf42d88852709bfc62fab5f242a36fdf84 (diff)
downloadwbg-a1f26161cf68e7a74fc83f0a605d16732637b5d7.tar.gz
meson: fix summary when svg support is disabled
-rw-r--r--meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/meson.build b/meson.build
index 69ff14e..677421b 100644
--- a/meson.build
+++ b/meson.build
@@ -169,7 +169,7 @@ summary(
'JPEG support': jpg.found(),
'JPEG XL support': jxl.found(),
'WebP support': webp.found(),
- 'SVG support': svg_lib,
+ 'SVG support': have_svg ? svg_lib : false,
},
bool_yn: true
)