tdb_compat.h: divert every tdb build and includes to tdb_compat
[Samba/gbeck.git] / lib / tdb_compat / wscript
blob8a6f69a96a95ac17c20435d93e49aef0220dfbe2
1 #!/usr/bin/env python
3 def set_options(opt):
4 opt.RECURSE('lib/tdb')
6 def configure(conf):
7 conf.RECURSE('lib/tdb')
8 conf.RECURSE('lib/ccan')
10 def build(bld):
11 bld.RECURSE('lib/tdb')
12 bld.RECURSE('lib/ccan')
13 bld.SAMBA_LIBRARY('tdb_compat',
14 source='tdb_compat.c',
15 deps='replace tdb ccan',
16 private_library=True)