2001-01-21 15:30:16 +01:00
|
|
|
/* Copyright Abandoned 1996, 1999, 2001 MySQL AB
|
2000-07-31 21:29:14 +02:00
|
|
|
This file is public domain and comes with NO WARRANTY of any kind */
|
|
|
|
|
|
|
|
/* Version numbers for protocol & mysqld */
|
|
|
|
|
|
|
|
#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@"
|
2001-01-19 01:46:13 +01:00
|
|
|
#define MYSQL_SERVER_SUFFIX "@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@
|
|
|
|
#define MYSQL_UNIX_ADDR "@MYSQL_UNIX_ADDR@"
|
|
|
|
|
|
|
|
/* mysqld compile time options */
|
|
|
|
#ifndef MYSQL_CHARSET
|
|
|
|
#define MYSQL_CHARSET "@default_charset@"
|
|
|
|
#endif
|
|
|
|
#endif
|