diff options
author | David Robillard <d@drobilla.net> | 2025-01-20 22:12:38 -0500 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2025-02-10 16:07:44 -0500 |
commit | 2834ac957f73b9cc105ec62e981a292d677af19d (patch) | |
tree | 491e0fe0725e92c95d58ef946c3e3b8fcdb7d2b8 | |
parent | 9f56463f38633ba89a5b22151f3aa529a7603a50 (diff) | |
download | ingen-2834ac957f73b9cc105ec62e981a292d677af19d.tar.gz ingen-2834ac957f73b9cc105ec62e981a292d677af19d.tar.bz2 ingen-2834ac957f73b9cc105ec62e981a292d677af19d.zip |
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.
-rw-r--r-- | meson.build | 7 | ||||
-rw-r--r-- | src/gui/meson.build | 1 |
2 files changed, 0 insertions, 8 deletions
diff --git a/meson.build b/meson.build index 09b9a0f0..3510d895 100644 --- a/meson.build +++ b/meson.build @@ -218,49 +218,42 @@ thread_dep = dependency('threads') serd_dep = dependency( 'serd-0', - fallback: ['serd', 'serd_dep'], include_type: 'system', version: '>= 0.30.4', ) sord_dep = dependency( 'sord-0', - fallback: ['sord', 'sord_dep'], include_type: 'system', version: '>= 0.16.15', ) sratom_dep = dependency( 'sratom-0', - fallback: ['sratom', 'sratom_dep'], include_type: 'system', version: '>= 0.6.0', ) suil_dep = dependency( 'suil-0', - fallback: ['suil', 'suil_dep'], include_type: 'system', version: '>= 0.10.0', ) lv2_dep = dependency( 'lv2', - fallback: ['lv2', 'lv2_dep'], include_type: 'system', version: '>= 1.18.0', ) lilv_dep = dependency( 'lilv-0', - fallback: ['lilv', 'lilv_dep'], include_type: 'system', version: '>= 0.24.21', ) raul_dep = dependency( 'raul-2', - fallback: ['raul', 'raul_dep'], include_type: 'system', version: '>= 2.0.0', ) diff --git a/src/gui/meson.build b/src/gui/meson.build index 266c8abb..810c7829 100644 --- a/src/gui/meson.build +++ b/src/gui/meson.build @@ -30,7 +30,6 @@ gtkmm_dep = dependency( ganv_dep = dependency( 'ganv-1', - fallback: ['ganv', 'ganv_dep'], include_type: 'system', required: get_option('gui'), version: '>= 1.5.2', |