From 3f21c89bb02a19ac96f271ede26dcbe54cda657f Mon Sep 17 00:00:00 2001 From: Javier Celaya Date: Mon, 15 Jul 2019 07:46:56 +0200 Subject: [PATCH] osxaudio: misspelled dependency When building osxaudio, the required 'AudioToolbox' dependency is misspelled as 'AudioToolBox', which crashes the build with error: ld: framework not found AudioToolBox --- sys/osxaudio/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/osxaudio/meson.build b/sys/osxaudio/meson.build index 8bac0331a7..e5480d485f 100644 --- a/sys/osxaudio/meson.build +++ b/sys/osxaudio/meson.build @@ -27,7 +27,7 @@ if not have_osxaudio and osxaudio_option.enabled() endif if have_osxaudio - modules = ['CoreAudio', 'AudioToolBox'] + modules = ['CoreAudio', 'AudioToolbox'] if host_system == 'darwin' modules += ['AudioUnit', 'CoreServices'] endif