summaryrefslogtreecommitdiff
path: root/source3/wscript_build
diff options
context:
space:
mode:
authorMichael Adam <obnox@samba.org>2011-07-06 16:40:21 +0200
committerMichael Adam <obnox@samba.org>2011-07-29 12:23:13 +0200
commit1abdd9b2bb09d072496db5207814aefefe403f60 (patch)
tree19f220caaecca300aee085e215846983823f8900 /source3/wscript_build
parent75c7320497dc53d23bced5472faef7d9c31c1d9b (diff)
downloadsamba-1abdd9b2bb09d072496db5207814aefefe403f60.tar.gz
samba-1abdd9b2bb09d072496db5207814aefefe403f60.tar.bz2
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/wscript_build')
-rwxr-xr-xsource3/wscript_build4
1 files changed, 3 insertions, 1 deletions
diff --git a/source3/wscript_build b/source3/wscript_build
index 3fcd605f19..cdf64bebf9 100755
--- a/source3/wscript_build
+++ b/source3/wscript_build
@@ -14,7 +14,9 @@ bld.env.public_headers_skip = ['lib/ldb_compat.h']
bld.env.public_headers_allow_broken = True
TDB_LIB_SRC = '''
- lib/dbwrap.c lib/dbwrap_tdb.c
+ lib/dbwrap.c
+ lib/dbwrap/dbwrap_open.c
+ lib/dbwrap_tdb.c
lib/dbwrap_ctdb.c
lib/g_lock.c'''