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 _mariadb_version_h_
7#define _mariadb_version_h_
8
9#ifdef _CUSTOMCONFIG_
10#include <custom_conf.h>
11#else
12#define PROTOCOL_VERSION 10
13#define MARIADB_CLIENT_VERSION_STR "10.4.3"
14#define MARIADB_BASE_VERSION "mariadb-10.4"
15#define MARIADB_VERSION_ID 100403
16#define MARIADB_PORT 3306
17#define MARIADB_UNIX_ADDR "/tmp/mysql.sock"
18
19#define MYSQL_CONFIG_NAME "my"
20#define MYSQL_VERSION_ID 100403
21#define MYSQL_SERVER_VERSION "10.4.3-MariaDB"
22
23#define MARIADB_PACKAGE_VERSION "3.1.4"
24#define MARIADB_PACKAGE_VERSION_ID 30104
25#define MARIADB_SYSTEM_TYPE "Linux"
26#define MARIADB_MACHINE_TYPE "x86_64"
27#define MARIADB_PLUGINDIR "/usr/local//usr/local/"
28
29/* mysqld compile time options */
30#ifndef MYSQL_CHARSET
31#define MYSQL_CHARSET ""
32#endif
33#endif
34
35/* Source information */
36#define CC_SOURCE_REVISION ""
37
38#endif /* _mariadb_version_h_ */
39