source: git/omalloc/omConfig.h.in.SAVE @ 08a955

spielwiese
Last change on this file since 08a955 was 49ea49, checked in by Oleksandr Motsak <motsak@…>, 12 years ago
CHG: eliminated omalloc/omlimits.h.in->.h in favour of static mylimits.h (limits.h) CHG: generate and use omalloc/omConfig.h (in favour of omConfig.h.in + config.h)
  • Property mode set to 100644
File size: 3.3 KB
Line 
1/* omConfig.h.in.  Generated from configure.ac by autoheader.  */
2
3/* Define to 1 if you have the <limits.h> header file. */
4#ifndef HAVE_LIMITS_H
5#undef HAVE_LIMITS_H
6#endif
7
8/* Define to 1 if you have the <strings.h> header file. */
9#ifndef HAVE_STRINGS_H
10#undef HAVE_STRINGS_H
11#endif
12
13/* Define to 1 if you have the <string.h> header file. */
14#ifndef HAVE_STRING_H
15#undef HAVE_STRING_H
16#endif
17
18/* Define to 1 if you have the <unistd.h> header file. */
19#ifndef HAVE_UNISTD_H
20#undef HAVE_UNISTD_H
21#endif
22
23/* Define to 1 if you have the </usr/include/malloc.h> header file. */
24#ifndef HAVE__USR_INCLUDE_MALLOC_H
25#undef HAVE__USR_INCLUDE_MALLOC_H
26#endif
27
28/* "Whether alignment needs work" */
29#ifndef OM_ALIGNMENT_NEEDS_WORK
30#undef OM_ALIGNMENT_NEEDS_WORK
31#endif
32
33/* "Align to 8 bytes" */
34#ifndef OM_ALIGN_8
35#undef OM_ALIGN_8
36#endif
37
38/* "Emulate omalloc" */
39#ifndef OM_EMULATE_OMALLOC
40#undef OM_EMULATE_OMALLOC
41#endif
42
43/* "Whether omInitGetBackTrace () works" */
44#ifndef OM_GET_BACKTRACE_WORKS
45#undef OM_GET_BACKTRACE_WORKS
46#endif
47
48/* "Whether get return address works" */
49#ifndef OM_GET_RETURN_ADDR_WORKS
50#undef OM_GET_RETURN_ADDR_WORKS
51#endif
52
53/* "Whether we have dense bins" */
54#ifndef OM_HAVE_DENSE_BIN_DISTRIBUTION
55#undef OM_HAVE_DENSE_BIN_DISTRIBUTION
56#endif
57
58/* "Wether we have an external config.c" */
59#ifndef OM_HAVE_EXTERNAL_CONFIG_C
60#undef OM_HAVE_EXTERNAL_CONFIG_C
61#endif
62
63/* "Whether we have external config.h" */
64#ifndef OM_HAVE_EXTERNAL_CONFIG_H
65#undef OM_HAVE_EXTERNAL_CONFIG_H
66#endif
67
68/* "Have track" */
69#ifndef OM_HAVE_TRACK
70#undef OM_HAVE_TRACK
71#endif
72
73/* "inline-declaration" */
74#ifndef OM_INLINE
75#undef OM_INLINE
76#endif
77
78/* "inline-declaration" */
79#ifndef OM_INLINE_DECL
80#undef OM_INLINE_DECL
81#endif
82
83/* "inline-declaration" */
84#ifndef OM_INLINE_IMPL
85#undef OM_INLINE_IMPL
86#endif
87
88/* "inline-declaration" */
89#ifndef OM_INLINE_LOCAL
90#undef OM_INLINE_LOCAL
91#endif
92
93/* "Whether malloc provides SIZEOF_ADDR" */
94#ifndef OM_MALLOC_PROVIDES_SIZEOF_ADDR
95#undef OM_MALLOC_PROVIDES_SIZEOF_ADDR
96#endif
97
98/* Provide NO standard routines! */
99#ifndef OM_PROVIDE_MALLOC
100#undef OM_PROVIDE_MALLOC
101#endif
102
103/* "Disable debug" */
104#ifndef OM_NDEBUG
105#undef OM_NDEBUG
106#endif
107
108/* "Whether to track backtrace" */
109#ifndef OM_TRACK_BACKTRACE
110#undef OM_TRACK_BACKTRACE
111#endif
112
113/* "Enable custom tracking" */
114#ifndef OM_TRACK_CUSTOM
115#undef OM_TRACK_CUSTOM
116#endif
117
118/* "Whether to track file-line" */
119#ifndef OM_TRACK_FILE_LINE
120#undef OM_TRACK_FILE_LINE
121#endif
122
123/* "Whether to track return" */
124#ifndef OM_TRACK_RETURN
125#undef OM_TRACK_RETURN
126#endif
127
128/* The size of `double', as computed by sizeof. */
129#ifndef SIZEOF_DOUBLE
130#undef SIZEOF_DOUBLE
131#endif
132
133/* The size of `long', as computed by sizeof. */
134#ifndef SIZEOF_LONG
135#undef SIZEOF_LONG
136#endif
137
138/* Page-size of the build-system */
139#ifndef SIZEOF_OM_PAGE
140#undef SIZEOF_OM_PAGE
141#endif
142
143/* The size of `size_t', as computed by sizeof. */
144#ifndef SIZEOF_SIZE_T
145#undef SIZEOF_SIZE_T
146#endif
147
148/* "Page-size of the build-system" */
149#ifndef SIZEOF_SYSTEM_PAGE
150#undef SIZEOF_SYSTEM_PAGE
151#endif
152
153/* The size of `void*', as computed by sizeof. */
154#ifndef SIZEOF_VOIDP
155#undef SIZEOF_VOIDP
156#endif
157
158/* Define to empty if `const' does not conform to ANSI C. */
159#ifndef const
160#undef const
161#endif
162
163/* Define to `__inline__' or `__inline' if that's what the C compiler
164   calls it, or to nothing if 'inline' is not supported under any name.  */
165#ifndef __cplusplus
166#ifndef inline
167#undef inline
168#endif
169#endif
Note: See TracBrowser for help on using the repository browser.