2019-08-31 17:10:04 +03:00
|
|
|
/*
|
2021-01-26 07:26:09 +03:00
|
|
|
* Copyright 2015-2021 Leonid Yuriev <leo@yuriev.ru>
|
2019-08-31 17:10:04 +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>. */
|
|
|
|
|
2021-04-29 19:50:25 +03:00
|
|
|
#define xMDBX_ALLOY 1 /* alloyed build */
|
2020-04-15 17:09:37 +03:00
|
|
|
#include "internals.h" /* must be included first */
|
2019-08-31 17:13:02 +03:00
|
|
|
|
2020-04-15 17:09:37 +03:00
|
|
|
#include "core.c"
|
|
|
|
#include "osal.c"
|
|
|
|
#include "version.c"
|
2019-08-31 17:13:02 +03:00
|
|
|
|
2019-09-02 20:52:29 +03:00
|
|
|
#if defined(_WIN32) || defined(_WIN64)
|
2020-04-15 17:09:37 +03:00
|
|
|
#include "lck-windows.c"
|
2019-08-31 17:10:04 +03:00
|
|
|
#else
|
2020-04-15 17:09:37 +03:00
|
|
|
#include "lck-posix.c"
|
2019-08-31 17:10:04 +03:00
|
|
|
#endif
|