2019-08-31 17:10:04 +03:00
|
|
|
/*
|
|
|
|
* Copyright 2015-2019 Leonid Yuriev <leo@yuriev.ru>
|
|
|
|
* 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>. */
|
|
|
|
|
2019-12-14 00:57:45 +03:00
|
|
|
#define MDBX_ALLOY 1 /* amalgamated build */
|
|
|
|
#include "elements/internals.h" /* must be included first */
|
2019-08-31 17:13:02 +03:00
|
|
|
|
|
|
|
#include "elements/core.c"
|
|
|
|
#include "elements/osal.c"
|
2019-09-05 11:57:52 +03:00
|
|
|
#include "elements/version.c"
|
2019-08-31 17:13:02 +03:00
|
|
|
|
2019-09-02 20:52:29 +03:00
|
|
|
#if defined(_WIN32) || defined(_WIN64)
|
2019-08-31 17:10:04 +03:00
|
|
|
#include "elements/lck-windows.c"
|
|
|
|
#else
|
|
|
|
#include "elements/lck-posix.c"
|
|
|
|
#endif
|