diff options
author | Sumit Bose <sbose@redhat.com> | 2009-11-24 22:37:10 +0100 |
---|---|---|
committer | Stephen Gallagher <sgallagh@redhat.com> | 2009-11-25 11:03:12 -0500 |
commit | 04f015616f5e659086dacde2d4c398bab8ccf2ea (patch) | |
tree | b40c6e8ed71e83e93cf29256c82b93e5f4b2da0e /server/external | |
parent | a466888622798d91cf72d547584194c76e133d15 (diff) | |
download | sssd-04f015616f5e659086dacde2d4c398bab8ccf2ea.tar.gz sssd-04f015616f5e659086dacde2d4c398bab8ccf2ea.tar.bz2 sssd-04f015616f5e659086dacde2d4c398bab8ccf2ea.zip |
Make ldb lib dir configurable
Diffstat (limited to 'server/external')
-rw-r--r-- | server/external/libldb.m4 | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/server/external/libldb.m4 b/server/external/libldb.m4 index 150c7ee0..d11acb4b 100644 --- a/server/external/libldb.m4 +++ b/server/external/libldb.m4 @@ -8,3 +8,21 @@ AC_CHECK_HEADERS(ldb.h ldb_module.h, [AC_CHECK_LIB(ldb, ldb_init, [LDB_LIBS="-lldb"], , -ltevent) ], [AC_MSG_ERROR([LDB header files are not installed])] ) + +AC_ARG_WITH([ldb-lib-dir], + [AC_HELP_STRING([--with-ldb-lib-dir=PATH], + [Path to store ldb modules [${libdir}/ldb]] + ) + ] + ) + +if test x"$with_ldb_lib_dir" != x; then + ldblibdir=$with_ldb_lib_dir +else + ldblibdir="`$PKG_CONFIG --variable=modulesdir ldb`" + if test x"$ldblibdir" == x; then + ldblibdir="${libdir}/ldb" + fi +fi +AC_MSG_NOTICE([ldb lib directory: $ldblibdir]) +AC_SUBST(ldblibdir) |