~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/drizzled.cc

Removed checks for things that are either defined ISO/POSIX standard, or that
we don't use/check for anyway.

Show diffs side-by-side

added added

removed removed

Lines of Context:
84
84
#ifdef HAVE_SYSENT_H
85
85
#include <sysent.h>
86
86
#endif
87
 
#ifdef HAVE_PWD_H
88
87
#include <pwd.h>                                // For getpwent
89
 
#endif
90
 
#ifdef HAVE_GRP_H
91
88
#include <grp.h>
92
 
#endif
93
89
 
94
90
#include <sys/resource.h>
95
91
 
109
105
 
110
106
#if defined(__FreeBSD__) && defined(HAVE_IEEEFP_H)
111
107
#include <ieeefp.h>
112
 
#ifdef HAVE_FP_EXCEPT                           // Fix type conflict
113
 
typedef fp_except fp_except_t;
114
 
#endif
115
108
#endif /* __FreeBSD__ && HAVE_IEEEFP_H */
116
109
 
117
110
#ifdef HAVE_FPU_CONTROL_H
1903
1896
   (char**) &dflt_key_cache_var.param_buff_size,
1904
1897
   (char**) 0,
1905
1898
   0, (GET_ULL),
1906
 
   REQUIRED_ARG, KEY_CACHE_SIZE, MALLOC_OVERHEAD, SIZE_T_MAX, MALLOC_OVERHEAD,
 
1899
   REQUIRED_ARG, KEY_CACHE_SIZE, MALLOC_OVERHEAD, SIZE_MAX, MALLOC_OVERHEAD,
1907
1900
   IO_SIZE, 0},
1908
1901
  {"key_cache_age_threshold", OPT_KEY_CACHE_AGE_THRESHOLD,
1909
1902
   N_("This characterizes the number of hits a hot block has to be untouched "