/** Define and set to 1 if the target system has POSIX thread support and you want IlmBase to use it for multithreaded file I/O. */ #if defined(_MSC_VER) || defined(__MINGW32__) #undef HAVE_PTHREAD #else #undef HAVE_PTHREAD #endif /** Define and set to 1 if the target system supports POSIX semaphores and you want OpenEXR to use them; otherwise, OpenEXR will use its own semaphore implementation. */ #if defined(_MSC_VER) || defined(__MINGW32__) #undef HAVE_POSIX_SEMAPHORES #else #undef HAVE_POSIX_SEMAPHORES #endif /** Define and set to 1 if the target system has support for large stack sizes. */ #undef ILMBASE_HAVE_LARGE_STACK /** Current (internal) library namepace name and corresponding public client namespaces. */ #define ILMBASE_INTERNAL_NAMESPACE_CUSTOM 1 #define IMATH_INTERNAL_NAMESPACE Imath_2_2 #define IEX_INTERNAL_NAMESPACE Iex_2_2 #define ILMTHREAD_INTERNAL_NAMESPACE IlmThread_2_2 #define IMATH_NAMESPACE Imath #define IEX_NAMESPACE Iex #define ILMTHREAD_NAMESPACE IlmThread /** Required for system-specific debug trap code in IexBaseExc.cpp */ #ifdef _WIN32 #define PLATFORM_WINDOWS 1 #endif // // Version information // #define ILMBASE_VERSION_STRING "2.2.1" #define ILMBASE_PACKAGE_STRING "IlmBase 2.2.1" #define ILMBASE_VERSION_MAJOR 2 #define ILMBASE_VERSION_MINOR 2 #define ILMBASE_VERSION_PATCH 1 // Version as a single hex number, e.g. 0x01000300 == 1.0.3 #define ILMBASE_VERSION_HEX ((ILMBASE_VERSION_MAJOR << 24) | \ (ILMBASE_VERSION_MINOR << 16) | \ (ILMBASE_VERSION_PATCH << 8))