mdbx-build: add 'make dist' target.

Change-Id: I72c2ff2f90e9da4664bf542761fe445bb713a67a
This commit is contained in:
Leonid Yuriev
2019-09-10 02:19:35 +03:00
parent e7095e9ada
commit 3ec081c187
8 changed files with 215 additions and 147 deletions

2
mdbx.h
View File

@@ -187,12 +187,14 @@ typedef pthread_t mdbx_tid_t;
#define MDBX_VERSION_MAJOR 0
#define MDBX_VERSION_MINOR 3
#ifndef LIBMDBX_API
#if defined(LIBMDBX_EXPORTS)
#define LIBMDBX_API __dll_export
#elif defined(LIBMDBX_IMPORTS)
#define LIBMDBX_API __dll_import
#else
#define LIBMDBX_API
#endif
#endif /* LIBMDBX_API */
#ifdef __cplusplus