From 8033447a546fe7cfab9c4b14a8f354db82f97806 Mon Sep 17 00:00:00 2001 From: columbarius Date: Thu, 11 Feb 2021 23:18:08 +0100 Subject: [PATCH] build: add library path workaround for freebsd --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 2bd47a6e..fd242f52 100644 --- a/meson.build +++ b/meson.build @@ -30,7 +30,7 @@ rt = cc.find_library('rt') pipewire = dependency('libpipewire-0.3', version: '>= 0.3.2') wayland_client = dependency('wayland-client') wayland_protos = dependency('wayland-protocols', version: '>=1.14') -iniparser = cc.find_library('iniparser') +iniparser = cc.find_library('iniparser', dirs: [join_paths(get_option('prefix'),get_option('libdir'))]) if get_option('sd-bus-provider') == 'auto' assert(get_option('auto_features').auto(), 'sd-bus-provider must not be set to auto since auto_features != auto')