source: GTP/trunk/Lib/Vis/Preprocessing/src/mixkit/mixcfg.h.in @ 1097

Revision 1097, 1.7 KB checked in by mattausch, 18 years ago (diff)
Line 
1/* This -*- C -*- file is meant to be processed by the configure script */
2
3/* Some systems (eg. Debian GNU/Linux) put <forms.h> in <X11/forms.h>. */
4#undef MIX_USE_X11_FORMS
5
6/* Define this if your compiler doesn't support the new C++ 'bool' type */
7#undef MIX_NEED_BOOL
8
9/* Define if your system supports fabsf() */
10#undef MIX_HAVE_FABSF
11
12/* Define if your system supports rint() */
13#undef MIX_HAVE_RINT
14
15/* Define if your system supports getrusage() */
16#undef MIX_HAVE_GETRUSAGE
17
18/* Define if your system does not support getrusage() but supports times() */
19#undef MIX_HAVE_TIMES
20
21/* Define if your system supports random() as opposed to just rand() */
22#undef MIX_HAVE_RANDOM
23
24/* Define if your system uses/needs <unistd.h> */
25#undef HAVE_UNISTD_H
26
27/* Stuff determining the presence of support for alloca() */
28#undef HAVE_ALLOCA_H
29#undef HAVE_ALLOCA
30
31/* Define if ANSI Standard C++ Library iostreams are available and */
32/* you want to use them. */
33#undef MIX_ANSI_IOSTREAMS
34
35/*
36   Global safety policy for MixKit software.
37
38   Safety levels:
39
40       -2 Reckless
41       -1 Optimized
42        0 Normal
43        1 Cautious
44        2 Paranoid
45
46*/
47#ifndef SAFETY
48#define SAFETY 0
49#endif
50
51/* Define if Sam Leffler's libtiff is available */
52#undef MIX_HAVE_LIBTIFF
53
54/* Define if libpng is available */
55#undef MIX_HAVE_LIBPNG
56
57/* ***** OpenGL configuration section ***** */
58
59/* Define to the name of OpenGL implementation (e.g., "OpenGL" or "Mesa") */
60#undef MIX_HAVE_OPENGL
61
62/* Define if glPolygonOffsetEXT is available */
63#undef MIX_HAVE_POLYOFFSET_EXT
64
65/* Define if glPolygonOffset is available */
66#undef MIX_HAVE_POLYOFFSET
67
68/* Define if glDrawArraysEXT is available */
69#undef MIX_HAVE_VERTARRAYS
Note: See TracBrowser for help on using the repository browser.