From ef3352c033e9ec7e89b4260e4ac19a6e2dc28c56 Mon Sep 17 00:00:00 2001 From: Pietro Gagliardi Date: Sat, 1 Jun 2019 12:22:35 -0400 Subject: [PATCH] Removed the soft librt dependency for now, since we don't appear to need it, at least for Ubuntu 14.4. If that changes (for instance, if it's required by some non-Linux system or some other distro), we can always add it back. --- test/lib/meson.build | 9 --------- 1 file changed, 9 deletions(-) diff --git a/test/lib/meson.build b/test/lib/meson.build index 7a444989..d85cb633 100644 --- a/test/lib/meson.build +++ b/test/lib/meson.build @@ -32,13 +32,4 @@ if libui_OS == 'windows' required: true), ] endif -elif libui_OS == 'darwin' - # do nothing -else - libui_test_deps += [ - # satisfy old versions of glibc - # TODO is this really needed? - meson.get_compiler('c').find_library('rt', - required: false), - ] endif