0b71948c32
This is stable bugfix release of libmdbx, in Family Glory and in memory of Boris Yuriev (the inventor of Helicopter and Swashplate in 1911) on his 133rd birthday. It is reasonable to backport this patch to all applicable releases/branches of Buildroot. Release notes for v0.11.13 -------------------------- Fixes: - Fixed builds with older libc versions after using `fcntl64()` (backport). - Fixed builds with older `stdatomic.h` versions, where the `ATOMIC_*_LOCK_FREE` macros mistakenly redefined using functions (backport). - Added workaround for `mremap()` defect to avoid assertion failure (backport). - Workaround for `encryptfs` bug(s) in the `copy_file_range` implementation (backport). - Fixed unexpected `MDBX_BUSY` from `mdbx_env_set_option()`, `mdbx_env_set_syncbytes()` and `mdbx_env_set_syncperiod()` (backport). - CMake requirements lowered to version 3.0.2 (backport). - Added admonition of insecure for RISC-V (backport). Minors: - Minor clarification output of `--help` for `mdbx_test` (backport). - Added admonition of insecure for RISC-V (backport). - Stochastic scripts and CMake files synchronized with the `devel` branch. - Use `--dont-check-ram-size` for small-tests make-targets (backport). The complete ChangeLog: https://gitflic.ru/project/erthink/libmdbx/blob?file=ChangeLog.md Signed-off-by: Леонид Юрьев (Leonid Yuriev) <leo@yuriev.ru> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
42 lines
1.2 KiB
Makefile
42 lines
1.2 KiB
Makefile
################################################################################
|
|
#
|
|
# libmdbx
|
|
#
|
|
################################################################################
|
|
|
|
LIBMDBX_VERSION = 0.11.13
|
|
LIBMDBX_SOURCE = libmdbx-amalgamated-$(LIBMDBX_VERSION).tar.xz
|
|
LIBMDBX_SITE = https://libmdbx.dqdkfa.ru/release
|
|
LIBMDBX_SUPPORTS_IN_SOURCE_BUILD = NO
|
|
LIBMDBX_LICENSE = OLDAP-2.8
|
|
LIBMDBX_LICENSE_FILES = LICENSE
|
|
LIBMDBX_STRIP_COMPONENTS = 0
|
|
LIBMDBX_INSTALL_STAGING = YES
|
|
|
|
# Set CMAKE_BUILD_TYPE to Release to remove -Werror and avoid a build failure
|
|
# with glibc < 2.12
|
|
LIBMDBX_CONF_OPTS = \
|
|
-DCMAKE_BUILD_TYPE=Release \
|
|
-DMDBX_INSTALL_MANPAGES=OFF \
|
|
-DBUILD_FOR_NATIVE_CPU=OFF \
|
|
-DMDBX_BUILD_CXX=$(if $(BR2_PACKAGE_LIBMDBX_CXX),ON,OFF) \
|
|
-DMDBX_BUILD_TOOLS=$(if $(BR2_PACKAGE_LIBMDBX_TOOLS),ON,OFF)
|
|
|
|
ifeq ($(BR2_STATIC_LIBS)$(BR2_SHARED_STATIC_LIBS),y)
|
|
LIBMDBX_CONF_OPTS += -DMDBX_INSTALL_STATIC=ON
|
|
else
|
|
LIBMDBX_CONF_OPTS += -DMDBX_INSTALL_STATIC=OFF
|
|
endif
|
|
|
|
ifeq ($(BR2_SHARED_LIBS)$(BR2_SHARED_STATIC_LIBS),y)
|
|
LIBMDBX_CONF_OPTS += \
|
|
-DMDBX_BUILD_SHARED_LIBRARY=ON \
|
|
-DMDBX_LINK_TOOLS_NONSTATIC=ON
|
|
else
|
|
LIBMDBX_CONF_OPTS += \
|
|
-DMDBX_BUILD_SHARED_LIBRARY=OFF \
|
|
-DMDBX_LINK_TOOLS_NONSTATIC=OFF
|
|
endif
|
|
|
|
$(eval $(cmake-package))
|