~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/global.h

MergedĀ up.

Show diffs side-by-side

added added

removed removed

Lines of Context:
30
30
#undef _FILE_OFFSET_BITS
31
31
#endif
32
32
 
33
 
#include <config.h>
 
33
#include "config.h"
34
34
 
35
35
#if defined(__cplusplus)
36
36
 
107
107
 
108
108
#define _REENTRANT  1  /* Threads requires reentrant code */
109
109
 
110
 
#ifdef HAVE_LIMITS_H
111
110
#include <limits.h>
112
 
#endif
113
111
 
114
 
#ifdef HAVE_SYS_TYPES_H
115
 
#include <sys/types.h>
116
 
#endif
117
 
#ifdef HAVE_FCNTL_H
118
112
#include <fcntl.h>
119
 
#endif
120
113
 
121
114
#ifdef HAVE_UNISTD_H
122
115
#include <unistd.h>
220
213
#error "please add -DSTACK_DIRECTION=1 or -1 to your CPPFLAGS"
221
214
#endif
222
215
 
223
 
#ifdef HAVE_FLOAT_H
224
216
#include <float.h>
225
 
#else
226
 
#if !defined(FLT_MIN)
227
 
#define FLT_MIN         ((float)1.40129846432481707e-45)
228
 
#endif
229
 
#if !defined(FLT_MAX)
230
 
#define FLT_MAX         ((float)3.40282346638528860e+38)
231
 
#endif
232
 
#endif
233
217
 
234
218
/* From limits.h instead */
235
219
#ifndef DBL_MIN
238
222
#ifndef DBL_MAX
239
223
#define DBL_MAX    1.79769313486231470e+308
240
224
#endif
241
 
#ifndef SIZE_T_MAX
242
 
#define SIZE_T_MAX ~((size_t) 0)
243
 
#endif
244
225
 
245
226
 
246
227
/* Define missing math constants. */