1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
/* Copyright Abandoned 1996, 1999, 2001 MySQL AB
This file is public domain and comes with NO WARRANTY of any kind */
/* Version numbers for protocol & mysqld */
#ifndef _mysql_version_h
#define _mysql_version_h
#ifdef _CUSTOMCONFIG_
#include <custom_conf.h>
#else
#define PROTOCOL_VERSION @PROTOCOL_VERSION@
#define DRIZZLE_SERVER_VERSION "@VERSION@"
#define DRIZZLE_BASE_VERSION "drizzle-@DRIZZLE_BASE_VERSION@"
#define DRIZZLE_SERVER_SUFFIX_DEF "@DRIZZLE_SERVER_SUFFIX@"
#define FRM_VER @DOT_FRM_VERSION@
#define DRIZZLE_VERSION_ID @DRIZZLE_VERSION_ID@
#define DRIZZLE_PORT @DRIZZLE_TCP_PORT@
#define DRIZZLE_PORT_DEFAULT @DRIZZLE_TCP_PORT_DEFAULT@
#define DRIZZLE_CONFIG_NAME "drizzled"
#define DRIZZLE_COMPILATION_COMMENT "@COMPILATION_COMMENT@"
/* mysqld compile time options */
#endif /* _CUSTOMCONFIG_ */
#ifndef LICENSE
#define LICENSE GPL
#endif /* LICENSE */
#endif /* _mysql_version_h */
|