From fca2104db60d7933cd16cc22579a09794eb1657b Mon Sep 17 00:00:00 2001 From: Andrew Belt Date: Thu, 26 Aug 2021 15:26:49 -0400 Subject: [PATCH] Fix disabling of RtAudio ASIO by default in last commit. --- dep/Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/dep/Makefile b/dep/Makefile index 14c97036..ed7217d4 100755 --- a/dep/Makefile +++ b/dep/Makefile @@ -218,6 +218,8 @@ RTAUDIO_FLAGS += -DRTAUDIO_API_DS=ON -DRTAUDIO_API_WASAPI=ON # However, since VCV owns the copyright of all GPL'd code in the Rack package, we include ASIO in the Windows build for convenience to our users. ifdef RTAUDIO_ASIO RTAUDIO_FLAGS += -DRTAUDIO_API_ASIO=ON +else +RTAUDIO_FLAGS += -DRTAUDIO_API_ASIO=OFF endif endif