1
0
mirror of https://github.com/cookiengineer/audacity synced 2026-01-12 07:35:51 +01:00

Revert "Don't use c++11 fix ups on OSX 10.6"

More is needed for this to work correctly on Mac.
This commit is contained in:
James Crook
2018-03-21 10:40:39 +00:00
parent 47451da0e0
commit 2ccc8eec9b

View File

@@ -11,11 +11,7 @@
// std:: containers knowing about rvalue references
#undef __AUDACITY_OLD_STD__
// Clang 5.0 on OSX 10.6 CAN handle C++11, if built with -std=c++11
// So use "< __MAC_10_6" rather than "<= __MAC_10_6"
// Requested by macports.org https://trac.macports.org/ticket/56114
#if defined(__MAC_OS_X_VERSION_MIN_REQUIRED) && __MAC_OS_X_VERSION_MIN_REQUIRED < __MAC_10_6
#if defined(__MAC_OS_X_VERSION_MIN_REQUIRED) && __MAC_OS_X_VERSION_MIN_REQUIRED <= __MAC_10_6
#define __AUDACITY_OLD_STD__