~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/calendar.cc

Remove PLUGIN and MODULES.

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
 * Common functions for dealing with calendrical calculations
25
25
 */
26
26
 
27
 
#include "drizzled/global.h"
 
27
#include "config.h"
 
28
 
 
29
#if TIME_WITH_SYS_TIME
 
30
# include <sys/time.h>
 
31
# include <time.h>
 
32
#else
 
33
# if HAVE_SYS_TIME_H
 
34
#  include <sys/time.h>
 
35
# else
 
36
#  include <time.h>
 
37
# endif
 
38
#endif
 
39
#include <cstdlib>
 
40
 
28
41
#include "drizzled/calendar.h"
29
42
 
30
43
/** Static arrays for number of days in a month and their "day ends" */