From 3b9b6d0b8e7f798023c9d109c490449d528fde80 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 7 Apr 2024 17:59:48 +0200 Subject: Adding upstream version 1:9.18.19. Signed-off-by: Daniel Baumann --- m4/ax_lib_lmdb.m4 | 52 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 52 insertions(+) create mode 100644 m4/ax_lib_lmdb.m4 (limited to 'm4/ax_lib_lmdb.m4') diff --git a/m4/ax_lib_lmdb.m4 b/m4/ax_lib_lmdb.m4 new file mode 100644 index 0000000..b140b76 --- /dev/null +++ b/m4/ax_lib_lmdb.m4 @@ -0,0 +1,52 @@ +# SPDX-License-Identifier: FSFAP +# +# =========================================================================== +# https://gitlab.isc.org/isc-projects/autoconf-archive/ax_lib_lmdb.html +# =========================================================================== +# +# SYNOPSIS +# +# AX_LIB_LMDB(PATH[, ACTION-IF-FOUND[, ACTION-IF-NOT-FOUND]]) +# +# DESCRIPTION +# +# Test for the LMDB library in a path +# +# This macro takes only one argument, a path to the lmdb headers and library. +# +# LICENSE +# +# Copyright (c) 2020 Internet Systems Consortium +# +# Copying and distribution of this file, with or without modification, are +# permitted in any medium without royalty provided the copyright notice +# and this notice are preserved. This file is offered as-is, without any +# warranty. + +#serial 19 + +# +AC_DEFUN([AX_LIB_LMDB], + [AS_IF([test -z "$1"], + [AC_MSG_ERROR([Path cannot be empty])]) + AC_MSG_CHECKING([for lmdb header in $1]) + AS_IF([test -r "$1/include/lmdb.h"], + [AC_MSG_RESULT([yes]) + LMDB_CFLAGS="-I$1/include" + LMDB_LIBS="-L$1/lib" + AX_SAVE_FLAGS([lmdb]) + CFLAGS="$CFLAGS $LMDB_CFLAGS" + LIBS="$LIBS $LMDB_LIBS" + AC_SEARCH_LIBS([mdb_env_create], [lmdb], + [LMDB_LIBS="$LMDB_LIBS $ac_cv_search_mdb_env_create" + AX_RESTORE_FLAGS([lmdb]) + $2 + ], + [AC_MSG_RESULT([no]) + LMDB_CFLAGS="" + LMDB_LIBS="" + AX_RESTORE_FLAGS([lmdb]) + $3 + ]) + ], + [AC_MSG_RESULT([no])])]) -- cgit v1.2.3