From 9b77b9222e85f917c98fe7668eefe5693905e113 Mon Sep 17 00:00:00 2001 From: arch1t3cht Date: Fri, 1 Dec 2023 18:02:41 +0100 Subject: [PATCH] Fix iconv dependency --- meson.build | 1 + 1 file changed, 1 insertion(+) diff --git a/meson.build b/meson.build index 08c0c1472..b1540162b 100644 --- a/meson.build +++ b/meson.build @@ -62,6 +62,7 @@ deps += cc.find_library('m', required: false) iconv_dep = dependency('iconv', required: false) if iconv_dep.found() + deps += iconv_dep conf.set('CONFIG_ICONV', 1) endif