1/* Copyright Abandoned 1996,1999 TCX DataKonsult AB & Monty Program KB
2 & Detron HB, 1996, 1999-2004, 2007 MySQL AB.
3 This file is public domain and comes with NO WARRANTY of any kind
4*/
5
6/* Version numbers for protocol & mysqld */
7
8#ifndef _mysql_version_h
9#define _mysql_version_h
10#ifdef _CUSTOMCONFIG_
11#include <custom_conf.h>
12#else
13#define PROTOCOL_VERSION 10
14#define MYSQL_SERVER_VERSION "5.5.62"
15#define MYSQL_BASE_VERSION "mysqld-5.5"
16#define MYSQL_SERVER_SUFFIX_DEF "-0ubuntu0.14.04.1"
17#define FRM_VER 6
18#define MYSQL_VERSION_ID 50562
19#define MYSQL_PORT 3306
20#define MYSQL_PORT_DEFAULT 0
21#define MYSQL_UNIX_ADDR "/var/run/mysqld/mysqld.sock"
22#define MYSQL_CONFIG_NAME "my"
23#define MYSQL_COMPILATION_COMMENT "(Ubuntu)"
24
25/* mysqld compile time options */
26#endif /* _CUSTOMCONFIG_ */
27
28#ifndef LICENSE
29#define LICENSE GPL
30#endif /* LICENSE */
31
32#endif /* _mysql_version_h */
33