~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/slave.cc

Removed time.h and sys/time.h from global.h.

Show diffs side-by-side

added added

removed removed

Lines of Context:
37
37
#include <mysys/mysys_err.h>
38
38
#include <drizzled/drizzled_error_messages.h>
39
39
 
 
40
#if TIME_WITH_SYS_TIME
 
41
# include <sys/time.h>
 
42
# include <time.h>
 
43
#else
 
44
# if HAVE_SYS_TIME_H
 
45
#  include <sys/time.h>
 
46
# else
 
47
#  include <time.h>
 
48
# endif
 
49
#endif
 
50
 
 
51
 
40
52
#include "rpl_tblmap.h"
41
53
 
42
54
#define FLAGSTR(V,F) ((V)&(F)?#F" ":"")