2010-02-19 12:51:02 +00:00
|
|
|
|
|
|
|
#ifdef STRICT_MACOS_X
|
2010-02-19 16:33:44 +00:00
|
|
|
# define OBJC_NONPORTABLE __attribute__((error("Function not supported by the Apple runtime")))
|
2010-02-19 12:51:02 +00:00
|
|
|
#else
|
2010-02-19 16:33:44 +00:00
|
|
|
# define OBJC_NONPORTABLE
|
2010-02-19 12:51:02 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#if !defined(__DEPRECATE_DIRECT_ACCESS) || defined(__OBJC_LEGACY_GNU_MODE__) || defined(__OBJC_RUNTIME_INTERNAL__)
|
2010-02-19 16:33:44 +00:00
|
|
|
# define OBJC_DEPRECATED
|
2010-02-19 12:51:02 +00:00
|
|
|
#else
|
2010-02-19 16:33:44 +00:00
|
|
|
# if ((__GNUC__ > 3) || (__GNUC__ == 3 && __GNUC_MINOR >= 1))
|
|
|
|
# define OBJC_DEPRECATED __attribute__((deprecated))
|
|
|
|
# else
|
|
|
|
# define OBJC_DEPRECATED
|
|
|
|
# endif
|
2010-02-19 12:51:02 +00:00
|
|
|
#endif
|
2010-02-19 16:33:44 +00:00
|
|
|
|