mirror of
https://github.com/samba-team/samba.git
synced 2024-12-25 23:21:54 +03:00
7d52581978
tdb. This includes:
- the new tdb_lockall and tdb_lockall_read code, which will be needed
for the ldb speedups
- the tdb logging changes. This is an intermediate step to keep the
differences between the two branches small. The plan is still to
move to a tdb_init()/tdb_set_logging_function()/tdb_attach() style
of open which will make things much cleaner.
- the updated test suites and standalone tdb build code
- use libreplace headers
There are still some small differences I haven't merged. I'll discuss
those on the list.
(This used to be commit 48903c75ed
)
71 lines
1.7 KiB
Makefile
71 lines
1.7 KiB
Makefile
################################################
|
|
# Start SUBSYSTEM LIBTDB
|
|
[LIBRARY::LIBTDB]
|
|
VERSION = 0.0.1
|
|
SO_VERSION = 0
|
|
DESCRIPTION = Trivial Database Library
|
|
OBJ_FILES = \
|
|
common/tdb.o common/dump.o common/io.o common/lock.o \
|
|
common/open.o common/traverse.o common/freelist.o \
|
|
common/error.o common/transaction.o common/tdbutil.o
|
|
CFLAGS = -Ilib/tdb/include
|
|
PUBLIC_HEADERS = include/tdb.h
|
|
#
|
|
# End SUBSYSTEM ldb
|
|
################################################
|
|
|
|
################################################
|
|
# Start BINARY tdbtool
|
|
[BINARY::tdbtool]
|
|
INSTALLDIR = BINDIR
|
|
ENABLE = NO
|
|
OBJ_FILES= \
|
|
tools/tdbtool.o
|
|
PRIVATE_DEPENDENCIES = \
|
|
LIBTDB
|
|
# End BINARY tdbtool
|
|
################################################
|
|
|
|
################################################
|
|
# Start BINARY tdbtorture
|
|
[BINARY::tdbtorture]
|
|
INSTALLDIR = BINDIR
|
|
OBJ_FILES= \
|
|
tools/tdbtorture.o
|
|
PRIVATE_DEPENDENCIES = \
|
|
LIBTDB
|
|
# End BINARY tdbtorture
|
|
################################################
|
|
|
|
################################################
|
|
# Start BINARY tdbdump
|
|
[BINARY::tdbdump]
|
|
INSTALLDIR = BINDIR
|
|
OBJ_FILES= \
|
|
tools/tdbdump.o
|
|
PRIVATE_DEPENDENCIES = \
|
|
LIBTDB
|
|
# End BINARY tdbdump
|
|
################################################
|
|
|
|
################################################
|
|
# Start BINARY tdbbackup
|
|
[BINARY::tdbbackup]
|
|
INSTALLDIR = BINDIR
|
|
ENABLE = NO
|
|
OBJ_FILES= \
|
|
tools/tdbbackup.o
|
|
PRIVATE_DEPENDENCIES = \
|
|
LIBTDB
|
|
# End BINARY tdbbackup
|
|
################################################
|
|
|
|
#######################
|
|
# Start LIBRARY swig_tdb
|
|
[LIBRARY::swig_tdb]
|
|
LIBRARY_REALNAME = swig/_tdb.$(SHLIBEXT)
|
|
OBJ_FILES = swig/tdb_wrap.o
|
|
PUBLIC_DEPENDENCIES = LIBTDB DYNCONFIG
|
|
# End LIBRARY swig_tdb
|
|
#######################
|