summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2025-01-20 20:51:07 -0500
committerDavid Robillard <d@drobilla.net>2025-01-20 20:51:07 -0500
commit1a53caa058201600a9b9f5f3acaed5d96f7ac2a4 (patch)
tree62e899e0c5bf2d659aa4c2613c151fc84c1fd4b8
parent20f2e4f758aaee9382f157c97294dd4fc513f08c (diff)
downloadsuil-1a53caa058201600a9b9f5f3acaed5d96f7ac2a4.tar.gz
suil-1a53caa058201600a9b9f5f3acaed5d96f7ac2a4.tar.bz2
suil-1a53caa058201600a9b9f5f3acaed5d96f7ac2a4.zip
Avoid using fallback for dependencies without a subprojectHEADmain
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.
-rw-r--r--meson.build3
1 files changed, 1 insertions, 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,
)