1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-17 02:05:21 +03:00
samba-mirror/source4/lib/wscript_build
Andrew Tridgell eb0005dfca s4-tdb: make tdb-wrap into a private library
this prevents double linking of the tdb wrap code
2010-10-30 23:49:01 +11:00

23 lines
468 B
Python

#!/usr/bin/env python
bld.SAMBA_SUBSYSTEM('LZXPRESS',
deps='replace',
source='../../lib/compression/lzxpress.c'
)
bld.SAMBA_SUBSYSTEM('GENCACHE',
source='../../source3/lib/gencache.c',
enabled=False,
deps='tdb-wrap'
)
bld.SAMBA_LIBRARY('tdb-wrap',
source='tdb_wrap.c',
deps='tdb talloc samba-util',
public_headers='tdb_wrap.h',
private_library=True
)