~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/handler_structs.h

Remove PLUGIN and MODULES.

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
#ifndef DRIZZLED_HANDLER_STRUCTS_H
21
21
#define DRIZZLED_HANDLER_STRUCTS_H
22
22
 
23
 
#include <stdint.h>
24
 
#include <time.h>
 
23
#if TIME_WITH_SYS_TIME
 
24
# include <sys/time.h>
 
25
# include <time.h>
 
26
#else
 
27
# if HAVE_SYS_TIME_H
 
28
#  include <sys/time.h>
 
29
# else
 
30
#  include <time.h>
 
31
# endif
 
32
#endif
25
33
 
26
34
#include <drizzled/base.h>
27
35
#include <drizzled/structs.h>
28
36
#include <drizzled/definitions.h>
29
37
#include <drizzled/lex_string.h>
 
38
#include "drizzled/global_charset_info.h"
 
39
 
30
40
 
31
41
class Ha_trx_info;
32
42
struct st_key;