~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to storage/innobase/include/univ.i

Removed/replaced DBUG symbols and standardized TRUE/FALSE

Show diffs side-by-side

added added

removed removed

Lines of Context:
9
9
#ifndef univ_i
10
10
#define univ_i
11
11
 
12
 
#if (defined(WIN32) || defined(_WIN32) || defined(WIN64) || defined(_WIN64)) && !defined(DRIZZLE_SERVER) && !defined(__WIN__)
 
12
#if (defined(WIN32) || defined(_WIN32) || defined(WIN64) || defined(_WIN64)) && !defined(MYSQL_SERVER) && !defined(__WIN__)
13
13
# undef __WIN__
14
14
# define __WIN__
15
15
 
30
30
in compiling more Posix-compatible. These headers also define __WIN__
31
31
if we are compiling on Windows. */
32
32
 
33
 
# include <drizzled/global.h>
34
 
# include <mysys/my_pthread.h>
 
33
# include <my_global.h>
 
34
# include <my_pthread.h>
35
35
 
36
36
/* Include <sys/stat.h> to get S_I... macros defined for os0file.c */
37
37
# include <sys/stat.h>
213
213
#ifdef __WIN__
214
214
typedef __int64                 ib_longlong;
215
215
#else
216
 
typedef int64_t         ib_longlong;
 
216
typedef longlong                ib_longlong;
217
217
#endif
218
218
 
219
219
typedef uint64_t        ullint;