summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2005-07-14 02:35:51 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 13:23:03 -0500
commit2dabfc1cde31932b8dfdaef2f4aacd56864c9fc3 (patch)
treec6f60232c2dd119fd0bb33fece2db5f0d1b6bbd0
parent5b31da9427d3d0383cb25f85e636244654dbf1b7 (diff)
downloadsamba-2dabfc1cde31932b8dfdaef2f4aacd56864c9fc3.tar.gz
samba-2dabfc1cde31932b8dfdaef2f4aacd56864c9fc3.tar.bz2
samba-2dabfc1cde31932b8dfdaef2f4aacd56864c9fc3.zip
r8441: don't build tdbtest by default as there are too many systems that
don't have libgdbm, and the configure test for gdbm is broken (This used to be commit 5c4c3e9a8d9d853028271f228ad36388f4cb2012)
-rw-r--r--source4/lib/tdb/Makefile.in2
-rw-r--r--source4/lib/tdb/config.m416
2 files changed, 1 insertions, 17 deletions
diff --git a/source4/lib/tdb/Makefile.in b/source4/lib/tdb/Makefile.in
index f9912cd6b1..c06e7a8dc7 100644
--- a/source4/lib/tdb/Makefile.in
+++ b/source4/lib/tdb/Makefile.in
@@ -10,7 +10,7 @@ bindir = @bindir@
includedir = @includedir@
libdir = @libdir@
-PROGS = bin/tdbtest bin/tdbtool bin/tdbtorture
+PROGS = bin/tdbtool bin/tdbtorture
TDB_OBJ = common/tdb.o common/spinlock.o
all: $(PROGS)
diff --git a/source4/lib/tdb/config.m4 b/source4/lib/tdb/config.m4
index 414ccfdfed..cea67fe6e7 100644
--- a/source4/lib/tdb/config.m4
+++ b/source4/lib/tdb/config.m4
@@ -3,19 +3,3 @@ if test x"$experimental" = x"yes"; then
SMB_LIBRARY_ENABLE(libtdb,YES)
fi
-###############################
-# start SMB_EXT_LIB_GDBM
-# check for gdbm.h and -lgdbm
-AC_CHECK_HEADERS(gdbm.h)
-AC_CHECK_LIB_EXT(gdbm, GDBM_LIBS, gdbm_open)
-if test x"$ac_cv_header_gdbm_h" = x"yes" -a x"$ac_cv_lib_ext_gdbm_gdbm_open" = x"yes";then
- SMB_EXT_LIB_ENABLE(GDBM,YES)
-fi
-SMB_EXT_LIB(GDBM, $GDBM_LIBS)
-# end SMB_EXT_LIB_GDBM
-###############################
-
-SMB_BINARY_ENABLE(tdbtest, NO)
-if test x"$SMB_EXT_LIB_ENABLE_GDBM" = x"YES"; then
- SMB_BINARY_ENABLE(tdbtest, YES)
-fi