From f0b7c3aa1351e20d21cfd7a36f4b57d67495cf86 Mon Sep 17 00:00:00 2001 From: reuk Date: Wed, 26 Apr 2023 18:19:39 +0100 Subject: [PATCH] Unity: Fix failures due to excess exported symbols when building with MinGW --- .../juce_audio_plugin_client/Unity/juce_UnityPluginInterface.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/juce_audio_plugin_client/Unity/juce_UnityPluginInterface.h b/modules/juce_audio_plugin_client/Unity/juce_UnityPluginInterface.h index 6bdcdcbe7a..c0ce9c71ac 100644 --- a/modules/juce_audio_plugin_client/Unity/juce_UnityPluginInterface.h +++ b/modules/juce_audio_plugin_client/Unity/juce_UnityPluginInterface.h @@ -29,7 +29,7 @@ //============================================================================== #define UNITY_AUDIO_PLUGIN_API_VERSION 0x010401 -#if JUCE_MSVC +#if JUCE_WINDOWS #define UNITY_INTERFACE_API __stdcall #define UNITY_INTERFACE_EXPORT __declspec(dllexport) #else