File: OpenEXRConfig.h

package info (click to toggle)
freeimage 3.15.4-4.1
  • links: PTS, VCS
  • area: main
  • in suites: jessie-kfreebsd
  • size: 27,320 kB
  • sloc: ansic: 209,833; cpp: 86,676; cs: 36,178; pascal: 4,306; sh: 855; makefile: 570; asm: 284
file content (46 lines) | stat: -rw-r--r-- 1,208 bytes parent folder | download | duplicates (4)
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
//
// 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		// currently disabled in FreeImage

//
// 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 includes the NVIDIA Cg
// runtime.  The exrdisplay program will use a fragment shader to
// accelerate the display of OpenEXR images.
//

#undef HAVE_FRAGMENT_SHADERS

//
// Define and set to 1 if the target system has a complete <iomanip>
// implementation, specifically if it supports the std::right
// formatter.
//

#undef HAVE_COMPLETE_IOMANIP