From 9fbadb4ab1b735955207c9d8319270285dc4a7fa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Ekl=C3=B6f?= Date: Thu, 9 May 2019 18:56:53 +0200 Subject: [PATCH] meson: dl is a required library --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index a640881..dce5bbe 100644 --- a/meson.build +++ b/meson.build @@ -30,7 +30,7 @@ endif # Common dependencies cc = meson.get_compiler('c') -dl = cc.find_library('dl', required : false) +dl = cc.find_library('dl') threads = dependency('threads') fontconfig = dependency('fontconfig') cairo = dependency('cairo')