osxaudio: misspelled dependency
authorJavier Celaya <javier.celaya@flexvdi.com>
Mon, 15 Jul 2019 05:46:56 +0000 (07:46 +0200)
committerjcelaya <jcelaya@gmail.com>
Mon, 14 Oct 2019 15:33:30 +0000 (15:33 +0000)
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

index 8bac033..e5480d4 100644 (file)
@@ -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