From ec26d836b1b2a41ec2692976a539da51f261412b Mon Sep 17 00:00:00 2001 From: Lukas Slebodnik Date: Wed, 13 Mar 2013 11:09:11 +0100 Subject: Making the ldb check configurable It is possible to enable/disable checking in LDB memberof plugin whether it was built against the same version of LDB that is present on the system. This feature is turned off by default and enabled in Fedora/RHEL spec file. https://fedorahosted.org/sssd/ticket/1813 --- src/external/libldb.m4 | 15 +++++++++++++++ 1 file changed, 15 insertions(+) (limited to 'src/external/libldb.m4') diff --git a/src/external/libldb.m4 b/src/external/libldb.m4 index d3d3ccece..3e26b15a0 100644 --- a/src/external/libldb.m4 +++ b/src/external/libldb.m4 @@ -24,5 +24,20 @@ else ldblibdir="${libdir}/ldb" fi fi + +AC_MSG_CHECKING([feature ldb runtime version check]) +AC_ARG_ENABLE(ldb-version-check, + [AS_HELP_STRING([--enable-ldb-version-check], + [compile with ldb runtime version check [default=no]])], + enable_ldb_version_check="$enableval", + enable_ldb_version_check="no") +if test x"$enable_ldb_version_check" = xyes ; then + AC_MSG_RESULT([yes]) + AC_DEFINE([SSS_LDB_VERSION_CHECK], [1], + [Define to 1 if you want ldb version check.]) +else + AC_MSG_RESULT([no]) +fi + AC_MSG_NOTICE([ldb lib directory: $ldblibdir]) AC_SUBST(ldblibdir) -- cgit