2017-05-24 01:07:15 +03:00
|
|
|
/*
|
2019-02-03 12:28:01 +03:00
|
|
|
* Copyright 2015-2019 Leonid Yuriev <leo@yuriev.ru>
|
2017-05-24 01:07:15 +03:00
|
|
|
* and other libmdbx authors: please see AUTHORS file.
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted only as authorized by the OpenLDAP
|
|
|
|
* Public License.
|
|
|
|
*
|
|
|
|
* A copy of this license is available in the file LICENSE in the
|
|
|
|
* top-level directory of the distribution or, alternatively, at
|
|
|
|
* <http://www.OpenLDAP.org/license.html>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "./bits.h"
|
|
|
|
|
2019-06-22 22:23:25 +03:00
|
|
|
#if MDBX_VERSION_MAJOR != 0 || MDBX_VERSION_MINOR != 3
|
2017-05-24 01:07:15 +03:00
|
|
|
#error "API version mismatch!"
|
|
|
|
#endif
|
|
|
|
|
2018-06-21 17:54:59 +03:00
|
|
|
#define MDBX_VERSION_RELEASE 0
|
2019-06-22 22:23:25 +03:00
|
|
|
#define MDBX_VERSION_REVISION 0
|
2017-05-24 01:07:15 +03:00
|
|
|
|
2017-07-27 18:10:07 +03:00
|
|
|
/*LIBMDBX_EXPORTS*/ const mdbx_version_info mdbx_version = {
|
2017-05-24 01:07:15 +03:00
|
|
|
MDBX_VERSION_MAJOR,
|
|
|
|
MDBX_VERSION_MINOR,
|
|
|
|
MDBX_VERSION_RELEASE,
|
|
|
|
MDBX_VERSION_REVISION,
|
|
|
|
{"@MDBX_GIT_TIMESTAMP@", "@MDBX_GIT_TREE@", "@MDBX_GIT_COMMIT@",
|
|
|
|
"@MDBX_GIT_DESCRIBE@"}};
|
|
|
|
|
2017-07-27 18:10:07 +03:00
|
|
|
/*LIBMDBX_EXPORTS*/ const mdbx_build_info mdbx_build = {
|
2019-05-02 16:46:05 +03:00
|
|
|
"@MDBX_BUILD_TIMESTAMP@", "@MDBX_BUILD_TARGET@", "@MDBX_BUILD_OPTIONS@",
|
2017-05-24 01:07:15 +03:00
|
|
|
"@MDBX_BUILD_COMPILER@", "@MDBX_BUILD_FLAGS@"};
|