~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/mysqld_suffix.h

  • Committer: Grant Limberg
  • Date: 2008-08-12 21:13:01 UTC
  • mto: (322.1.1 codestyle)
  • mto: This revision was merged to the branch mainline in revision 324.
  • Revision ID: grant@glsoftware.net-20080812211301-ym3wsowelkgp16s2
renamed all instances of MYSQL_ to DRIZZLE_

Show diffs side-by-side

added added

removed removed

Lines of Context:
16
16
/**
17
17
  @file
18
18
 
19
 
  Set MYSQL_SERVER_SUFFIX_STR.
 
19
  Set DRIZZLE_SERVER_SUFFIX_STR.
20
20
 
21
21
  The following code is quite ugly as there is no portable way to easily set a
22
22
  string to the value of a macro
23
23
*/
24
24
 
25
 
#ifdef MYSQL_SERVER_SUFFIX
26
 
#define MYSQL_SERVER_SUFFIX_STR STRINGIFY_ARG(MYSQL_SERVER_SUFFIX)
 
25
#ifdef DRIZZLE_SERVER_SUFFIX
 
26
#define DRIZZLE_SERVER_SUFFIX_STR STRINGIFY_ARG(DRIZZLE_SERVER_SUFFIX)
27
27
#else
28
 
#define MYSQL_SERVER_SUFFIX_STR MYSQL_SERVER_SUFFIX_DEF
 
28
#define DRIZZLE_SERVER_SUFFIX_STR DRIZZLE_SERVER_SUFFIX_DEF
29
29
#endif