summaryrefslogtreecommitdiffstats
path: root/server/external
diff options
context:
space:
mode:
authorStephen Gallagher <sgallagh@redhat.com>2009-01-30 11:55:46 -0500
committerSimo Sorce <idra@samba.org>2009-02-24 13:43:46 -0500
commit795e12d8315c4f7f0d4b2abb77fb49e0417e362a (patch)
tree13ec245e3986b82cc1be367fcae8d29329ff9fc9 /server/external
parentf2e97d2a437ec0a231275a7140773a03d5732148 (diff)
downloadsssd-795e12d8315c4f7f0d4b2abb77fb49e0417e362a.tar.gz
sssd-795e12d8315c4f7f0d4b2abb77fb49e0417e362a.tar.xz
sssd-795e12d8315c4f7f0d4b2abb77fb49e0417e362a.zip
Spec file patch Take 2:
Adding support for generating RPMS for sssd. Fixing TDB autoconf macros to require version 1.1.3 and support for the tdb_repack symbol (required by LDB) Updating tdb.h to #include <sys/stat.h> for proper autoconf Build system modifications to simplify RPM generation Fixing RPM build system as recommended during code review Minor tweaks to Makefile and sssd.spec Make policykit and infopipe configurable Soname and symlinks
Diffstat (limited to 'server/external')
-rw-r--r--server/external/libtdb.m47
1 files changed, 4 insertions, 3 deletions
diff --git a/server/external/libtdb.m4 b/server/external/libtdb.m4
index 8c2cab702..196bc5ccb 100644
--- a/server/external/libtdb.m4
+++ b/server/external/libtdb.m4
@@ -2,6 +2,7 @@ AC_SUBST(TDB_OBJ)
AC_SUBST(TDB_CFLAGS)
AC_SUBST(TDB_LIBS)
-AC_CHECK_HEADER(tdb.h,
- [AC_CHECK_LIB(tdb, tdb_open, [TDB_LIBS="-ltdb"]) ],
- [PKG_CHECK_MODULES(TDB, tdb >= 1.1.0)])
+AC_CHECK_HEADERS([tdb.h],
+ [AC_CHECK_LIB(tdb, tdb_repack, [TDB_LIBS="-ltdb"], [AC_MSG_ERROR([TDB must support tdb_repack])]) ],
+ [PKG_CHECK_MODULES(TDB, tdb >= 1.1.3)]
+)