A quick FYI - I just got myself a spanking new MacBook and downloaded the new xcode 2.4, and there’s a few things break in the latest juce build. I’ll fix this in the next release, but in the meantime, if anyone has problems, here’s a couple of things to change:
-
replace every instance of MAC_OS_X_VERSION_MAX_ALLOWED with MAC_OS_X_VERSION_MIN_REQUIRED
-
in juce_PlatformDefs.h, replace this section:
#ifdef JUCE_LINUX
#define juce_isfinite(v) std::isfinite(v)
#elif JUCE_MAC
#if MACOS_10_2_OR_EARLIER
#define juce_isfinite(v) __isfinite(v)
#else
#define juce_isfinite(v) std::isfinite(v)
#endif
#elif defined (JUCE_WIN32) && ! defined (isfinite)
#define juce_isfinite(v) _finite(v)
#else
#define juce_isfinite(v) isfinite(v)
#endif