1
by brian
clean slate |
1 |
/* Copyright Abandoned 1996, 1999, 2001 MySQL AB
|
2 |
This file is public domain and comes with NO WARRANTY of any kind */
|
|
3 |
||
4 |
/* Version numbers for protocol & mysqld */
|
|
5 |
||
6 |
#ifndef _mysql_version_h
|
|
7 |
#define _mysql_version_h
|
|
8 |
#ifdef _CUSTOMCONFIG_
|
|
9 |
#include <custom_conf.h> |
|
10 |
#else
|
|
11 |
#define PROTOCOL_VERSION @PROTOCOL_VERSION@
|
|
12 |
#define MYSQL_SERVER_VERSION "@VERSION@"
|
|
13 |
#define MYSQL_BASE_VERSION "mysqld-@MYSQL_BASE_VERSION@"
|
|
14 |
#define MYSQL_SERVER_SUFFIX_DEF "@MYSQL_SERVER_SUFFIX@"
|
|
15 |
#define FRM_VER @DOT_FRM_VERSION@
|
|
16 |
#define MYSQL_VERSION_ID @MYSQL_VERSION_ID@
|
|
17 |
#define MYSQL_PORT @MYSQL_TCP_PORT@
|
|
18 |
#define MYSQL_PORT_DEFAULT @MYSQL_TCP_PORT_DEFAULT@
|
|
19 |
#define MYSQL_UNIX_ADDR "@MYSQL_UNIX_ADDR@"
|
|
20 |
#define MYSQL_CONFIG_NAME "my"
|
|
21 |
#define MYSQL_COMPILATION_COMMENT "@COMPILATION_COMMENT@"
|
|
22 |
||
23 |
/* mysqld compile time options */
|
|
24 |
#endif /* _CUSTOMCONFIG_ */ |
|
25 |
||
26 |
#ifndef LICENSE
|
|
27 |
#define LICENSE GPL
|
|
28 |
#endif /* LICENSE */ |
|
29 |
||
30 |
#endif /* _mysql_version_h */ |