From c14ac90ed2347ef050ccc83ef6b7b183cec6d0e4 Mon Sep 17 00:00:00 2001 From: Antoine Jacoutot Date: Sat, 27 Apr 2019 18:45:45 +0200 Subject: [PATCH] gio: tests, don't check for libdl on OpenBSD libdl does not exist on OpenBSD and is not required as the functionnality is provided in libc. --- gio/tests/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gio/tests/meson.build b/gio/tests/meson.build index f13458181..5ee99bec7 100644 --- a/gio/tests/meson.build +++ b/gio/tests/meson.build @@ -147,7 +147,7 @@ if host_machine.system() != 'windows' shared_library('slow-connect-preload', 'slow-connect-preload.c', name_prefix : '', - dependencies: cc.find_library('dl'), + dependencies: cc.find_library('dl', required: host_machine.system() != 'openbsd'), install_dir : installed_tests_execdir, install: installed_tests_enabled, )