~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mysys/make-conf.cc

pandora-build v0.72 - Moved remaining hard-coded tests into pandora-build
macros.
Add PANDORA_DRIZZLE_BUILD to run the extra checks that drizzle needs that 
plugins would also need to run so we can just use that macro in generated
external plugin builds.
Added support to register_plugins for external plugin building.
Renamed register_plugins.py to pandora-plugin.

Show diffs side-by-side

added added

removed removed

Lines of Context:
40
40
 
41
41
#define ROW_LEN   16
42
42
 
43
 
void print_array(const char *name, const uchar *array, uint size);
 
43
void print_array(const char *name, const unsigned char *array, uint32_t size);
44
44
 
45
45
int main(void)
46
46
{
56
56
  exit(EXIT_SUCCESS);
57
57
}
58
58
 
59
 
void print_array(const char *name, const uchar *array, uint size)
 
59
void print_array(const char *name, const unsigned char *array, uint32_t size)
60
60
{
61
 
  uint i;
 
61
  uint32_t i;
62
62
 
63
63
  printf("\n# The %s array must have %d elements.\n", name, size);
64
64