Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dosbox-staging/dosbox-staging.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKirk <kklobe@gmail.com>2022-09-23 17:04:08 +0300
committerkcgen <1557255+kcgen@users.noreply.github.com>2022-09-23 17:33:41 +0300
commita4dead1d491c93d06f5bc1a69e678f0fe63afd9e (patch)
tree5bcd59ebc920465b4255678fdc001467751ff1be /meson.build
parent10ca166ec402d72c621171cbd42b73d230da04bf (diff)
Specify library module for FluidSynth dep
Allows building on macOS with homebrew FluidSynth 2.3.0, which was causing a link error due to pkg-config not detecting readline, then cmake defaulting to the binary module instead of the library
Diffstat (limited to 'meson.build')
-rw-r--r--meson.build1
1 files changed, 1 insertions, 0 deletions
diff --git a/meson.build b/meson.build
index d9fcda913..796fad798 100644
--- a/meson.build
+++ b/meson.build
@@ -446,6 +446,7 @@ if get_option('use_fluidsynth')
fluid_dep = dependency(
'fluidsynth',
version: '>= 2.2.3',
+ modules: ['FluidSynth::libfluidsynth'],
allow_fallback: ('fluidsynth' not in system_libs_list),
static: ('fluidsynth' in static_libs_list or prefers_static_libs),
not_found_message: msg.format('use_fluidsynth'),