~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/drizzled.cc

  • Committer: Brian Aker
  • Date: 2008-12-22 06:59:52 UTC
  • mfrom: (673.3.30 tests)
  • Revision ID: brian@tangent.org-20081222065952-gbii7cfkjdsqy6o5
Merge stewart.

Show diffs side-by-side

added added

removed removed

Lines of Context:
259
259
/* Global variables */
260
260
 
261
261
bool opt_bin_log;
262
 
bool opt_log_queries_not_using_indexes= false;
263
262
bool opt_error_log= 0;
264
263
bool opt_skip_show_db= false;
265
264
bool opt_character_set_client_handshake= 1;
425
424
MY_LOCALE *my_default_lc_time_names;
426
425
 
427
426
SHOW_COMP_OPTION have_symlink;
428
 
SHOW_COMP_OPTION have_compress;
429
427
 
430
428
/* Thread specific variables */
431
429
 
4001
3999
#else
4002
4000
  have_symlink=SHOW_OPTION_YES;
4003
4001
#endif
4004
 
#ifdef HAVE_COMPRESS
4005
 
  have_compress= SHOW_OPTION_YES;
4006
 
#else
4007
 
  have_compress= SHOW_OPTION_NO;
4008
 
#endif
4009
4002
 
4010
4003
  const char *tmpenv;
4011
4004
  if (!(tmpenv = getenv("MY_BASEDIR_VERSION")))