From af9491caf92df98e201affb4c001b986bcefeb25 Mon Sep 17 00:00:00 2001 From: hogliux Date: Wed, 27 Apr 2016 16:17:47 +0100 Subject: [PATCH] Fix typo in previous commit by incorrectly checking the OS X version --- .../format_types/juce_AudioUnitPluginFormat.mm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/juce_audio_processors/format_types/juce_AudioUnitPluginFormat.mm b/modules/juce_audio_processors/format_types/juce_AudioUnitPluginFormat.mm index f865ea30c7..45acefa5d8 100644 --- a/modules/juce_audio_processors/format_types/juce_AudioUnitPluginFormat.mm +++ b/modules/juce_audio_processors/format_types/juce_AudioUnitPluginFormat.mm @@ -40,7 +40,7 @@ #endif #ifndef JUCE_SUPPORTS_AUv3 - #if JUCE_COMPILER_SUPPORTS_VARIADIC_TEMPLATES && defined (MAC_OS_X_VERSION_MIN_REQUIRED) && (MAC_OS_X_VERSION_MIN_REQUIRED < MAC_OS_X_VERSION_10_8) && __OBJC2__ + #if JUCE_COMPILER_SUPPORTS_VARIADIC_TEMPLATES && defined (MAC_OS_X_VERSION_MIN_REQUIRED) && (MAC_OS_X_VERSION_MIN_REQUIRED >= MAC_OS_X_VERSION_10_8) && __OBJC2__ #define JUCE_SUPPORTS_AUv3 1 #else #define JUCE_SUPPORTS_AUv3 0