~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/internal/my_static.cc

  • Committer: Monty Taylor
  • Date: 2011-01-26 19:15:55 UTC
  • mto: This revision was merged to the branch mainline in revision 2126.
  • Revision ID: mordred@inaugust.com-20110126191555-nq5nnzyscvngsip2
Turns on -fvisibility=hidden by default. Symbols intended to be used by
plugins need to be marked with DRIZZLED_API.

Show diffs side-by-side

added added

removed removed

Lines of Context:
25
25
#include "my_static.h"
26
26
#include <stdlib.h>
27
27
 
 
28
#include "drizzled/visibility.h"
 
29
 
28
30
namespace drizzled
29
31
{
30
32
namespace internal
37
39
const char      *my_progname=0;
38
40
char curr_dir[FN_REFLEN]= {0},
39
41
     home_dir_buff[FN_REFLEN]= {0};
40
 
int my_umask=0664, my_umask_dir=0777;
 
42
DRIZZLED_API int my_umask=0664;
 
43
int my_umask_dir=0777;
41
44
uint32_t   my_file_limit= MY_NFILE;
42
45
 
43
46
        /* From mf_brkhant */