Merge pull request #335 from besser82/bugfix/apple_deprecated_macros

Deal with Apple's deprecated 'AssertMacros.h' from Carbon-framework
This commit is contained in:
Olly Betts 2015-02-12 10:24:51 +13:00
commit 57e3bf72c6

View file

@ -106,3 +106,7 @@
# define _SCL_SECURE_NO_DEPRECATE
#endif
/* Deal with Apple's deprecated 'AssertMacros.h' from Carbon-framework */
#if defined(__APPLE__) && !defined(__ASSERT_MACROS_DEFINE_VERSIONS_WITHOUT_UNDERSCORES)
# define __ASSERT_MACROS_DEFINE_VERSIONS_WITHOUT_UNDERSCORES 0
#endif