mirror of
https://github.com/VCMP-SqMod/SqMod.git
synced 2025-07-03 07:27:11 +02:00
.github
bin
module
vendor
CPR
CivetWeb
ConcurrentQueue
Fmt
MDBC
client
cmake
include
mariadb
mysql
CMakeLists.txt
errmsg.h
ma_common.h
ma_config.h.in
ma_context.h
ma_crypt.h
ma_global.h
ma_hashtbl.h
ma_list.h
ma_priv.h
ma_pthread.h
ma_pvio.h
ma_server_error.h
ma_sha1.h
ma_string.h
ma_sys.h
ma_tls.h
mariadb_async.h
mariadb_com.h
mariadb_ctype.h
mariadb_dyncol.h
mariadb_rpl.h
mariadb_stmt.h
mariadb_version.h.in
mysql.h
mysqld_error.h
libmariadb
man
mariadb_config
plugins
scripts
unittest
win
win-iconv
CMakeLists.txt
COPYING.LIB
README
appveyor-download.bat
appveyor.yml
travis.sh
MaxmindDB
POCO
PUGIXML
SAJSON
SimpleIni
Squirrel
TinyDir
UTF8
ZMQ
xxHash
CMakeLists.txt
.gitignore
.gitmodules
CMakeLists.txt
LICENSE
README.md
45 lines
1.4 KiB
C
45 lines
1.4 KiB
C
/* Copyright Abandoned 1996, 1999, 2001 MySQL AB
|
|
This file is public domain and comes with NO WARRANTY of any kind */
|
|
|
|
/* Version numbers for protocol & mysqld */
|
|
|
|
#ifndef _mariadb_version_h_
|
|
#define _mariadb_version_h_
|
|
|
|
#ifdef _CUSTOMCONFIG_
|
|
#include <custom_conf.h>
|
|
#else
|
|
#define PROTOCOL_VERSION @PROTOCOL_VERSION@
|
|
#define MARIADB_CLIENT_VERSION_STR "@MARIADB_CLIENT_VERSION@"
|
|
#define MARIADB_BASE_VERSION "@MARIADB_BASE_VERSION@"
|
|
#define MARIADB_VERSION_ID @MARIADB_VERSION_ID@
|
|
#define MARIADB_PORT @MARIADB_PORT@
|
|
#define MARIADB_UNIX_ADDR "@MARIADB_UNIX_ADDR@"
|
|
#ifndef MYSQL_UNIX_ADDR
|
|
#define MYSQL_UNIX_ADDR MARIADB_UNIX_ADDR
|
|
#endif
|
|
#ifndef MYSQL_PORT
|
|
#define MYSQL_PORT MARIADB_PORT
|
|
#endif
|
|
|
|
#define MYSQL_CONFIG_NAME "my"
|
|
#define MYSQL_VERSION_ID @MARIADB_VERSION_ID@
|
|
#define MYSQL_SERVER_VERSION "@MARIADB_CLIENT_VERSION@-MariaDB"
|
|
|
|
#define MARIADB_PACKAGE_VERSION "@CPACK_PACKAGE_VERSION@"
|
|
#define MARIADB_PACKAGE_VERSION_ID @MARIADB_PACKAGE_VERSION_ID@
|
|
#define MARIADB_SYSTEM_TYPE "@CMAKE_SYSTEM_NAME@"
|
|
#define MARIADB_MACHINE_TYPE "@CMAKE_SYSTEM_PROCESSOR@"
|
|
#define MARIADB_PLUGINDIR "@CMAKE_INSTALL_PREFIX@/@INSTALL_PLUGINDIR@"
|
|
|
|
/* mysqld compile time options */
|
|
#ifndef MYSQL_CHARSET
|
|
#define MYSQL_CHARSET "@default_charset@"
|
|
#endif
|
|
#endif
|
|
|
|
/* Source information */
|
|
#define CC_SOURCE_REVISION "@CC_SOURCE_REVISION@"
|
|
|
|
#endif /* _mariadb_version_h_ */
|