You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
1.2 KiB
31 lines
1.2 KiB
/* Copyright Abandoned 1996,1999 TCX DataKonsult AB & Monty Program KB
|
|
& Detron HB, 1996, 1999-2004, 2007 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
|
|
|
|
#define PROTOCOL_VERSION @PROTOCOL_VERSION@
|
|
#define MYSQL_SERVER_VERSION "@VERSION@"
|
|
#define MYSQL_BASE_VERSION "mysqld-@MYSQL_BASE_VERSION@"
|
|
#define MYSQL_SERVER_SUFFIX_DEF "@MYSQL_SERVER_SUFFIX@"
|
|
#define MYSQL_VERSION_ID @MYSQL_VERSION_ID@
|
|
#define MYSQL_PORT @MYSQL_TCP_PORT@
|
|
#define MYSQL_ADMIN_PORT @MYSQL_ADMIN_TCP_PORT@
|
|
#define MYSQL_PORT_DEFAULT @MYSQL_TCP_PORT_DEFAULT@
|
|
#define MYSQL_UNIX_ADDR "@MYSQL_UNIX_ADDR@"
|
|
#define MYSQL_CONFIG_NAME "my"
|
|
#define MYSQL_PERSIST_CONFIG_NAME "mysqld-auto"
|
|
#define MYSQL_COMPILATION_COMMENT "@COMPILATION_COMMENT@"
|
|
#define MYSQL_COMPILATION_COMMENT_SERVER "@COMPILATION_COMMENT_SERVER@"
|
|
#define LIBMYSQL_VERSION "@VERSION@"
|
|
#define LIBMYSQL_VERSION_ID @MYSQL_VERSION_ID@
|
|
|
|
#ifndef LICENSE
|
|
#define LICENSE GPL
|
|
#endif /* LICENSE */
|
|
|
|
#endif /* _mysql_version_h */
|
|
|