From 991ffcd2e0261e306e996ad5eb661388ef39c1e4 Mon Sep 17 00:00:00 2001 From: Tres Finocchiaro Date: Tue, 5 Mar 2019 16:42:36 -0500 Subject: [PATCH] Disable soundio on macOS Temporarily disable soundio on macOS to address stability issues with PortAudio Closes #4864 --- CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index e204a644a..2611d7086 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -73,6 +73,7 @@ OPTION(WANT_QT5 "Build with Qt5" OFF) IF(LMMS_BUILD_APPLE) # Fix linking on 10.14+. See issue #4762 on github LINK_DIRECTORIES(/usr/local/lib) + SET(WANT_SOUNDIO OFF) SET(WANT_ALSA OFF) SET(WANT_PULSEAUDIO OFF) SET(WANT_VST OFF)