1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60
|
//
// This is a hard-coded config file for Windows platforms. Don't
// change any of these settings.
//
//
// Define and set to 1 if the target system has POSIX thread support
// and you want OpenEXR to use it for multithreaded file I/O.
//
/* #undef HAVE_PTHREAD */
//
// 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.
//
/* #undef HAVE_POSIX_SEMAPHORES */
//
// Define and set to 1 if the target system is a Darwin-based system
// (e.g., OS X).
//
/* #undef HAVE_DARWIN */
//
// Define and set to 1 if the target system supports a proc filesystem
// compatible with the Linux kernel's proc filesystem. Note that this
// is only used by a program in the IlmImfTest test suite, it's not
// used by any OpenEXR library or application code.
//
/* #undef HAVE_LINUX_PROCFS */
//
// Define and set to 1 if the target system has a complete <iomanip>
// implementation, specifically if it supports the std::right
// formatter.
//
#define HAVE_COMPLETE_IOMANIP 1
// BEGIN POV-Ray Specific Patch
//
#define OPENEXR_VERSION_STRING "2.2.0"
#define OPENEXR_PACKAGE_STRING "OpenEXR 2.2.0"
#define OPENEXR_VERSION_MAJOR 2
#define OPENEXR_VERSION_MINOR 2
#define OPENEXR_VERSION_PATCH 0
// Version as a single hex number, e.g. 0x01000300 == 1.0.3
#define OPENEXR_VERSION_HEX ((OPENEXR_VERSION_MAJOR << 24) | \
(OPENEXR_VERSION_MINOR << 16) | \
(OPENEXR_VERSION_PATCH << 8))
//
// END POV-Ray Specific Patch
|