From 5cd8af44c64d37012d92ffa8c88996a1095f9214 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Ekl=C3=B6f?= Date: Thu, 5 Dec 2019 19:35:54 +0100 Subject: [PATCH] meson: we now require -lm --- meson.build | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 83765d4d..c82fc64a 100644 --- a/meson.build +++ b/meson.build @@ -15,6 +15,8 @@ add_project_arguments( language: 'c', ) +cc = meson.get_compiler('c') +math = cc.find_library('m') threads = dependency('threads') pixman = dependency('pixman-1') wayland_protocols = dependency('wayland-protocols') @@ -85,7 +87,7 @@ executable( 'vt.c', 'vt.h', 'wayland.c', 'wayland.h', wl_proto_src + wl_proto_headers, version, - dependencies: [threads, pixman, wayland_client, wayland_cursor, xkb, + dependencies: [math, threads, pixman, wayland_client, wayland_cursor, xkb, tllist, fcft], install: true)