diff options
author | Michael Adam <obnox@samba.org> | 2011-07-06 16:40:21 +0200 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2011-07-29 12:23:13 +0200 |
commit | 1abdd9b2bb09d072496db5207814aefefe403f60 (patch) | |
tree | 19f220caaecca300aee085e215846983823f8900 /source3/Makefile.in | |
parent | 75c7320497dc53d23bced5472faef7d9c31c1d9b (diff) | |
download | samba-1abdd9b2bb09d072496db5207814aefefe403f60.tar.gz samba-1abdd9b2bb09d072496db5207814aefefe403f60.tar.xz samba-1abdd9b2bb09d072496db5207814aefefe403f60.zip |
s3:dbwrap: move db_open() to a file dbwrap_open.c of its own.
Also start new folder lib/dbwrap/ where dbwrap_open.c is stored and
make the fallbacke implementation functoins non-static and create a
dbwrap_private.h header file that contains their prototypes.
Diffstat (limited to 'source3/Makefile.in')
-rw-r--r-- | source3/Makefile.in | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/source3/Makefile.in b/source3/Makefile.in index 51b0a7cb67..ddcc8be3f9 100644 --- a/source3/Makefile.in +++ b/source3/Makefile.in @@ -260,7 +260,8 @@ EXTRA_ALL_TARGETS = @EXTRA_ALL_TARGETS@ TDB_LIB_OBJ = lib/util_tdb.o ../lib/util/util_tdb.o \ ../lib/util/tdb_wrap.o \ - lib/dbwrap.o lib/dbwrap_tdb.o \ + lib/dbwrap.o lib/dbwrap/dbwrap_open.o \ + lib/dbwrap_tdb.o \ lib/dbwrap_ctdb.o \ lib/g_lock.o \ lib/dbwrap_rbt.o |