From 10d367fdae64062efcee01e59493627b0adbcaf3 Mon Sep 17 00:00:00 2001 From: Florian Walpen Date: Wed, 29 Dec 2021 23:07:58 +0100 Subject: [PATCH] Fix plugin manager build with VST3 disabled. ARDOUR::SystemExec is also used for scanning VST2 and AU plugins, yet the corresponding header ardour/system_exec.h is not included when VST3 support is disabled in the build configuration. --- libs/ardour/plugin_manager.cc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libs/ardour/plugin_manager.cc b/libs/ardour/plugin_manager.cc index b55da66f7a..7382861141 100644 --- a/libs/ardour/plugin_manager.cc +++ b/libs/ardour/plugin_manager.cc @@ -87,6 +87,7 @@ #include "ardour/search_paths.h" #if (defined WINDOWS_VST_SUPPORT || defined MACVST_SUPPORT || defined LXVST_SUPPORT) +#include "ardour/system_exec.h" #include "ardour/vst2_scan.h" #endif @@ -113,6 +114,7 @@ #include "ardour/audio_unit.h" #include "ardour/auv2_scan.h" +#include "ardour/system_exec.h" #include #endif