From 1a53caa058201600a9b9f5f3acaed5d96f7ac2a4 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Mon, 20 Jan 2025 20:51:07 -0500 Subject: Avoid using fallback for dependencies without a subproject This screws things up with older meson versions, particularly with include_type 'system'. I don't think it had any purpose since there's no corresponding subproject inside this one anyway. --- meson.build | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/meson.build b/meson.build index e785109..44dd075 100644 --- a/meson.build +++ b/meson.build @@ -205,7 +205,6 @@ dl_dep = cc.find_library('dl', required: false) lv2_dep = dependency( 'lv2', - fallback: 'lv2', include_type: 'system', version: '>= 1.18.4', ) @@ -317,7 +316,7 @@ libsuil = library( # Declare dependency for internal meson dependants suil_dep = declare_dependency( compile_args: extra_c_args, - dependencies: [dl_dep], + dependencies: [lv2_dep, dl_dep], include_directories: include_dirs, link_with: libsuil, ) -- cgit v1.2.1