Update source to v6.8.18240.20051

Previous source was actually for 6.1...
This commit is contained in:
Will Pearson
2018-09-15 11:26:15 -07:00
committed by Bozo
parent 0ae09c4811
commit 5f462fed0d
124 changed files with 27735 additions and 4925 deletions

View File

@@ -74,10 +74,32 @@
*/
#if defined(ON_RUNTIME_APPLE)
#if (defined(TARGET_OS_IPHONE) || defined(TARGET_IPHONE_SIMULATOR) || defined(__IOS__))
#if defined(__IOS__)
#define ON_RUNTIME_APPLE_IOS
#else
#endif
#if (!defined(ON_RUNTIME_APPLE_IOS) && defined(TARGET_OS_IPHONE))
#if (TARGET_OS_IPHONE == 1)
#define ON_RUNTIME_APPLE_IOS
#endif
#endif
#if (!defined(ON_RUNTIME_APPLE_IOS) && defined(TARGET_IPHONE_SIMULATOR))
#if (TARGET_IPHONE_SIMULATOR == 1)
#define ON_RUNTIME_APPLE_IOS
#endif
#endif
#if !defined(ON_RUNTIME_APPLE_IOS)
#define ON_RUNTIME_APPLE_MACOS
// Apple:
// Defines RHINO_CORE_COMPONENT here.
// If we publish an Apple C++ pubic SDK, this will need to be adjusted.
// Windows:
// uses the property sheet RhinoProjectPropertySheets/Rhino.Cpp.common.props
// Some build products in Windows are not "core components"
#define RHINO_CORE_COMPONENT = 1
#endif
#if (defined(__LP64__) || defined(__ppc64__))