]> www.ginac.de Git - cln.git/blob - include/cln/config.h.in
* include/cln/config.h.in: reintroduced.
[cln.git] / include / cln / config.h.in
1 // Defines CPU and compiler dependent macros
2
3 #ifndef _CL_CONFIG_H
4 #define _CL_CONFIG_H
5
6 /* These definitions are adjusted by `configure' automatically. */
7
8
9 /* release version */
10
11 #undef CL_VERSION_MAJOR
12 #undef CL_VERSION_MINOR
13 #undef CL_VERSION_PATCHLEVEL
14 #undef CL_VERSION
15
16
17 /* CPU */
18 #ifndef __i386__
19 #undef __i386__
20 #endif
21 #ifndef __m68k__
22 #undef __m68k__
23 #endif
24 #ifndef __mips__
25 #undef __mips__
26 #endif
27 #ifndef __mips64__
28 #undef __mips64__
29 #endif
30 #ifndef __sparc__
31 #undef __sparc__
32 #endif
33 #ifndef __sparc64__
34 #undef __sparc64__
35 #endif
36 #ifndef __alpha__
37 #undef __alpha__
38 #endif
39 #ifndef __hppa__
40 #undef __hppa__
41 #endif
42 #ifndef __arm__
43 #undef __arm__
44 #endif
45 #ifndef __rs6000__
46 #undef __rs6000__
47 #endif
48 #ifndef __m88k__
49 #undef __m88k__
50 #endif
51 #ifndef __convex__
52 #undef __convex__
53 #endif
54
55
56 /* assembler syntax */
57
58 /* CL_AS_UNDERSCORE */
59 /* Define if C symbols are prefixed by an underscore in assembly language. */
60 #undef ASM_UNDERSCORE
61
62
63 /* compiler characteristics */
64
65 /* CL_BOOL */
66 /* Define if your compiler understands the bool type. */
67 #undef HAVE_BOOL
68 /* Define this as `int' if your compiler doesn't understand the bool type. */
69 #undef bool
70
71 /* CL_LONGLONG */
72 /* Define if your compiler supports the `long long' type. */
73 #undef HAVE_LONGLONG
74
75 /* CL_LONGDOUBLE */
76 /* Define if your compiler supports the `long double' type. */
77 #undef HAVE_LONGDOUBLE
78
79 /* CL_TEMPLATE_NULL */
80 /* Define if your compiler supports the `template <>' syntax. */
81 #undef HAVE_TEMPLATE_NULL
82
83
84 /* header files */
85
86 /* CL_UNISTD_H */
87 /* Define if you have <unistd.h>. */
88 #undef HAVE_UNISTD_H
89
90
91 /* functions and declarations */
92
93 /* CL_ALLOCA */
94 /* Define if you have <alloca.h> and it should be used (not Ultrix). */
95 #undef HAVE_ALLOCA_H
96 /* Define if you need to link with an external alloca.o when using alloca(). */
97 #undef NO_ALLOCA
98
99
100 /* compiler characteristics */
101
102 /* CL_GLOBAL_CONSTRUCTORS */
103 /* Define as the prefix of the name of a module's global constructor function,
104    cf. macro FILE_FUNCTION_FORMAT in gcc/tree.c. */
105 #ifndef CL_GLOBAL_CONSTRUCTOR_PREFIX
106 #undef CL_GLOBAL_CONSTRUCTOR_PREFIX
107 #endif
108 /* Define as the prefix of the name of a module's global destructor function,
109    cf. macro FILE_FUNCTION_FORMAT in gcc/tree.c. */
110 #ifndef CL_GLOBAL_DESTRUCTOR_PREFIX
111 #undef CL_GLOBAL_DESTRUCTOR_PREFIX
112 #endif
113 /* Define if a module's global constructor function and global destructor
114    function need to be exported in order to be accessible from other modules. */
115 #undef CL_NEED_GLOBALIZE_CTORDTOR
116
117 /* CL_CHAR_UNSIGNED */
118 #ifndef __CHAR_UNSIGNED__
119 #undef __CHAR_UNSIGNED__
120 #endif
121
122 /* CL_MACHINE */
123 /* see cl_intparam.h */
124 /* see cl_floatparam.h */
125
126
127 #endif /* _CL_CONFIG_H */
128