2014-02-06 09:41:38 +01:00
|
|
|
/* 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
|
|
|
|
*/
|
2000-07-31 21:29:14 +02:00
|
|
|
|
|
|
|
/* Version numbers for protocol & mysqld */
|
|
|
|
|
2002-07-23 17:31:22 +02:00
|
|
|
#ifndef _mysql_version_h
|
|
|
|
#define _mysql_version_h
|
2000-07-31 21:29:14 +02:00
|
|
|
#ifdef _CUSTOMCONFIG_
|
2001-01-21 15:30:16 +01:00
|
|
|
#include <custom_conf.h>
|
2000-07-31 21:29:14 +02:00
|
|
|
#else
|
|
|
|
#define PROTOCOL_VERSION @PROTOCOL_VERSION@
|
|
|
|
#define MYSQL_SERVER_VERSION "@VERSION@"
|
2003-06-04 15:05:27 +02:00
|
|
|
#define MYSQL_BASE_VERSION "mysqld-@MYSQL_BASE_VERSION@"
|
2004-05-25 01:28:44 +02:00
|
|
|
#define MYSQL_SERVER_SUFFIX_DEF "@MYSQL_SERVER_SUFFIX@"
|
2000-07-31 21:29:14 +02:00
|
|
|
#define FRM_VER @DOT_FRM_VERSION@
|
|
|
|
#define MYSQL_VERSION_ID @MYSQL_VERSION_ID@
|
|
|
|
#define MYSQL_PORT @MYSQL_TCP_PORT@
|
2007-09-13 16:19:46 +02:00
|
|
|
#define MYSQL_PORT_DEFAULT @MYSQL_TCP_PORT_DEFAULT@
|
2000-07-31 21:29:14 +02:00
|
|
|
#define MYSQL_UNIX_ADDR "@MYSQL_UNIX_ADDR@"
|
2002-08-06 02:21:12 +02:00
|
|
|
#define MYSQL_CONFIG_NAME "my"
|
2003-11-26 02:30:00 +01:00
|
|
|
#define MYSQL_COMPILATION_COMMENT "@COMPILATION_COMMENT@"
|
2000-07-31 21:29:14 +02:00
|
|
|
|
|
|
|
/* mysqld compile time options */
|
2002-07-23 17:31:22 +02:00
|
|
|
#endif /* _CUSTOMCONFIG_ */
|
2004-03-17 18:04:50 +01:00
|
|
|
|
|
|
|
#ifndef LICENSE
|
2004-05-25 01:28:44 +02:00
|
|
|
#define LICENSE GPL
|
2004-03-17 18:04:50 +01:00
|
|
|
#endif /* LICENSE */
|
|
|
|
|
2002-07-23 17:31:22 +02:00
|
|
|
#endif /* _mysql_version_h */
|