From c552872fd6242be8f04b8d3d432b7eb5eb3a3857 Mon Sep 17 00:00:00 2001 From: hogliux Date: Thu, 7 Jul 2016 09:47:08 +0100 Subject: [PATCH] Never define JUCE_SUPPORT_CARBON on iOS --- modules/juce_audio_processors/juce_audio_processors.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/juce_audio_processors/juce_audio_processors.h b/modules/juce_audio_processors/juce_audio_processors.h index 3d72d4b0fe..3f332da8bf 100644 --- a/modules/juce_audio_processors/juce_audio_processors.h +++ b/modules/juce_audio_processors/juce_audio_processors.h @@ -89,7 +89,7 @@ // #error "You need to set either the JUCE_PLUGINHOST_AU and/or JUCE_PLUGINHOST_VST and/or JUCE_PLUGINHOST_VST3 flags if you're using this module!" #endif -#if ! (defined (JUCE_SUPPORT_CARBON) || JUCE_64BIT) +#if ! (defined (JUCE_SUPPORT_CARBON) || JUCE_64BIT || JUCE_IOS) #define JUCE_SUPPORT_CARBON 1 #endif