diff options
author | Maxim <kolmax94@gmail.com> | 2010-08-21 19:22:24 +0400 |
---|---|---|
committer | Stephen Gallagher <sgallagh@redhat.com> | 2010-08-23 09:55:18 -0400 |
commit | c67e60fd1b41692dbbb575ecf5dfcefd7e2f7cb2 (patch) | |
tree | d73042d277d338275af4f280cf029709e950fa0f /src/external/libldb.m4 | |
parent | 126c9338cf12a3e4404c36bbe4ec14b18f23537c (diff) | |
download | sssd-c67e60fd1b41692dbbb575ecf5dfcefd7e2f7cb2.tar.gz sssd-c67e60fd1b41692dbbb575ecf5dfcefd7e2f7cb2.tar.xz sssd-c67e60fd1b41692dbbb575ecf5dfcefd7e2f7cb2.zip |
Fix configure check for ldb
Diffstat (limited to 'src/external/libldb.m4')
-rw-r--r-- | src/external/libldb.m4 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/external/libldb.m4 b/src/external/libldb.m4 index 0679e1d19..d3d3ccece 100644 --- a/src/external/libldb.m4 +++ b/src/external/libldb.m4 @@ -5,7 +5,7 @@ AC_SUBST(LDB_LIBS) PKG_CHECK_MODULES(LDB, ldb >= 0.9.2) AC_CHECK_HEADERS(ldb.h ldb_module.h, - [AC_CHECK_LIB(ldb, ldb_init, [LDB_LIBS="-lldb"], , -ltevent) ], + [AC_CHECK_LIB(ldb, ldb_init, [LDB_LIBS="-lldb"], , -ltevent -ltdb -ldl -lldap) ], [AC_MSG_ERROR([LDB header files are not installed])] ) |