~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/data_home.h

  • Committer: Monty Taylor
  • Date: 2010-02-16 07:05:28 UTC
  • mto: (1471.3.2 drizzled-as-lib)
  • mto: This revision was merged to the branch mainline in revision 1479.
  • Revision ID: mordred@inaugust.com-20100216070528-psvrbp9r3ue4tsh8
Changed build to build the almost all of drizzle into libdrizzled and then
have a small main.cc program which links in libdrizzled. This will allow us
to easily track exported API symbols and symbol changes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
#ifndef DRIZZLED_DATA_HOME_H
21
21
#define DRIZZLED_DATA_HOME_H
22
22
 
 
23
/* @TODO: These don't need drizzle_ prefixes any longer */
23
24
namespace drizzled
24
25
{
25
26
 
26
27
extern uint32_t drizzle_data_home_len;
27
 
extern char *drizzle_data_home,
28
 
             drizzle_real_data_home[], drizzle_unpacked_real_data_home[];
 
28
extern char *drizzle_data_home;
 
29
extern char drizzle_real_data_home[];
 
30
extern char drizzle_unpacked_real_data_home[];
 
31
extern char drizzle_data_home_buff[];
29
32
 
30
33
} /* namespace drizzled */
31
34