Revision 1, 0.8 kB
(checked in by jinshiro, 17 years ago)
|
|
Line | |
---|
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 10 |
---|
12 | #define MYSQL_SERVER_VERSION "5.0.20" |
---|
13 | #define MYSQL_BASE_VERSION "mysqld-5.0" |
---|
14 | #define MYSQL_SERVER_SUFFIX_DEF "-community-max-nt" |
---|
15 | #define FRM_VER 6 |
---|
16 | #define MYSQL_VERSION_ID 50020 |
---|
17 | #define MYSQL_PORT 3306 |
---|
18 | #define MYSQL_UNIX_ADDR "/tmp/mysql.sock" |
---|
19 | #define MYSQL_CONFIG_NAME "my" |
---|
20 | #define MYSQL_COMPILATION_COMMENT "MySQL Community Edition - Max (GPL)" |
---|
21 | |
---|
22 | /* mysqld compile time options */ |
---|
23 | #endif /* _CUSTOMCONFIG_ */ |
---|
24 | |
---|
25 | #ifndef LICENSE |
---|
26 | #define LICENSE GPL |
---|
27 | #endif /* LICENSE */ |
---|
28 | |
---|
29 | #endif /* _mysql_version_h */ |
---|